1. Packages
  2. ArgoCD
  3. API Docs
  4. ApplicationSet
Argo CD v1.0.1 published on Friday, Feb 21, 2025 by Three141

argocd.ApplicationSet

Explore with Pulumi AI

argocd logo
Argo CD v1.0.1 published on Friday, Feb 21, 2025 by Three141

    Manages application sets within ArgoCD.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as argocd from "@three14/pulumi-argocd";
    
    // Clusters Generator
    const clustersSelector = new argocd.ApplicationSet("clusters_selector", {
        metadata: {
            name: "clusters-selector",
        },
        spec: {
            generators: [{
                clusters: [{
                    selector: {
                        matchLabels: {
                            "argocd.argoproj.io/secret-type": "cluster",
                        },
                    },
                }],
            }],
            template: {
                metadata: {
                    name: "{{name}}-clusters-selector",
                },
                spec: {
                    sources: [{
                        repoUrl: "https://github.com/argoproj/argocd-example-apps/",
                        targetRevision: "HEAD",
                        path: "guestbook",
                    }],
                    destination: {
                        server: "{{server}}",
                        namespace: "default",
                    },
                },
            },
        },
    });
    // Cluster Decision Resource Generator
    const clusterDecisionResource = new argocd.ApplicationSet("cluster_decision_resource", {
        metadata: {
            name: "cluster-decision-resource",
        },
        spec: {
            generators: [{
                clusterDecisionResources: [{
                    configMapRef: "my-configmap",
                    name: "quak",
                }],
            }],
            template: {
                metadata: {
                    name: "{{name}}-guestbook",
                },
                spec: {
                    sources: [{
                        repoUrl: "https://github.com/argoproj/argocd-example-apps/",
                        targetRevision: "HEAD",
                        path: "guestbook",
                    }],
                    destination: {
                        server: "{{server}}",
                        namespace: "default",
                    },
                },
            },
        },
    });
    // Git Generator - Directories
    const gitDirectories = new argocd.ApplicationSet("git_directories", {
        metadata: {
            name: "git-directories",
        },
        spec: {
            generators: [{
                gits: [{
                    repoUrl: "https://github.com/argoproj/argo-cd.git",
                    revision: "HEAD",
                    directories: [
                        {
                            path: "applicationset/examples/git-generator-directory/cluster-addons/*",
                        },
                        {
                            path: "applicationset/examples/git-generator-directory/excludes/cluster-addons/exclude-helm-guestbook",
                            exclude: true,
                        },
                    ],
                }],
            }],
            template: {
                metadata: {
                    name: "{{path.basename}}-git-directories",
                },
                spec: {
                    sources: [{
                        repoUrl: "https://github.com/argoproj/argo-cd.git",
                        targetRevision: "HEAD",
                        path: "{{path}}",
                    }],
                    destination: {
                        server: "https://kubernetes.default.svc",
                        namespace: "{{path.basename}}",
                    },
                },
            },
        },
    });
    // Git Generator - Files
    const gitFiles = new argocd.ApplicationSet("git_files", {
        metadata: {
            name: "git-files",
        },
        spec: {
            generators: [{
                gits: [{
                    repoUrl: "https://github.com/argoproj/argo-cd.git",
                    revision: "HEAD",
                    files: [{
                        path: "applicationset/examples/git-generator-files-discovery/cluster-config/**/config.json",
                    }],
                }],
            }],
            template: {
                metadata: {
                    name: "{{cluster.name}}-git-files",
                },
                spec: {
                    sources: [{
                        repoUrl: "https://github.com/argoproj/argo-cd.git",
                        targetRevision: "HEAD",
                        path: "applicationset/examples/git-generator-files-discovery/apps/guestbook",
                    }],
                    destination: {
                        server: "{{cluster.address}}",
                        namespace: "guestbook",
                    },
                },
            },
        },
    });
    // List Generator
    const list = new argocd.ApplicationSet("list", {
        metadata: {
            name: "list",
        },
        spec: {
            generators: [{
                lists: [{
                    elements: [
                        {
                            cluster: "engineering-dev",
                            url: "https://kubernetes.default.svc",
                        },
                        {
                            cluster: "engineering-prod",
                            url: "https://kubernetes.default.svc",
                            foo: "bar",
                        },
                    ],
                }],
            }],
            template: {
                metadata: {
                    name: "{{cluster}}-guestbook",
                },
                spec: {
                    project: "my-project",
                    sources: [{
                        repoUrl: "https://github.com/argoproj/argo-cd.git",
                        targetRevision: "HEAD",
                        path: "applicationset/examples/list-generator/guestbook/{{cluster}}",
                    }],
                    destination: {
                        server: "{{url}}",
                        namespace: "guestbook",
                    },
                },
            },
        },
    });
    // Matrix Generator
    const matrix = new argocd.ApplicationSet("matrix", {
        metadata: {
            name: "matrix",
        },
        spec: {
            generators: [{
                matrices: [{
                    generators: [
                        {
                            gits: [{
                                repoUrl: "https://github.com/argoproj/argo-cd.git",
                                revision: "HEAD",
                                directories: [{
                                    path: "applicationset/examples/matrix/cluster-addons/*",
                                }],
                            }],
                        },
                        {
                            clusters: [{
                                selector: {
                                    matchLabels: {
                                        "argocd.argoproj.io/secret-type": "cluster",
                                    },
                                },
                            }],
                        },
                    ],
                }],
            }],
            template: {
                metadata: {
                    name: "{{path.basename}}-{{name}}",
                },
                spec: {
                    project: "default",
                    sources: [{
                        repoUrl: "https://github.com/argoproj/argo-cd.git",
                        targetRevision: "HEAD",
                        path: "{{path}}",
                    }],
                    destination: {
                        server: "{{server}}",
                        namespace: "{{path.basename}}",
                    },
                },
            },
        },
    });
    // Merge Generator
    const merge = new argocd.ApplicationSet("merge", {
        metadata: {
            name: "merge",
        },
        spec: {
            generators: [{
                merges: [{
                    mergeKeys: ["server"],
                    generators: [
                        {
                            clusters: [{
                                values: {
                                    kafka: "true",
                                    redis: "false",
                                },
                            }],
                        },
                        {
                            clusters: [{
                                selector: {
                                    matchLabels: {
                                        "use-kafka": "false",
                                    },
                                },
                                values: {
                                    kafka: "false",
                                },
                            }],
                        },
                        {
                            lists: [{
                                elements: [{
                                    server: "https://2.4.6.8",
                                    "values.redis": "true",
                                }],
                            }],
                        },
                    ],
                }],
            }],
            template: {
                metadata: {
                    name: "{{name}}",
                },
                spec: {
                    project: "default",
                    sources: [{
                        repoUrl: "https://github.com/argoproj/argo-cd.git",
                        path: "app",
                        targetRevision: "HEAD",
                        helm: {
                            parameters: [
                                {
                                    name: "kafka",
                                    value: "{{values.kafka}}",
                                },
                                {
                                    name: "redis",
                                    value: "{{values.redis}}",
                                },
                            ],
                        },
                    }],
                    destination: {
                        server: "{{server}}",
                        namespace: "default",
                    },
                },
            },
        },
    });
    // Pull Request Generator - GitHub
    const prGithub = new argocd.ApplicationSet("pr_github", {
        metadata: {
            name: "pr-github",
        },
        spec: {
            generators: [{
                pullRequests: [{
                    github: {
                        api: "https://git.example.com/",
                        owner: "myorg",
                        repo: "myrepository",
                        appSecretName: "github-app-repo-creds",
                        tokenRef: {
                            secretName: "github-token",
                            key: "token",
                        },
                        labels: ["preview"],
                    },
                }],
            }],
            template: {
                metadata: {
                    name: "myapp-{{branch}}-{{number}}",
                },
                spec: {
                    project: "default",
                    sources: [{
                        repoUrl: "https://github.com/myorg/myrepo.git",
                        path: "kubernetes/",
                        targetRevision: "{{head_sha}}",
                        helm: {
                            parameters: [{
                                name: "image.tag",
                                value: "pull-{{head_sha}}",
                            }],
                        },
                    }],
                    destination: {
                        server: "https://kubernetes.default.svc",
                        namespace: "default",
                    },
                },
            },
        },
    });
    // SCM Provider Generator - GitHub
    const scmGithub = new argocd.ApplicationSet("scm_github", {
        metadata: {
            name: "scm-github",
        },
        spec: {
            generators: [{
                scmProviders: [{
                    github: {
                        appSecretName: "gh-app-repo-creds",
                        organization: "myorg",
                    },
                }],
            }],
            template: {
                metadata: {
                    name: "{{repository}}",
                },
                spec: {
                    project: "default",
                    sources: [{
                        repoUrl: "{{url}}",
                        path: "kubernetes/",
                        targetRevision: "{{branch}}",
                    }],
                    destination: {
                        server: "https://kubernetes.default.svc",
                        namespace: "default",
                    },
                },
            },
        },
    });
    // Progressive Sync - Rolling Update
    const progressiveSync = new argocd.ApplicationSet("progressive_sync", {
        metadata: {
            name: "progressive-sync",
        },
        spec: {
            generators: [{
                lists: [{
                    elements: [
                        {
                            cluster: "engineering-dev",
                            url: "https://1.2.3.4",
                            env: "env-dev",
                        },
                        {
                            cluster: "engineering-qa",
                            url: "https://2.4.6.8",
                            env: "env-qa",
                        },
                        {
                            cluster: "engineering-prod",
                            url: "https://9.8.7.6/",
                            env: "env-prod",
                        },
                    ],
                }],
            }],
            strategy: {
                type: "RollingSync",
                rollingSyncs: [{
                    steps: [
                        {
                            matchExpressions: [{
                                key: "envLabel",
                                operator: "In",
                                values: ["env-dev"],
                            }],
                        },
                        {
                            matchExpressions: [{
                                key: "envLabel",
                                operator: "In",
                                values: ["env-qa"],
                            }],
                            maxUpdate: "0",
                        },
                        {
                            matchExpressions: [{
                                key: "envLabel",
                                operator: "In",
                                values: ["env-prod"],
                            }],
                            maxUpdate: "10%",
                        },
                    ],
                }],
            },
            goTemplate: true,
            template: {
                metadata: {
                    name: "{{.cluster}}-guestbook",
                    labels: {
                        envLabel: "{{.env}}",
                    },
                },
                spec: {
                    project: "default",
                    sources: [{
                        repoUrl: "https://github.com/infra-team/cluster-deployments.git",
                        path: "guestbook/{{.cluster}}",
                        targetRevision: "HEAD",
                    }],
                    destination: {
                        server: "{{.url}}",
                        namespace: "guestbook",
                    },
                },
            },
        },
    });
    
    import pulumi
    import pulumi_argocd as argocd
    
    # Clusters Generator
    clusters_selector = argocd.ApplicationSet("clusters_selector",
        metadata={
            "name": "clusters-selector",
        },
        spec={
            "generators": [{
                "clusters": [{
                    "selector": {
                        "match_labels": {
                            "argocd.argoproj.io/secret-type": "cluster",
                        },
                    },
                }],
            }],
            "template": {
                "metadata": {
                    "name": "{{name}}-clusters-selector",
                },
                "spec": {
                    "sources": [{
                        "repo_url": "https://github.com/argoproj/argocd-example-apps/",
                        "target_revision": "HEAD",
                        "path": "guestbook",
                    }],
                    "destination": {
                        "server": "{{server}}",
                        "namespace": "default",
                    },
                },
            },
        })
    # Cluster Decision Resource Generator
    cluster_decision_resource = argocd.ApplicationSet("cluster_decision_resource",
        metadata={
            "name": "cluster-decision-resource",
        },
        spec={
            "generators": [{
                "cluster_decision_resources": [{
                    "config_map_ref": "my-configmap",
                    "name": "quak",
                }],
            }],
            "template": {
                "metadata": {
                    "name": "{{name}}-guestbook",
                },
                "spec": {
                    "sources": [{
                        "repo_url": "https://github.com/argoproj/argocd-example-apps/",
                        "target_revision": "HEAD",
                        "path": "guestbook",
                    }],
                    "destination": {
                        "server": "{{server}}",
                        "namespace": "default",
                    },
                },
            },
        })
    # Git Generator - Directories
    git_directories = argocd.ApplicationSet("git_directories",
        metadata={
            "name": "git-directories",
        },
        spec={
            "generators": [{
                "gits": [{
                    "repo_url": "https://github.com/argoproj/argo-cd.git",
                    "revision": "HEAD",
                    "directories": [
                        {
                            "path": "applicationset/examples/git-generator-directory/cluster-addons/*",
                        },
                        {
                            "path": "applicationset/examples/git-generator-directory/excludes/cluster-addons/exclude-helm-guestbook",
                            "exclude": True,
                        },
                    ],
                }],
            }],
            "template": {
                "metadata": {
                    "name": "{{path.basename}}-git-directories",
                },
                "spec": {
                    "sources": [{
                        "repo_url": "https://github.com/argoproj/argo-cd.git",
                        "target_revision": "HEAD",
                        "path": "{{path}}",
                    }],
                    "destination": {
                        "server": "https://kubernetes.default.svc",
                        "namespace": "{{path.basename}}",
                    },
                },
            },
        })
    # Git Generator - Files
    git_files = argocd.ApplicationSet("git_files",
        metadata={
            "name": "git-files",
        },
        spec={
            "generators": [{
                "gits": [{
                    "repo_url": "https://github.com/argoproj/argo-cd.git",
                    "revision": "HEAD",
                    "files": [{
                        "path": "applicationset/examples/git-generator-files-discovery/cluster-config/**/config.json",
                    }],
                }],
            }],
            "template": {
                "metadata": {
                    "name": "{{cluster.name}}-git-files",
                },
                "spec": {
                    "sources": [{
                        "repo_url": "https://github.com/argoproj/argo-cd.git",
                        "target_revision": "HEAD",
                        "path": "applicationset/examples/git-generator-files-discovery/apps/guestbook",
                    }],
                    "destination": {
                        "server": "{{cluster.address}}",
                        "namespace": "guestbook",
                    },
                },
            },
        })
    # List Generator
    list = argocd.ApplicationSet("list",
        metadata={
            "name": "list",
        },
        spec={
            "generators": [{
                "lists": [{
                    "elements": [
                        {
                            "cluster": "engineering-dev",
                            "url": "https://kubernetes.default.svc",
                        },
                        {
                            "cluster": "engineering-prod",
                            "url": "https://kubernetes.default.svc",
                            "foo": "bar",
                        },
                    ],
                }],
            }],
            "template": {
                "metadata": {
                    "name": "{{cluster}}-guestbook",
                },
                "spec": {
                    "project": "my-project",
                    "sources": [{
                        "repo_url": "https://github.com/argoproj/argo-cd.git",
                        "target_revision": "HEAD",
                        "path": "applicationset/examples/list-generator/guestbook/{{cluster}}",
                    }],
                    "destination": {
                        "server": "{{url}}",
                        "namespace": "guestbook",
                    },
                },
            },
        })
    # Matrix Generator
    matrix = argocd.ApplicationSet("matrix",
        metadata={
            "name": "matrix",
        },
        spec={
            "generators": [{
                "matrices": [{
                    "generators": [
                        {
                            "gits": [{
                                "repo_url": "https://github.com/argoproj/argo-cd.git",
                                "revision": "HEAD",
                                "directories": [{
                                    "path": "applicationset/examples/matrix/cluster-addons/*",
                                }],
                            }],
                        },
                        {
                            "clusters": [{
                                "selector": {
                                    "match_labels": {
                                        "argocd.argoproj.io/secret-type": "cluster",
                                    },
                                },
                            }],
                        },
                    ],
                }],
            }],
            "template": {
                "metadata": {
                    "name": "{{path.basename}}-{{name}}",
                },
                "spec": {
                    "project": "default",
                    "sources": [{
                        "repo_url": "https://github.com/argoproj/argo-cd.git",
                        "target_revision": "HEAD",
                        "path": "{{path}}",
                    }],
                    "destination": {
                        "server": "{{server}}",
                        "namespace": "{{path.basename}}",
                    },
                },
            },
        })
    # Merge Generator
    merge = argocd.ApplicationSet("merge",
        metadata={
            "name": "merge",
        },
        spec={
            "generators": [{
                "merges": [{
                    "merge_keys": ["server"],
                    "generators": [
                        {
                            "clusters": [{
                                "values": {
                                    "kafka": "true",
                                    "redis": "false",
                                },
                            }],
                        },
                        {
                            "clusters": [{
                                "selector": {
                                    "match_labels": {
                                        "use-kafka": "false",
                                    },
                                },
                                "values": {
                                    "kafka": "false",
                                },
                            }],
                        },
                        {
                            "lists": [{
                                "elements": [{
                                    "server": "https://2.4.6.8",
                                    "values.redis": "true",
                                }],
                            }],
                        },
                    ],
                }],
            }],
            "template": {
                "metadata": {
                    "name": "{{name}}",
                },
                "spec": {
                    "project": "default",
                    "sources": [{
                        "repo_url": "https://github.com/argoproj/argo-cd.git",
                        "path": "app",
                        "target_revision": "HEAD",
                        "helm": {
                            "parameters": [
                                {
                                    "name": "kafka",
                                    "value": "{{values.kafka}}",
                                },
                                {
                                    "name": "redis",
                                    "value": "{{values.redis}}",
                                },
                            ],
                        },
                    }],
                    "destination": {
                        "server": "{{server}}",
                        "namespace": "default",
                    },
                },
            },
        })
    # Pull Request Generator - GitHub
    pr_github = argocd.ApplicationSet("pr_github",
        metadata={
            "name": "pr-github",
        },
        spec={
            "generators": [{
                "pull_requests": [{
                    "github": {
                        "api": "https://git.example.com/",
                        "owner": "myorg",
                        "repo": "myrepository",
                        "app_secret_name": "github-app-repo-creds",
                        "token_ref": {
                            "secret_name": "github-token",
                            "key": "token",
                        },
                        "labels": ["preview"],
                    },
                }],
            }],
            "template": {
                "metadata": {
                    "name": "myapp-{{branch}}-{{number}}",
                },
                "spec": {
                    "project": "default",
                    "sources": [{
                        "repo_url": "https://github.com/myorg/myrepo.git",
                        "path": "kubernetes/",
                        "target_revision": "{{head_sha}}",
                        "helm": {
                            "parameters": [{
                                "name": "image.tag",
                                "value": "pull-{{head_sha}}",
                            }],
                        },
                    }],
                    "destination": {
                        "server": "https://kubernetes.default.svc",
                        "namespace": "default",
                    },
                },
            },
        })
    # SCM Provider Generator - GitHub
    scm_github = argocd.ApplicationSet("scm_github",
        metadata={
            "name": "scm-github",
        },
        spec={
            "generators": [{
                "scm_providers": [{
                    "github": {
                        "app_secret_name": "gh-app-repo-creds",
                        "organization": "myorg",
                    },
                }],
            }],
            "template": {
                "metadata": {
                    "name": "{{repository}}",
                },
                "spec": {
                    "project": "default",
                    "sources": [{
                        "repo_url": "{{url}}",
                        "path": "kubernetes/",
                        "target_revision": "{{branch}}",
                    }],
                    "destination": {
                        "server": "https://kubernetes.default.svc",
                        "namespace": "default",
                    },
                },
            },
        })
    # Progressive Sync - Rolling Update
    progressive_sync = argocd.ApplicationSet("progressive_sync",
        metadata={
            "name": "progressive-sync",
        },
        spec={
            "generators": [{
                "lists": [{
                    "elements": [
                        {
                            "cluster": "engineering-dev",
                            "url": "https://1.2.3.4",
                            "env": "env-dev",
                        },
                        {
                            "cluster": "engineering-qa",
                            "url": "https://2.4.6.8",
                            "env": "env-qa",
                        },
                        {
                            "cluster": "engineering-prod",
                            "url": "https://9.8.7.6/",
                            "env": "env-prod",
                        },
                    ],
                }],
            }],
            "strategy": {
                "type": "RollingSync",
                "rolling_syncs": [{
                    "steps": [
                        {
                            "match_expressions": [{
                                "key": "envLabel",
                                "operator": "In",
                                "values": ["env-dev"],
                            }],
                        },
                        {
                            "match_expressions": [{
                                "key": "envLabel",
                                "operator": "In",
                                "values": ["env-qa"],
                            }],
                            "max_update": "0",
                        },
                        {
                            "match_expressions": [{
                                "key": "envLabel",
                                "operator": "In",
                                "values": ["env-prod"],
                            }],
                            "max_update": "10%",
                        },
                    ],
                }],
            },
            "go_template": True,
            "template": {
                "metadata": {
                    "name": "{{.cluster}}-guestbook",
                    "labels": {
                        "envLabel": "{{.env}}",
                    },
                },
                "spec": {
                    "project": "default",
                    "sources": [{
                        "repo_url": "https://github.com/infra-team/cluster-deployments.git",
                        "path": "guestbook/{{.cluster}}",
                        "target_revision": "HEAD",
                    }],
                    "destination": {
                        "server": "{{.url}}",
                        "namespace": "guestbook",
                    },
                },
            },
        })
    
    package main
    
    import (
    	"github.com/Three141/pulumi-argocd/sdk/go/argocd"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		// Clusters Generator
    		_, err := argocd.NewApplicationSet(ctx, "clusters_selector", &argocd.ApplicationSetArgs{
    			Metadata: &argocd.ApplicationSetMetadataArgs{
    				Name: pulumi.String("clusters-selector"),
    			},
    			Spec: &argocd.ApplicationSetSpecArgs{
    				Generators: argocd.ApplicationSetSpecGeneratorArray{
    					&argocd.ApplicationSetSpecGeneratorArgs{
    						Clusters: argocd.ApplicationSetSpecGeneratorClusterArray{
    							&argocd.ApplicationSetSpecGeneratorClusterArgs{
    								Selector: &argocd.ApplicationSetSpecGeneratorClusterSelectorArgs{
    									MatchLabels: pulumi.StringMap{
    										"argocd.argoproj.io/secret-type": pulumi.String("cluster"),
    									},
    								},
    							},
    						},
    					},
    				},
    				Template: &argocd.ApplicationSetSpecTemplateArgs{
    					Metadata: &argocd.ApplicationSetSpecTemplateMetadataArgs{
    						Name: pulumi.String("{{name}}-clusters-selector"),
    					},
    					Spec: &argocd.ApplicationSetSpecTemplateSpecArgs{
    						Sources: argocd.ApplicationSetSpecTemplateSpecSourceArray{
    							&argocd.ApplicationSetSpecTemplateSpecSourceArgs{
    								RepoUrl:        pulumi.String("https://github.com/argoproj/argocd-example-apps/"),
    								TargetRevision: pulumi.String("HEAD"),
    								Path:           pulumi.String("guestbook"),
    							},
    						},
    						Destination: &argocd.ApplicationSetSpecTemplateSpecDestinationArgs{
    							Server:    pulumi.String("{{server}}"),
    							Namespace: pulumi.String("default"),
    						},
    					},
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		// Cluster Decision Resource Generator
    		_, err = argocd.NewApplicationSet(ctx, "cluster_decision_resource", &argocd.ApplicationSetArgs{
    			Metadata: &argocd.ApplicationSetMetadataArgs{
    				Name: pulumi.String("cluster-decision-resource"),
    			},
    			Spec: &argocd.ApplicationSetSpecArgs{
    				Generators: argocd.ApplicationSetSpecGeneratorArray{
    					&argocd.ApplicationSetSpecGeneratorArgs{
    						ClusterDecisionResources: argocd.ApplicationSetSpecGeneratorClusterDecisionResourceArray{
    							&argocd.ApplicationSetSpecGeneratorClusterDecisionResourceArgs{
    								ConfigMapRef: pulumi.String("my-configmap"),
    								Name:         pulumi.String("quak"),
    							},
    						},
    					},
    				},
    				Template: &argocd.ApplicationSetSpecTemplateArgs{
    					Metadata: &argocd.ApplicationSetSpecTemplateMetadataArgs{
    						Name: pulumi.String("{{name}}-guestbook"),
    					},
    					Spec: &argocd.ApplicationSetSpecTemplateSpecArgs{
    						Sources: argocd.ApplicationSetSpecTemplateSpecSourceArray{
    							&argocd.ApplicationSetSpecTemplateSpecSourceArgs{
    								RepoUrl:        pulumi.String("https://github.com/argoproj/argocd-example-apps/"),
    								TargetRevision: pulumi.String("HEAD"),
    								Path:           pulumi.String("guestbook"),
    							},
    						},
    						Destination: &argocd.ApplicationSetSpecTemplateSpecDestinationArgs{
    							Server:    pulumi.String("{{server}}"),
    							Namespace: pulumi.String("default"),
    						},
    					},
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		// Git Generator - Directories
    		_, err = argocd.NewApplicationSet(ctx, "git_directories", &argocd.ApplicationSetArgs{
    			Metadata: &argocd.ApplicationSetMetadataArgs{
    				Name: pulumi.String("git-directories"),
    			},
    			Spec: &argocd.ApplicationSetSpecArgs{
    				Generators: argocd.ApplicationSetSpecGeneratorArray{
    					&argocd.ApplicationSetSpecGeneratorArgs{
    						Gits: argocd.ApplicationSetSpecGeneratorGitArray{
    							&argocd.ApplicationSetSpecGeneratorGitArgs{
    								RepoUrl:  pulumi.String("https://github.com/argoproj/argo-cd.git"),
    								Revision: pulumi.String("HEAD"),
    								Directories: argocd.ApplicationSetSpecGeneratorGitDirectoryArray{
    									&argocd.ApplicationSetSpecGeneratorGitDirectoryArgs{
    										Path: pulumi.String("applicationset/examples/git-generator-directory/cluster-addons/*"),
    									},
    									&argocd.ApplicationSetSpecGeneratorGitDirectoryArgs{
    										Path:    pulumi.String("applicationset/examples/git-generator-directory/excludes/cluster-addons/exclude-helm-guestbook"),
    										Exclude: pulumi.Bool(true),
    									},
    								},
    							},
    						},
    					},
    				},
    				Template: &argocd.ApplicationSetSpecTemplateArgs{
    					Metadata: &argocd.ApplicationSetSpecTemplateMetadataArgs{
    						Name: pulumi.String("{{path.basename}}-git-directories"),
    					},
    					Spec: &argocd.ApplicationSetSpecTemplateSpecArgs{
    						Sources: argocd.ApplicationSetSpecTemplateSpecSourceArray{
    							&argocd.ApplicationSetSpecTemplateSpecSourceArgs{
    								RepoUrl:        pulumi.String("https://github.com/argoproj/argo-cd.git"),
    								TargetRevision: pulumi.String("HEAD"),
    								Path:           pulumi.String("{{path}}"),
    							},
    						},
    						Destination: &argocd.ApplicationSetSpecTemplateSpecDestinationArgs{
    							Server:    pulumi.String("https://kubernetes.default.svc"),
    							Namespace: pulumi.String("{{path.basename}}"),
    						},
    					},
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		// Git Generator - Files
    		_, err = argocd.NewApplicationSet(ctx, "git_files", &argocd.ApplicationSetArgs{
    			Metadata: &argocd.ApplicationSetMetadataArgs{
    				Name: pulumi.String("git-files"),
    			},
    			Spec: &argocd.ApplicationSetSpecArgs{
    				Generators: argocd.ApplicationSetSpecGeneratorArray{
    					&argocd.ApplicationSetSpecGeneratorArgs{
    						Gits: argocd.ApplicationSetSpecGeneratorGitArray{
    							&argocd.ApplicationSetSpecGeneratorGitArgs{
    								RepoUrl:  pulumi.String("https://github.com/argoproj/argo-cd.git"),
    								Revision: pulumi.String("HEAD"),
    								Files: argocd.ApplicationSetSpecGeneratorGitFileArray{
    									&argocd.ApplicationSetSpecGeneratorGitFileArgs{
    										Path: pulumi.String("applicationset/examples/git-generator-files-discovery/cluster-config/**/config.json"),
    									},
    								},
    							},
    						},
    					},
    				},
    				Template: &argocd.ApplicationSetSpecTemplateArgs{
    					Metadata: &argocd.ApplicationSetSpecTemplateMetadataArgs{
    						Name: pulumi.String("{{cluster.name}}-git-files"),
    					},
    					Spec: &argocd.ApplicationSetSpecTemplateSpecArgs{
    						Sources: argocd.ApplicationSetSpecTemplateSpecSourceArray{
    							&argocd.ApplicationSetSpecTemplateSpecSourceArgs{
    								RepoUrl:        pulumi.String("https://github.com/argoproj/argo-cd.git"),
    								TargetRevision: pulumi.String("HEAD"),
    								Path:           pulumi.String("applicationset/examples/git-generator-files-discovery/apps/guestbook"),
    							},
    						},
    						Destination: &argocd.ApplicationSetSpecTemplateSpecDestinationArgs{
    							Server:    pulumi.String("{{cluster.address}}"),
    							Namespace: pulumi.String("guestbook"),
    						},
    					},
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		// List Generator
    		_, err = argocd.NewApplicationSet(ctx, "list", &argocd.ApplicationSetArgs{
    			Metadata: &argocd.ApplicationSetMetadataArgs{
    				Name: pulumi.String("list"),
    			},
    			Spec: &argocd.ApplicationSetSpecArgs{
    				Generators: argocd.ApplicationSetSpecGeneratorArray{
    					&argocd.ApplicationSetSpecGeneratorArgs{
    						Lists: argocd.ApplicationSetSpecGeneratorListArray{
    							&argocd.ApplicationSetSpecGeneratorListArgs{
    								Elements: pulumi.StringMapArray{
    									pulumi.StringMap{
    										"cluster": pulumi.String("engineering-dev"),
    										"url":     pulumi.String("https://kubernetes.default.svc"),
    									},
    									pulumi.StringMap{
    										"cluster": pulumi.String("engineering-prod"),
    										"url":     pulumi.String("https://kubernetes.default.svc"),
    										"foo":     pulumi.String("bar"),
    									},
    								},
    							},
    						},
    					},
    				},
    				Template: &argocd.ApplicationSetSpecTemplateArgs{
    					Metadata: &argocd.ApplicationSetSpecTemplateMetadataArgs{
    						Name: pulumi.String("{{cluster}}-guestbook"),
    					},
    					Spec: &argocd.ApplicationSetSpecTemplateSpecArgs{
    						Project: pulumi.String("my-project"),
    						Sources: argocd.ApplicationSetSpecTemplateSpecSourceArray{
    							&argocd.ApplicationSetSpecTemplateSpecSourceArgs{
    								RepoUrl:        pulumi.String("https://github.com/argoproj/argo-cd.git"),
    								TargetRevision: pulumi.String("HEAD"),
    								Path:           pulumi.String("applicationset/examples/list-generator/guestbook/{{cluster}}"),
    							},
    						},
    						Destination: &argocd.ApplicationSetSpecTemplateSpecDestinationArgs{
    							Server:    pulumi.String("{{url}}"),
    							Namespace: pulumi.String("guestbook"),
    						},
    					},
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		// Matrix Generator
    		_, err = argocd.NewApplicationSet(ctx, "matrix", &argocd.ApplicationSetArgs{
    			Metadata: &argocd.ApplicationSetMetadataArgs{
    				Name: pulumi.String("matrix"),
    			},
    			Spec: &argocd.ApplicationSetSpecArgs{
    				Generators: argocd.ApplicationSetSpecGeneratorArray{
    					&argocd.ApplicationSetSpecGeneratorArgs{
    						Matrices: argocd.ApplicationSetSpecGeneratorMatrixArray{
    							&argocd.ApplicationSetSpecGeneratorMatrixArgs{
    								Generators: argocd.ApplicationSetSpecGeneratorMatrixGeneratorArray{
    									&argocd.ApplicationSetSpecGeneratorMatrixGeneratorArgs{
    										Gits: argocd.ApplicationSetSpecGeneratorMatrixGeneratorGitArray{
    											&argocd.ApplicationSetSpecGeneratorMatrixGeneratorGitArgs{
    												RepoUrl:  pulumi.String("https://github.com/argoproj/argo-cd.git"),
    												Revision: pulumi.String("HEAD"),
    												Directories: argocd.ApplicationSetSpecGeneratorMatrixGeneratorGitDirectoryArray{
    													&argocd.ApplicationSetSpecGeneratorMatrixGeneratorGitDirectoryArgs{
    														Path: pulumi.String("applicationset/examples/matrix/cluster-addons/*"),
    													},
    												},
    											},
    										},
    									},
    									&argocd.ApplicationSetSpecGeneratorMatrixGeneratorArgs{
    										Clusters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterArray{
    											&argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterArgs{
    												Selector: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterSelectorArgs{
    													MatchLabels: pulumi.StringMap{
    														"argocd.argoproj.io/secret-type": pulumi.String("cluster"),
    													},
    												},
    											},
    										},
    									},
    								},
    							},
    						},
    					},
    				},
    				Template: &argocd.ApplicationSetSpecTemplateArgs{
    					Metadata: &argocd.ApplicationSetSpecTemplateMetadataArgs{
    						Name: pulumi.String("{{path.basename}}-{{name}}"),
    					},
    					Spec: &argocd.ApplicationSetSpecTemplateSpecArgs{
    						Project: pulumi.String("default"),
    						Sources: argocd.ApplicationSetSpecTemplateSpecSourceArray{
    							&argocd.ApplicationSetSpecTemplateSpecSourceArgs{
    								RepoUrl:        pulumi.String("https://github.com/argoproj/argo-cd.git"),
    								TargetRevision: pulumi.String("HEAD"),
    								Path:           pulumi.String("{{path}}"),
    							},
    						},
    						Destination: &argocd.ApplicationSetSpecTemplateSpecDestinationArgs{
    							Server:    pulumi.String("{{server}}"),
    							Namespace: pulumi.String("{{path.basename}}"),
    						},
    					},
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		// Merge Generator
    		_, err = argocd.NewApplicationSet(ctx, "merge", &argocd.ApplicationSetArgs{
    			Metadata: &argocd.ApplicationSetMetadataArgs{
    				Name: pulumi.String("merge"),
    			},
    			Spec: &argocd.ApplicationSetSpecArgs{
    				Generators: argocd.ApplicationSetSpecGeneratorArray{
    					&argocd.ApplicationSetSpecGeneratorArgs{
    						Merges: argocd.ApplicationSetSpecGeneratorMergeArray{
    							&argocd.ApplicationSetSpecGeneratorMergeArgs{
    								MergeKeys: pulumi.StringArray{
    									pulumi.String("server"),
    								},
    								Generators: argocd.ApplicationSetSpecGeneratorMergeGeneratorArray{
    									&argocd.ApplicationSetSpecGeneratorMergeGeneratorArgs{
    										Clusters: argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterArray{
    											&argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterArgs{
    												Values: pulumi.StringMap{
    													"kafka": pulumi.String("true"),
    													"redis": pulumi.String("false"),
    												},
    											},
    										},
    									},
    									&argocd.ApplicationSetSpecGeneratorMergeGeneratorArgs{
    										Clusters: argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterArray{
    											&argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterArgs{
    												Selector: &argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterSelectorArgs{
    													MatchLabels: pulumi.StringMap{
    														"use-kafka": pulumi.String("false"),
    													},
    												},
    												Values: pulumi.StringMap{
    													"kafka": pulumi.String("false"),
    												},
    											},
    										},
    									},
    									&argocd.ApplicationSetSpecGeneratorMergeGeneratorArgs{
    										Lists: argocd.ApplicationSetSpecGeneratorMergeGeneratorListArray{
    											&argocd.ApplicationSetSpecGeneratorMergeGeneratorListArgs{
    												Elements: pulumi.StringMapArray{
    													pulumi.StringMap{
    														"server":       pulumi.String("https://2.4.6.8"),
    														"values.redis": pulumi.String("true"),
    													},
    												},
    											},
    										},
    									},
    								},
    							},
    						},
    					},
    				},
    				Template: &argocd.ApplicationSetSpecTemplateArgs{
    					Metadata: &argocd.ApplicationSetSpecTemplateMetadataArgs{
    						Name: pulumi.String("{{name}}"),
    					},
    					Spec: &argocd.ApplicationSetSpecTemplateSpecArgs{
    						Project: pulumi.String("default"),
    						Sources: argocd.ApplicationSetSpecTemplateSpecSourceArray{
    							&argocd.ApplicationSetSpecTemplateSpecSourceArgs{
    								RepoUrl:        pulumi.String("https://github.com/argoproj/argo-cd.git"),
    								Path:           pulumi.String("app"),
    								TargetRevision: pulumi.String("HEAD"),
    								Helm: &argocd.ApplicationSetSpecTemplateSpecSourceHelmArgs{
    									Parameters: argocd.ApplicationSetSpecTemplateSpecSourceHelmParameterArray{
    										&argocd.ApplicationSetSpecTemplateSpecSourceHelmParameterArgs{
    											Name:  pulumi.String("kafka"),
    											Value: pulumi.String("{{values.kafka}}"),
    										},
    										&argocd.ApplicationSetSpecTemplateSpecSourceHelmParameterArgs{
    											Name:  pulumi.String("redis"),
    											Value: pulumi.String("{{values.redis}}"),
    										},
    									},
    								},
    							},
    						},
    						Destination: &argocd.ApplicationSetSpecTemplateSpecDestinationArgs{
    							Server:    pulumi.String("{{server}}"),
    							Namespace: pulumi.String("default"),
    						},
    					},
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		// Pull Request Generator - GitHub
    		_, err = argocd.NewApplicationSet(ctx, "pr_github", &argocd.ApplicationSetArgs{
    			Metadata: &argocd.ApplicationSetMetadataArgs{
    				Name: pulumi.String("pr-github"),
    			},
    			Spec: &argocd.ApplicationSetSpecArgs{
    				Generators: argocd.ApplicationSetSpecGeneratorArray{
    					&argocd.ApplicationSetSpecGeneratorArgs{
    						PullRequests: argocd.ApplicationSetSpecGeneratorPullRequestArray{
    							&argocd.ApplicationSetSpecGeneratorPullRequestArgs{
    								Github: &argocd.ApplicationSetSpecGeneratorPullRequestGithubArgs{
    									Api:           pulumi.String("https://git.example.com/"),
    									Owner:         pulumi.String("myorg"),
    									Repo:          pulumi.String("myrepository"),
    									AppSecretName: pulumi.String("github-app-repo-creds"),
    									TokenRef: &argocd.ApplicationSetSpecGeneratorPullRequestGithubTokenRefArgs{
    										SecretName: pulumi.String("github-token"),
    										Key:        pulumi.String("token"),
    									},
    									Labels: pulumi.StringArray{
    										pulumi.String("preview"),
    									},
    								},
    							},
    						},
    					},
    				},
    				Template: &argocd.ApplicationSetSpecTemplateArgs{
    					Metadata: &argocd.ApplicationSetSpecTemplateMetadataArgs{
    						Name: pulumi.String("myapp-{{branch}}-{{number}}"),
    					},
    					Spec: &argocd.ApplicationSetSpecTemplateSpecArgs{
    						Project: pulumi.String("default"),
    						Sources: argocd.ApplicationSetSpecTemplateSpecSourceArray{
    							&argocd.ApplicationSetSpecTemplateSpecSourceArgs{
    								RepoUrl:        pulumi.String("https://github.com/myorg/myrepo.git"),
    								Path:           pulumi.String("kubernetes/"),
    								TargetRevision: pulumi.String("{{head_sha}}"),
    								Helm: &argocd.ApplicationSetSpecTemplateSpecSourceHelmArgs{
    									Parameters: argocd.ApplicationSetSpecTemplateSpecSourceHelmParameterArray{
    										&argocd.ApplicationSetSpecTemplateSpecSourceHelmParameterArgs{
    											Name:  pulumi.String("image.tag"),
    											Value: pulumi.String("pull-{{head_sha}}"),
    										},
    									},
    								},
    							},
    						},
    						Destination: &argocd.ApplicationSetSpecTemplateSpecDestinationArgs{
    							Server:    pulumi.String("https://kubernetes.default.svc"),
    							Namespace: pulumi.String("default"),
    						},
    					},
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		// SCM Provider Generator - GitHub
    		_, err = argocd.NewApplicationSet(ctx, "scm_github", &argocd.ApplicationSetArgs{
    			Metadata: &argocd.ApplicationSetMetadataArgs{
    				Name: pulumi.String("scm-github"),
    			},
    			Spec: &argocd.ApplicationSetSpecArgs{
    				Generators: argocd.ApplicationSetSpecGeneratorArray{
    					&argocd.ApplicationSetSpecGeneratorArgs{
    						ScmProviders: argocd.ApplicationSetSpecGeneratorScmProviderArray{
    							&argocd.ApplicationSetSpecGeneratorScmProviderArgs{
    								Github: &argocd.ApplicationSetSpecGeneratorScmProviderGithubArgs{
    									AppSecretName: pulumi.String("gh-app-repo-creds"),
    									Organization:  pulumi.String("myorg"),
    								},
    							},
    						},
    					},
    				},
    				Template: &argocd.ApplicationSetSpecTemplateArgs{
    					Metadata: &argocd.ApplicationSetSpecTemplateMetadataArgs{
    						Name: pulumi.String("{{repository}}"),
    					},
    					Spec: &argocd.ApplicationSetSpecTemplateSpecArgs{
    						Project: pulumi.String("default"),
    						Sources: argocd.ApplicationSetSpecTemplateSpecSourceArray{
    							&argocd.ApplicationSetSpecTemplateSpecSourceArgs{
    								RepoUrl:        pulumi.String("{{url}}"),
    								Path:           pulumi.String("kubernetes/"),
    								TargetRevision: pulumi.String("{{branch}}"),
    							},
    						},
    						Destination: &argocd.ApplicationSetSpecTemplateSpecDestinationArgs{
    							Server:    pulumi.String("https://kubernetes.default.svc"),
    							Namespace: pulumi.String("default"),
    						},
    					},
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		// Progressive Sync - Rolling Update
    		_, err = argocd.NewApplicationSet(ctx, "progressive_sync", &argocd.ApplicationSetArgs{
    			Metadata: &argocd.ApplicationSetMetadataArgs{
    				Name: pulumi.String("progressive-sync"),
    			},
    			Spec: &argocd.ApplicationSetSpecArgs{
    				Generators: argocd.ApplicationSetSpecGeneratorArray{
    					&argocd.ApplicationSetSpecGeneratorArgs{
    						Lists: argocd.ApplicationSetSpecGeneratorListArray{
    							&argocd.ApplicationSetSpecGeneratorListArgs{
    								Elements: pulumi.StringMapArray{
    									pulumi.StringMap{
    										"cluster": pulumi.String("engineering-dev"),
    										"url":     pulumi.String("https://1.2.3.4"),
    										"env":     pulumi.String("env-dev"),
    									},
    									pulumi.StringMap{
    										"cluster": pulumi.String("engineering-qa"),
    										"url":     pulumi.String("https://2.4.6.8"),
    										"env":     pulumi.String("env-qa"),
    									},
    									pulumi.StringMap{
    										"cluster": pulumi.String("engineering-prod"),
    										"url":     pulumi.String("https://9.8.7.6/"),
    										"env":     pulumi.String("env-prod"),
    									},
    								},
    							},
    						},
    					},
    				},
    				Strategy: &argocd.ApplicationSetSpecStrategyArgs{
    					Type: pulumi.String("RollingSync"),
    					RollingSyncs: argocd.ApplicationSetSpecStrategyRollingSyncArray{
    						&argocd.ApplicationSetSpecStrategyRollingSyncArgs{
    							Steps: argocd.ApplicationSetSpecStrategyRollingSyncStepArray{
    								&argocd.ApplicationSetSpecStrategyRollingSyncStepArgs{
    									MatchExpressions: argocd.ApplicationSetSpecStrategyRollingSyncStepMatchExpressionArray{
    										&argocd.ApplicationSetSpecStrategyRollingSyncStepMatchExpressionArgs{
    											Key:      pulumi.String("envLabel"),
    											Operator: pulumi.String("In"),
    											Values: pulumi.StringArray{
    												pulumi.String("env-dev"),
    											},
    										},
    									},
    								},
    								&argocd.ApplicationSetSpecStrategyRollingSyncStepArgs{
    									MatchExpressions: argocd.ApplicationSetSpecStrategyRollingSyncStepMatchExpressionArray{
    										&argocd.ApplicationSetSpecStrategyRollingSyncStepMatchExpressionArgs{
    											Key:      pulumi.String("envLabel"),
    											Operator: pulumi.String("In"),
    											Values: pulumi.StringArray{
    												pulumi.String("env-qa"),
    											},
    										},
    									},
    									MaxUpdate: pulumi.String("0"),
    								},
    								&argocd.ApplicationSetSpecStrategyRollingSyncStepArgs{
    									MatchExpressions: argocd.ApplicationSetSpecStrategyRollingSyncStepMatchExpressionArray{
    										&argocd.ApplicationSetSpecStrategyRollingSyncStepMatchExpressionArgs{
    											Key:      pulumi.String("envLabel"),
    											Operator: pulumi.String("In"),
    											Values: pulumi.StringArray{
    												pulumi.String("env-prod"),
    											},
    										},
    									},
    									MaxUpdate: pulumi.String("10%"),
    								},
    							},
    						},
    					},
    				},
    				GoTemplate: pulumi.Bool(true),
    				Template: &argocd.ApplicationSetSpecTemplateArgs{
    					Metadata: &argocd.ApplicationSetSpecTemplateMetadataArgs{
    						Name: pulumi.String("{{.cluster}}-guestbook"),
    						Labels: pulumi.StringMap{
    							"envLabel": pulumi.String("{{.env}}"),
    						},
    					},
    					Spec: &argocd.ApplicationSetSpecTemplateSpecArgs{
    						Project: pulumi.String("default"),
    						Sources: argocd.ApplicationSetSpecTemplateSpecSourceArray{
    							&argocd.ApplicationSetSpecTemplateSpecSourceArgs{
    								RepoUrl:        pulumi.String("https://github.com/infra-team/cluster-deployments.git"),
    								Path:           pulumi.String("guestbook/{{.cluster}}"),
    								TargetRevision: pulumi.String("HEAD"),
    							},
    						},
    						Destination: &argocd.ApplicationSetSpecTemplateSpecDestinationArgs{
    							Server:    pulumi.String("{{.url}}"),
    							Namespace: pulumi.String("guestbook"),
    						},
    					},
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Argocd = Three14.Argocd;
    
    return await Deployment.RunAsync(() => 
    {
        // Clusters Generator
        var clustersSelector = new Argocd.ApplicationSet("clusters_selector", new()
        {
            Metadata = new Argocd.Inputs.ApplicationSetMetadataArgs
            {
                Name = "clusters-selector",
            },
            Spec = new Argocd.Inputs.ApplicationSetSpecArgs
            {
                Generators = new[]
                {
                    new Argocd.Inputs.ApplicationSetSpecGeneratorArgs
                    {
                        Clusters = new[]
                        {
                            new Argocd.Inputs.ApplicationSetSpecGeneratorClusterArgs
                            {
                                Selector = new Argocd.Inputs.ApplicationSetSpecGeneratorClusterSelectorArgs
                                {
                                    MatchLabels = 
                                    {
                                        { "argocd.argoproj.io/secret-type", "cluster" },
                                    },
                                },
                            },
                        },
                    },
                },
                Template = new Argocd.Inputs.ApplicationSetSpecTemplateArgs
                {
                    Metadata = new Argocd.Inputs.ApplicationSetSpecTemplateMetadataArgs
                    {
                        Name = "{{name}}-clusters-selector",
                    },
                    Spec = new Argocd.Inputs.ApplicationSetSpecTemplateSpecArgs
                    {
                        Sources = new[]
                        {
                            new Argocd.Inputs.ApplicationSetSpecTemplateSpecSourceArgs
                            {
                                RepoUrl = "https://github.com/argoproj/argocd-example-apps/",
                                TargetRevision = "HEAD",
                                Path = "guestbook",
                            },
                        },
                        Destination = new Argocd.Inputs.ApplicationSetSpecTemplateSpecDestinationArgs
                        {
                            Server = "{{server}}",
                            Namespace = "default",
                        },
                    },
                },
            },
        });
    
        // Cluster Decision Resource Generator
        var clusterDecisionResource = new Argocd.ApplicationSet("cluster_decision_resource", new()
        {
            Metadata = new Argocd.Inputs.ApplicationSetMetadataArgs
            {
                Name = "cluster-decision-resource",
            },
            Spec = new Argocd.Inputs.ApplicationSetSpecArgs
            {
                Generators = new[]
                {
                    new Argocd.Inputs.ApplicationSetSpecGeneratorArgs
                    {
                        ClusterDecisionResources = new[]
                        {
                            new Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceArgs
                            {
                                ConfigMapRef = "my-configmap",
                                Name = "quak",
                            },
                        },
                    },
                },
                Template = new Argocd.Inputs.ApplicationSetSpecTemplateArgs
                {
                    Metadata = new Argocd.Inputs.ApplicationSetSpecTemplateMetadataArgs
                    {
                        Name = "{{name}}-guestbook",
                    },
                    Spec = new Argocd.Inputs.ApplicationSetSpecTemplateSpecArgs
                    {
                        Sources = new[]
                        {
                            new Argocd.Inputs.ApplicationSetSpecTemplateSpecSourceArgs
                            {
                                RepoUrl = "https://github.com/argoproj/argocd-example-apps/",
                                TargetRevision = "HEAD",
                                Path = "guestbook",
                            },
                        },
                        Destination = new Argocd.Inputs.ApplicationSetSpecTemplateSpecDestinationArgs
                        {
                            Server = "{{server}}",
                            Namespace = "default",
                        },
                    },
                },
            },
        });
    
        // Git Generator - Directories
        var gitDirectories = new Argocd.ApplicationSet("git_directories", new()
        {
            Metadata = new Argocd.Inputs.ApplicationSetMetadataArgs
            {
                Name = "git-directories",
            },
            Spec = new Argocd.Inputs.ApplicationSetSpecArgs
            {
                Generators = new[]
                {
                    new Argocd.Inputs.ApplicationSetSpecGeneratorArgs
                    {
                        Gits = new[]
                        {
                            new Argocd.Inputs.ApplicationSetSpecGeneratorGitArgs
                            {
                                RepoUrl = "https://github.com/argoproj/argo-cd.git",
                                Revision = "HEAD",
                                Directories = new[]
                                {
                                    new Argocd.Inputs.ApplicationSetSpecGeneratorGitDirectoryArgs
                                    {
                                        Path = "applicationset/examples/git-generator-directory/cluster-addons/*",
                                    },
                                    new Argocd.Inputs.ApplicationSetSpecGeneratorGitDirectoryArgs
                                    {
                                        Path = "applicationset/examples/git-generator-directory/excludes/cluster-addons/exclude-helm-guestbook",
                                        Exclude = true,
                                    },
                                },
                            },
                        },
                    },
                },
                Template = new Argocd.Inputs.ApplicationSetSpecTemplateArgs
                {
                    Metadata = new Argocd.Inputs.ApplicationSetSpecTemplateMetadataArgs
                    {
                        Name = "{{path.basename}}-git-directories",
                    },
                    Spec = new Argocd.Inputs.ApplicationSetSpecTemplateSpecArgs
                    {
                        Sources = new[]
                        {
                            new Argocd.Inputs.ApplicationSetSpecTemplateSpecSourceArgs
                            {
                                RepoUrl = "https://github.com/argoproj/argo-cd.git",
                                TargetRevision = "HEAD",
                                Path = "{{path}}",
                            },
                        },
                        Destination = new Argocd.Inputs.ApplicationSetSpecTemplateSpecDestinationArgs
                        {
                            Server = "https://kubernetes.default.svc",
                            Namespace = "{{path.basename}}",
                        },
                    },
                },
            },
        });
    
        // Git Generator - Files
        var gitFiles = new Argocd.ApplicationSet("git_files", new()
        {
            Metadata = new Argocd.Inputs.ApplicationSetMetadataArgs
            {
                Name = "git-files",
            },
            Spec = new Argocd.Inputs.ApplicationSetSpecArgs
            {
                Generators = new[]
                {
                    new Argocd.Inputs.ApplicationSetSpecGeneratorArgs
                    {
                        Gits = new[]
                        {
                            new Argocd.Inputs.ApplicationSetSpecGeneratorGitArgs
                            {
                                RepoUrl = "https://github.com/argoproj/argo-cd.git",
                                Revision = "HEAD",
                                Files = new[]
                                {
                                    new Argocd.Inputs.ApplicationSetSpecGeneratorGitFileArgs
                                    {
                                        Path = "applicationset/examples/git-generator-files-discovery/cluster-config/**/config.json",
                                    },
                                },
                            },
                        },
                    },
                },
                Template = new Argocd.Inputs.ApplicationSetSpecTemplateArgs
                {
                    Metadata = new Argocd.Inputs.ApplicationSetSpecTemplateMetadataArgs
                    {
                        Name = "{{cluster.name}}-git-files",
                    },
                    Spec = new Argocd.Inputs.ApplicationSetSpecTemplateSpecArgs
                    {
                        Sources = new[]
                        {
                            new Argocd.Inputs.ApplicationSetSpecTemplateSpecSourceArgs
                            {
                                RepoUrl = "https://github.com/argoproj/argo-cd.git",
                                TargetRevision = "HEAD",
                                Path = "applicationset/examples/git-generator-files-discovery/apps/guestbook",
                            },
                        },
                        Destination = new Argocd.Inputs.ApplicationSetSpecTemplateSpecDestinationArgs
                        {
                            Server = "{{cluster.address}}",
                            Namespace = "guestbook",
                        },
                    },
                },
            },
        });
    
        // List Generator
        var list = new Argocd.ApplicationSet("list", new()
        {
            Metadata = new Argocd.Inputs.ApplicationSetMetadataArgs
            {
                Name = "list",
            },
            Spec = new Argocd.Inputs.ApplicationSetSpecArgs
            {
                Generators = new[]
                {
                    new Argocd.Inputs.ApplicationSetSpecGeneratorArgs
                    {
                        Lists = new[]
                        {
                            new Argocd.Inputs.ApplicationSetSpecGeneratorListArgs
                            {
                                Elements = new[]
                                {
                                    
                                    {
                                        { "cluster", "engineering-dev" },
                                        { "url", "https://kubernetes.default.svc" },
                                    },
                                    
                                    {
                                        { "cluster", "engineering-prod" },
                                        { "url", "https://kubernetes.default.svc" },
                                        { "foo", "bar" },
                                    },
                                },
                            },
                        },
                    },
                },
                Template = new Argocd.Inputs.ApplicationSetSpecTemplateArgs
                {
                    Metadata = new Argocd.Inputs.ApplicationSetSpecTemplateMetadataArgs
                    {
                        Name = "{{cluster}}-guestbook",
                    },
                    Spec = new Argocd.Inputs.ApplicationSetSpecTemplateSpecArgs
                    {
                        Project = "my-project",
                        Sources = new[]
                        {
                            new Argocd.Inputs.ApplicationSetSpecTemplateSpecSourceArgs
                            {
                                RepoUrl = "https://github.com/argoproj/argo-cd.git",
                                TargetRevision = "HEAD",
                                Path = "applicationset/examples/list-generator/guestbook/{{cluster}}",
                            },
                        },
                        Destination = new Argocd.Inputs.ApplicationSetSpecTemplateSpecDestinationArgs
                        {
                            Server = "{{url}}",
                            Namespace = "guestbook",
                        },
                    },
                },
            },
        });
    
        // Matrix Generator
        var matrix = new Argocd.ApplicationSet("matrix", new()
        {
            Metadata = new Argocd.Inputs.ApplicationSetMetadataArgs
            {
                Name = "matrix",
            },
            Spec = new Argocd.Inputs.ApplicationSetSpecArgs
            {
                Generators = new[]
                {
                    new Argocd.Inputs.ApplicationSetSpecGeneratorArgs
                    {
                        Matrices = new[]
                        {
                            new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixArgs
                            {
                                Generators = new[]
                                {
                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorArgs
                                    {
                                        Gits = new[]
                                        {
                                            new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitArgs
                                            {
                                                RepoUrl = "https://github.com/argoproj/argo-cd.git",
                                                Revision = "HEAD",
                                                Directories = new[]
                                                {
                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitDirectoryArgs
                                                    {
                                                        Path = "applicationset/examples/matrix/cluster-addons/*",
                                                    },
                                                },
                                            },
                                        },
                                    },
                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorArgs
                                    {
                                        Clusters = new[]
                                        {
                                            new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterArgs
                                            {
                                                Selector = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterSelectorArgs
                                                {
                                                    MatchLabels = 
                                                    {
                                                        { "argocd.argoproj.io/secret-type", "cluster" },
                                                    },
                                                },
                                            },
                                        },
                                    },
                                },
                            },
                        },
                    },
                },
                Template = new Argocd.Inputs.ApplicationSetSpecTemplateArgs
                {
                    Metadata = new Argocd.Inputs.ApplicationSetSpecTemplateMetadataArgs
                    {
                        Name = "{{path.basename}}-{{name}}",
                    },
                    Spec = new Argocd.Inputs.ApplicationSetSpecTemplateSpecArgs
                    {
                        Project = "default",
                        Sources = new[]
                        {
                            new Argocd.Inputs.ApplicationSetSpecTemplateSpecSourceArgs
                            {
                                RepoUrl = "https://github.com/argoproj/argo-cd.git",
                                TargetRevision = "HEAD",
                                Path = "{{path}}",
                            },
                        },
                        Destination = new Argocd.Inputs.ApplicationSetSpecTemplateSpecDestinationArgs
                        {
                            Server = "{{server}}",
                            Namespace = "{{path.basename}}",
                        },
                    },
                },
            },
        });
    
        // Merge Generator
        var merge = new Argocd.ApplicationSet("merge", new()
        {
            Metadata = new Argocd.Inputs.ApplicationSetMetadataArgs
            {
                Name = "merge",
            },
            Spec = new Argocd.Inputs.ApplicationSetSpecArgs
            {
                Generators = new[]
                {
                    new Argocd.Inputs.ApplicationSetSpecGeneratorArgs
                    {
                        Merges = new[]
                        {
                            new Argocd.Inputs.ApplicationSetSpecGeneratorMergeArgs
                            {
                                MergeKeys = new[]
                                {
                                    "server",
                                },
                                Generators = new[]
                                {
                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorArgs
                                    {
                                        Clusters = new[]
                                        {
                                            new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterArgs
                                            {
                                                Values = 
                                                {
                                                    { "kafka", "true" },
                                                    { "redis", "false" },
                                                },
                                            },
                                        },
                                    },
                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorArgs
                                    {
                                        Clusters = new[]
                                        {
                                            new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterArgs
                                            {
                                                Selector = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterSelectorArgs
                                                {
                                                    MatchLabels = 
                                                    {
                                                        { "use-kafka", "false" },
                                                    },
                                                },
                                                Values = 
                                                {
                                                    { "kafka", "false" },
                                                },
                                            },
                                        },
                                    },
                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorArgs
                                    {
                                        Lists = new[]
                                        {
                                            new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorListArgs
                                            {
                                                Elements = new[]
                                                {
                                                    
                                                    {
                                                        { "server", "https://2.4.6.8" },
                                                        { "values.redis", "true" },
                                                    },
                                                },
                                            },
                                        },
                                    },
                                },
                            },
                        },
                    },
                },
                Template = new Argocd.Inputs.ApplicationSetSpecTemplateArgs
                {
                    Metadata = new Argocd.Inputs.ApplicationSetSpecTemplateMetadataArgs
                    {
                        Name = "{{name}}",
                    },
                    Spec = new Argocd.Inputs.ApplicationSetSpecTemplateSpecArgs
                    {
                        Project = "default",
                        Sources = new[]
                        {
                            new Argocd.Inputs.ApplicationSetSpecTemplateSpecSourceArgs
                            {
                                RepoUrl = "https://github.com/argoproj/argo-cd.git",
                                Path = "app",
                                TargetRevision = "HEAD",
                                Helm = new Argocd.Inputs.ApplicationSetSpecTemplateSpecSourceHelmArgs
                                {
                                    Parameters = new[]
                                    {
                                        new Argocd.Inputs.ApplicationSetSpecTemplateSpecSourceHelmParameterArgs
                                        {
                                            Name = "kafka",
                                            Value = "{{values.kafka}}",
                                        },
                                        new Argocd.Inputs.ApplicationSetSpecTemplateSpecSourceHelmParameterArgs
                                        {
                                            Name = "redis",
                                            Value = "{{values.redis}}",
                                        },
                                    },
                                },
                            },
                        },
                        Destination = new Argocd.Inputs.ApplicationSetSpecTemplateSpecDestinationArgs
                        {
                            Server = "{{server}}",
                            Namespace = "default",
                        },
                    },
                },
            },
        });
    
        // Pull Request Generator - GitHub
        var prGithub = new Argocd.ApplicationSet("pr_github", new()
        {
            Metadata = new Argocd.Inputs.ApplicationSetMetadataArgs
            {
                Name = "pr-github",
            },
            Spec = new Argocd.Inputs.ApplicationSetSpecArgs
            {
                Generators = new[]
                {
                    new Argocd.Inputs.ApplicationSetSpecGeneratorArgs
                    {
                        PullRequests = new[]
                        {
                            new Argocd.Inputs.ApplicationSetSpecGeneratorPullRequestArgs
                            {
                                Github = new Argocd.Inputs.ApplicationSetSpecGeneratorPullRequestGithubArgs
                                {
                                    Api = "https://git.example.com/",
                                    Owner = "myorg",
                                    Repo = "myrepository",
                                    AppSecretName = "github-app-repo-creds",
                                    TokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorPullRequestGithubTokenRefArgs
                                    {
                                        SecretName = "github-token",
                                        Key = "token",
                                    },
                                    Labels = new[]
                                    {
                                        "preview",
                                    },
                                },
                            },
                        },
                    },
                },
                Template = new Argocd.Inputs.ApplicationSetSpecTemplateArgs
                {
                    Metadata = new Argocd.Inputs.ApplicationSetSpecTemplateMetadataArgs
                    {
                        Name = "myapp-{{branch}}-{{number}}",
                    },
                    Spec = new Argocd.Inputs.ApplicationSetSpecTemplateSpecArgs
                    {
                        Project = "default",
                        Sources = new[]
                        {
                            new Argocd.Inputs.ApplicationSetSpecTemplateSpecSourceArgs
                            {
                                RepoUrl = "https://github.com/myorg/myrepo.git",
                                Path = "kubernetes/",
                                TargetRevision = "{{head_sha}}",
                                Helm = new Argocd.Inputs.ApplicationSetSpecTemplateSpecSourceHelmArgs
                                {
                                    Parameters = new[]
                                    {
                                        new Argocd.Inputs.ApplicationSetSpecTemplateSpecSourceHelmParameterArgs
                                        {
                                            Name = "image.tag",
                                            Value = "pull-{{head_sha}}",
                                        },
                                    },
                                },
                            },
                        },
                        Destination = new Argocd.Inputs.ApplicationSetSpecTemplateSpecDestinationArgs
                        {
                            Server = "https://kubernetes.default.svc",
                            Namespace = "default",
                        },
                    },
                },
            },
        });
    
        // SCM Provider Generator - GitHub
        var scmGithub = new Argocd.ApplicationSet("scm_github", new()
        {
            Metadata = new Argocd.Inputs.ApplicationSetMetadataArgs
            {
                Name = "scm-github",
            },
            Spec = new Argocd.Inputs.ApplicationSetSpecArgs
            {
                Generators = new[]
                {
                    new Argocd.Inputs.ApplicationSetSpecGeneratorArgs
                    {
                        ScmProviders = new[]
                        {
                            new Argocd.Inputs.ApplicationSetSpecGeneratorScmProviderArgs
                            {
                                Github = new Argocd.Inputs.ApplicationSetSpecGeneratorScmProviderGithubArgs
                                {
                                    AppSecretName = "gh-app-repo-creds",
                                    Organization = "myorg",
                                },
                            },
                        },
                    },
                },
                Template = new Argocd.Inputs.ApplicationSetSpecTemplateArgs
                {
                    Metadata = new Argocd.Inputs.ApplicationSetSpecTemplateMetadataArgs
                    {
                        Name = "{{repository}}",
                    },
                    Spec = new Argocd.Inputs.ApplicationSetSpecTemplateSpecArgs
                    {
                        Project = "default",
                        Sources = new[]
                        {
                            new Argocd.Inputs.ApplicationSetSpecTemplateSpecSourceArgs
                            {
                                RepoUrl = "{{url}}",
                                Path = "kubernetes/",
                                TargetRevision = "{{branch}}",
                            },
                        },
                        Destination = new Argocd.Inputs.ApplicationSetSpecTemplateSpecDestinationArgs
                        {
                            Server = "https://kubernetes.default.svc",
                            Namespace = "default",
                        },
                    },
                },
            },
        });
    
        // Progressive Sync - Rolling Update
        var progressiveSync = new Argocd.ApplicationSet("progressive_sync", new()
        {
            Metadata = new Argocd.Inputs.ApplicationSetMetadataArgs
            {
                Name = "progressive-sync",
            },
            Spec = new Argocd.Inputs.ApplicationSetSpecArgs
            {
                Generators = new[]
                {
                    new Argocd.Inputs.ApplicationSetSpecGeneratorArgs
                    {
                        Lists = new[]
                        {
                            new Argocd.Inputs.ApplicationSetSpecGeneratorListArgs
                            {
                                Elements = new[]
                                {
                                    
                                    {
                                        { "cluster", "engineering-dev" },
                                        { "url", "https://1.2.3.4" },
                                        { "env", "env-dev" },
                                    },
                                    
                                    {
                                        { "cluster", "engineering-qa" },
                                        { "url", "https://2.4.6.8" },
                                        { "env", "env-qa" },
                                    },
                                    
                                    {
                                        { "cluster", "engineering-prod" },
                                        { "url", "https://9.8.7.6/" },
                                        { "env", "env-prod" },
                                    },
                                },
                            },
                        },
                    },
                },
                Strategy = new Argocd.Inputs.ApplicationSetSpecStrategyArgs
                {
                    Type = "RollingSync",
                    RollingSyncs = new[]
                    {
                        new Argocd.Inputs.ApplicationSetSpecStrategyRollingSyncArgs
                        {
                            Steps = new[]
                            {
                                new Argocd.Inputs.ApplicationSetSpecStrategyRollingSyncStepArgs
                                {
                                    MatchExpressions = new[]
                                    {
                                        new Argocd.Inputs.ApplicationSetSpecStrategyRollingSyncStepMatchExpressionArgs
                                        {
                                            Key = "envLabel",
                                            Operator = "In",
                                            Values = new[]
                                            {
                                                "env-dev",
                                            },
                                        },
                                    },
                                },
                                new Argocd.Inputs.ApplicationSetSpecStrategyRollingSyncStepArgs
                                {
                                    MatchExpressions = new[]
                                    {
                                        new Argocd.Inputs.ApplicationSetSpecStrategyRollingSyncStepMatchExpressionArgs
                                        {
                                            Key = "envLabel",
                                            Operator = "In",
                                            Values = new[]
                                            {
                                                "env-qa",
                                            },
                                        },
                                    },
                                    MaxUpdate = "0",
                                },
                                new Argocd.Inputs.ApplicationSetSpecStrategyRollingSyncStepArgs
                                {
                                    MatchExpressions = new[]
                                    {
                                        new Argocd.Inputs.ApplicationSetSpecStrategyRollingSyncStepMatchExpressionArgs
                                        {
                                            Key = "envLabel",
                                            Operator = "In",
                                            Values = new[]
                                            {
                                                "env-prod",
                                            },
                                        },
                                    },
                                    MaxUpdate = "10%",
                                },
                            },
                        },
                    },
                },
                GoTemplate = true,
                Template = new Argocd.Inputs.ApplicationSetSpecTemplateArgs
                {
                    Metadata = new Argocd.Inputs.ApplicationSetSpecTemplateMetadataArgs
                    {
                        Name = "{{.cluster}}-guestbook",
                        Labels = 
                        {
                            { "envLabel", "{{.env}}" },
                        },
                    },
                    Spec = new Argocd.Inputs.ApplicationSetSpecTemplateSpecArgs
                    {
                        Project = "default",
                        Sources = new[]
                        {
                            new Argocd.Inputs.ApplicationSetSpecTemplateSpecSourceArgs
                            {
                                RepoUrl = "https://github.com/infra-team/cluster-deployments.git",
                                Path = "guestbook/{{.cluster}}",
                                TargetRevision = "HEAD",
                            },
                        },
                        Destination = new Argocd.Inputs.ApplicationSetSpecTemplateSpecDestinationArgs
                        {
                            Server = "{{.url}}",
                            Namespace = "guestbook",
                        },
                    },
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.argocd.ApplicationSet;
    import com.pulumi.argocd.ApplicationSetArgs;
    import com.pulumi.argocd.inputs.ApplicationSetMetadataArgs;
    import com.pulumi.argocd.inputs.ApplicationSetSpecArgs;
    import com.pulumi.argocd.inputs.ApplicationSetSpecTemplateArgs;
    import com.pulumi.argocd.inputs.ApplicationSetSpecTemplateMetadataArgs;
    import com.pulumi.argocd.inputs.ApplicationSetSpecTemplateSpecArgs;
    import com.pulumi.argocd.inputs.ApplicationSetSpecTemplateSpecDestinationArgs;
    import com.pulumi.argocd.inputs.ApplicationSetSpecStrategyArgs;
    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) {
            // Clusters Generator
            var clustersSelector = new ApplicationSet("clustersSelector", ApplicationSetArgs.builder()
                .metadata(ApplicationSetMetadataArgs.builder()
                    .name("clusters-selector")
                    .build())
                .spec(ApplicationSetSpecArgs.builder()
                    .generators(ApplicationSetSpecGeneratorArgs.builder()
                        .clusters(ApplicationSetSpecGeneratorClusterArgs.builder()
                            .selector(ApplicationSetSpecGeneratorClusterSelectorArgs.builder()
                                .matchLabels(Map.of("argocd.argoproj.io/secret-type", "cluster"))
                                .build())
                            .build())
                        .build())
                    .template(ApplicationSetSpecTemplateArgs.builder()
                        .metadata(ApplicationSetSpecTemplateMetadataArgs.builder()
                            .name("{{name}}-clusters-selector")
                            .build())
                        .spec(ApplicationSetSpecTemplateSpecArgs.builder()
                            .sources(ApplicationSetSpecTemplateSpecSourceArgs.builder()
                                .repoUrl("https://github.com/argoproj/argocd-example-apps/")
                                .targetRevision("HEAD")
                                .path("guestbook")
                                .build())
                            .destination(ApplicationSetSpecTemplateSpecDestinationArgs.builder()
                                .server("{{server}}")
                                .namespace("default")
                                .build())
                            .build())
                        .build())
                    .build())
                .build());
    
            // Cluster Decision Resource Generator
            var clusterDecisionResource = new ApplicationSet("clusterDecisionResource", ApplicationSetArgs.builder()
                .metadata(ApplicationSetMetadataArgs.builder()
                    .name("cluster-decision-resource")
                    .build())
                .spec(ApplicationSetSpecArgs.builder()
                    .generators(ApplicationSetSpecGeneratorArgs.builder()
                        .clusterDecisionResources(ApplicationSetSpecGeneratorClusterDecisionResourceArgs.builder()
                            .configMapRef("my-configmap")
                            .name("quak")
                            .build())
                        .build())
                    .template(ApplicationSetSpecTemplateArgs.builder()
                        .metadata(ApplicationSetSpecTemplateMetadataArgs.builder()
                            .name("{{name}}-guestbook")
                            .build())
                        .spec(ApplicationSetSpecTemplateSpecArgs.builder()
                            .sources(ApplicationSetSpecTemplateSpecSourceArgs.builder()
                                .repoUrl("https://github.com/argoproj/argocd-example-apps/")
                                .targetRevision("HEAD")
                                .path("guestbook")
                                .build())
                            .destination(ApplicationSetSpecTemplateSpecDestinationArgs.builder()
                                .server("{{server}}")
                                .namespace("default")
                                .build())
                            .build())
                        .build())
                    .build())
                .build());
    
            // Git Generator - Directories
            var gitDirectories = new ApplicationSet("gitDirectories", ApplicationSetArgs.builder()
                .metadata(ApplicationSetMetadataArgs.builder()
                    .name("git-directories")
                    .build())
                .spec(ApplicationSetSpecArgs.builder()
                    .generators(ApplicationSetSpecGeneratorArgs.builder()
                        .gits(ApplicationSetSpecGeneratorGitArgs.builder()
                            .repoUrl("https://github.com/argoproj/argo-cd.git")
                            .revision("HEAD")
                            .directories(                        
                                ApplicationSetSpecGeneratorGitDirectoryArgs.builder()
                                    .path("applicationset/examples/git-generator-directory/cluster-addons/*")
                                    .build(),
                                ApplicationSetSpecGeneratorGitDirectoryArgs.builder()
                                    .path("applicationset/examples/git-generator-directory/excludes/cluster-addons/exclude-helm-guestbook")
                                    .exclude(true)
                                    .build())
                            .build())
                        .build())
                    .template(ApplicationSetSpecTemplateArgs.builder()
                        .metadata(ApplicationSetSpecTemplateMetadataArgs.builder()
                            .name("{{path.basename}}-git-directories")
                            .build())
                        .spec(ApplicationSetSpecTemplateSpecArgs.builder()
                            .sources(ApplicationSetSpecTemplateSpecSourceArgs.builder()
                                .repoUrl("https://github.com/argoproj/argo-cd.git")
                                .targetRevision("HEAD")
                                .path("{{path}}")
                                .build())
                            .destination(ApplicationSetSpecTemplateSpecDestinationArgs.builder()
                                .server("https://kubernetes.default.svc")
                                .namespace("{{path.basename}}")
                                .build())
                            .build())
                        .build())
                    .build())
                .build());
    
            // Git Generator - Files
            var gitFiles = new ApplicationSet("gitFiles", ApplicationSetArgs.builder()
                .metadata(ApplicationSetMetadataArgs.builder()
                    .name("git-files")
                    .build())
                .spec(ApplicationSetSpecArgs.builder()
                    .generators(ApplicationSetSpecGeneratorArgs.builder()
                        .gits(ApplicationSetSpecGeneratorGitArgs.builder()
                            .repoUrl("https://github.com/argoproj/argo-cd.git")
                            .revision("HEAD")
                            .files(ApplicationSetSpecGeneratorGitFileArgs.builder()
                                .path("applicationset/examples/git-generator-files-discovery/cluster-config/**/config.json")
                                .build())
                            .build())
                        .build())
                    .template(ApplicationSetSpecTemplateArgs.builder()
                        .metadata(ApplicationSetSpecTemplateMetadataArgs.builder()
                            .name("{{cluster.name}}-git-files")
                            .build())
                        .spec(ApplicationSetSpecTemplateSpecArgs.builder()
                            .sources(ApplicationSetSpecTemplateSpecSourceArgs.builder()
                                .repoUrl("https://github.com/argoproj/argo-cd.git")
                                .targetRevision("HEAD")
                                .path("applicationset/examples/git-generator-files-discovery/apps/guestbook")
                                .build())
                            .destination(ApplicationSetSpecTemplateSpecDestinationArgs.builder()
                                .server("{{cluster.address}}")
                                .namespace("guestbook")
                                .build())
                            .build())
                        .build())
                    .build())
                .build());
    
            // List Generator
            var list = new ApplicationSet("list", ApplicationSetArgs.builder()
                .metadata(ApplicationSetMetadataArgs.builder()
                    .name("list")
                    .build())
                .spec(ApplicationSetSpecArgs.builder()
                    .generators(ApplicationSetSpecGeneratorArgs.builder()
                        .lists(ApplicationSetSpecGeneratorListArgs.builder()
                            .elements(                        
                                Map.ofEntries(
                                    Map.entry("cluster", "engineering-dev"),
                                    Map.entry("url", "https://kubernetes.default.svc")
                                ),
                                Map.ofEntries(
                                    Map.entry("cluster", "engineering-prod"),
                                    Map.entry("url", "https://kubernetes.default.svc"),
                                    Map.entry("foo", "bar")
                                ))
                            .build())
                        .build())
                    .template(ApplicationSetSpecTemplateArgs.builder()
                        .metadata(ApplicationSetSpecTemplateMetadataArgs.builder()
                            .name("{{cluster}}-guestbook")
                            .build())
                        .spec(ApplicationSetSpecTemplateSpecArgs.builder()
                            .project("my-project")
                            .sources(ApplicationSetSpecTemplateSpecSourceArgs.builder()
                                .repoUrl("https://github.com/argoproj/argo-cd.git")
                                .targetRevision("HEAD")
                                .path("applicationset/examples/list-generator/guestbook/{{cluster}}")
                                .build())
                            .destination(ApplicationSetSpecTemplateSpecDestinationArgs.builder()
                                .server("{{url}}")
                                .namespace("guestbook")
                                .build())
                            .build())
                        .build())
                    .build())
                .build());
    
            // Matrix Generator
            var matrix = new ApplicationSet("matrix", ApplicationSetArgs.builder()
                .metadata(ApplicationSetMetadataArgs.builder()
                    .name("matrix")
                    .build())
                .spec(ApplicationSetSpecArgs.builder()
                    .generators(ApplicationSetSpecGeneratorArgs.builder()
                        .matrices(ApplicationSetSpecGeneratorMatrixArgs.builder()
                            .generators(                        
                                ApplicationSetSpecGeneratorMatrixGeneratorArgs.builder()
                                    .gits(ApplicationSetSpecGeneratorMatrixGeneratorGitArgs.builder()
                                        .repoUrl("https://github.com/argoproj/argo-cd.git")
                                        .revision("HEAD")
                                        .directories(ApplicationSetSpecGeneratorMatrixGeneratorGitDirectoryArgs.builder()
                                            .path("applicationset/examples/matrix/cluster-addons/*")
                                            .build())
                                        .build())
                                    .build(),
                                ApplicationSetSpecGeneratorMatrixGeneratorArgs.builder()
                                    .clusters(ApplicationSetSpecGeneratorMatrixGeneratorClusterArgs.builder()
                                        .selector(ApplicationSetSpecGeneratorMatrixGeneratorClusterSelectorArgs.builder()
                                            .matchLabels(Map.of("argocd.argoproj.io/secret-type", "cluster"))
                                            .build())
                                        .build())
                                    .build())
                            .build())
                        .build())
                    .template(ApplicationSetSpecTemplateArgs.builder()
                        .metadata(ApplicationSetSpecTemplateMetadataArgs.builder()
                            .name("{{path.basename}}-{{name}}")
                            .build())
                        .spec(ApplicationSetSpecTemplateSpecArgs.builder()
                            .project("default")
                            .sources(ApplicationSetSpecTemplateSpecSourceArgs.builder()
                                .repoUrl("https://github.com/argoproj/argo-cd.git")
                                .targetRevision("HEAD")
                                .path("{{path}}")
                                .build())
                            .destination(ApplicationSetSpecTemplateSpecDestinationArgs.builder()
                                .server("{{server}}")
                                .namespace("{{path.basename}}")
                                .build())
                            .build())
                        .build())
                    .build())
                .build());
    
            // Merge Generator
            var merge = new ApplicationSet("merge", ApplicationSetArgs.builder()
                .metadata(ApplicationSetMetadataArgs.builder()
                    .name("merge")
                    .build())
                .spec(ApplicationSetSpecArgs.builder()
                    .generators(ApplicationSetSpecGeneratorArgs.builder()
                        .merges(ApplicationSetSpecGeneratorMergeArgs.builder()
                            .mergeKeys("server")
                            .generators(                        
                                ApplicationSetSpecGeneratorMergeGeneratorArgs.builder()
                                    .clusters(ApplicationSetSpecGeneratorMergeGeneratorClusterArgs.builder()
                                        .values(Map.ofEntries(
                                            Map.entry("kafka", true),
                                            Map.entry("redis", false)
                                        ))
                                        .build())
                                    .build(),
                                ApplicationSetSpecGeneratorMergeGeneratorArgs.builder()
                                    .clusters(ApplicationSetSpecGeneratorMergeGeneratorClusterArgs.builder()
                                        .selector(ApplicationSetSpecGeneratorMergeGeneratorClusterSelectorArgs.builder()
                                            .matchLabels(Map.of("use-kafka", "false"))
                                            .build())
                                        .values(Map.of("kafka", "false"))
                                        .build())
                                    .build(),
                                ApplicationSetSpecGeneratorMergeGeneratorArgs.builder()
                                    .lists(ApplicationSetSpecGeneratorMergeGeneratorListArgs.builder()
                                        .elements(Map.ofEntries(
                                            Map.entry("server", "https://2.4.6.8"),
                                            Map.entry("values.redis", "true")
                                        ))
                                        .build())
                                    .build())
                            .build())
                        .build())
                    .template(ApplicationSetSpecTemplateArgs.builder()
                        .metadata(ApplicationSetSpecTemplateMetadataArgs.builder()
                            .name("{{name}}")
                            .build())
                        .spec(ApplicationSetSpecTemplateSpecArgs.builder()
                            .project("default")
                            .sources(ApplicationSetSpecTemplateSpecSourceArgs.builder()
                                .repoUrl("https://github.com/argoproj/argo-cd.git")
                                .path("app")
                                .targetRevision("HEAD")
                                .helm(ApplicationSetSpecTemplateSpecSourceHelmArgs.builder()
                                    .parameters(                                
                                        ApplicationSetSpecTemplateSpecSourceHelmParameterArgs.builder()
                                            .name("kafka")
                                            .value("{{values.kafka}}")
                                            .build(),
                                        ApplicationSetSpecTemplateSpecSourceHelmParameterArgs.builder()
                                            .name("redis")
                                            .value("{{values.redis}}")
                                            .build())
                                    .build())
                                .build())
                            .destination(ApplicationSetSpecTemplateSpecDestinationArgs.builder()
                                .server("{{server}}")
                                .namespace("default")
                                .build())
                            .build())
                        .build())
                    .build())
                .build());
    
            // Pull Request Generator - GitHub
            var prGithub = new ApplicationSet("prGithub", ApplicationSetArgs.builder()
                .metadata(ApplicationSetMetadataArgs.builder()
                    .name("pr-github")
                    .build())
                .spec(ApplicationSetSpecArgs.builder()
                    .generators(ApplicationSetSpecGeneratorArgs.builder()
                        .pullRequests(ApplicationSetSpecGeneratorPullRequestArgs.builder()
                            .github(ApplicationSetSpecGeneratorPullRequestGithubArgs.builder()
                                .api("https://git.example.com/")
                                .owner("myorg")
                                .repo("myrepository")
                                .appSecretName("github-app-repo-creds")
                                .tokenRef(ApplicationSetSpecGeneratorPullRequestGithubTokenRefArgs.builder()
                                    .secretName("github-token")
                                    .key("token")
                                    .build())
                                .labels("preview")
                                .build())
                            .build())
                        .build())
                    .template(ApplicationSetSpecTemplateArgs.builder()
                        .metadata(ApplicationSetSpecTemplateMetadataArgs.builder()
                            .name("myapp-{{branch}}-{{number}}")
                            .build())
                        .spec(ApplicationSetSpecTemplateSpecArgs.builder()
                            .project("default")
                            .sources(ApplicationSetSpecTemplateSpecSourceArgs.builder()
                                .repoUrl("https://github.com/myorg/myrepo.git")
                                .path("kubernetes/")
                                .targetRevision("{{head_sha}}")
                                .helm(ApplicationSetSpecTemplateSpecSourceHelmArgs.builder()
                                    .parameters(ApplicationSetSpecTemplateSpecSourceHelmParameterArgs.builder()
                                        .name("image.tag")
                                        .value("pull-{{head_sha}}")
                                        .build())
                                    .build())
                                .build())
                            .destination(ApplicationSetSpecTemplateSpecDestinationArgs.builder()
                                .server("https://kubernetes.default.svc")
                                .namespace("default")
                                .build())
                            .build())
                        .build())
                    .build())
                .build());
    
            // SCM Provider Generator - GitHub
            var scmGithub = new ApplicationSet("scmGithub", ApplicationSetArgs.builder()
                .metadata(ApplicationSetMetadataArgs.builder()
                    .name("scm-github")
                    .build())
                .spec(ApplicationSetSpecArgs.builder()
                    .generators(ApplicationSetSpecGeneratorArgs.builder()
                        .scmProviders(ApplicationSetSpecGeneratorScmProviderArgs.builder()
                            .github(ApplicationSetSpecGeneratorScmProviderGithubArgs.builder()
                                .appSecretName("gh-app-repo-creds")
                                .organization("myorg")
                                .build())
                            .build())
                        .build())
                    .template(ApplicationSetSpecTemplateArgs.builder()
                        .metadata(ApplicationSetSpecTemplateMetadataArgs.builder()
                            .name("{{repository}}")
                            .build())
                        .spec(ApplicationSetSpecTemplateSpecArgs.builder()
                            .project("default")
                            .sources(ApplicationSetSpecTemplateSpecSourceArgs.builder()
                                .repoUrl("{{url}}")
                                .path("kubernetes/")
                                .targetRevision("{{branch}}")
                                .build())
                            .destination(ApplicationSetSpecTemplateSpecDestinationArgs.builder()
                                .server("https://kubernetes.default.svc")
                                .namespace("default")
                                .build())
                            .build())
                        .build())
                    .build())
                .build());
    
            // Progressive Sync - Rolling Update
            var progressiveSync = new ApplicationSet("progressiveSync", ApplicationSetArgs.builder()
                .metadata(ApplicationSetMetadataArgs.builder()
                    .name("progressive-sync")
                    .build())
                .spec(ApplicationSetSpecArgs.builder()
                    .generators(ApplicationSetSpecGeneratorArgs.builder()
                        .lists(ApplicationSetSpecGeneratorListArgs.builder()
                            .elements(                        
                                Map.ofEntries(
                                    Map.entry("cluster", "engineering-dev"),
                                    Map.entry("url", "https://1.2.3.4"),
                                    Map.entry("env", "env-dev")
                                ),
                                Map.ofEntries(
                                    Map.entry("cluster", "engineering-qa"),
                                    Map.entry("url", "https://2.4.6.8"),
                                    Map.entry("env", "env-qa")
                                ),
                                Map.ofEntries(
                                    Map.entry("cluster", "engineering-prod"),
                                    Map.entry("url", "https://9.8.7.6/"),
                                    Map.entry("env", "env-prod")
                                ))
                            .build())
                        .build())
                    .strategy(ApplicationSetSpecStrategyArgs.builder()
                        .type("RollingSync")
                        .rollingSyncs(ApplicationSetSpecStrategyRollingSyncArgs.builder()
                            .steps(                        
                                ApplicationSetSpecStrategyRollingSyncStepArgs.builder()
                                    .matchExpressions(ApplicationSetSpecStrategyRollingSyncStepMatchExpressionArgs.builder()
                                        .key("envLabel")
                                        .operator("In")
                                        .values("env-dev")
                                        .build())
                                    .build(),
                                ApplicationSetSpecStrategyRollingSyncStepArgs.builder()
                                    .matchExpressions(ApplicationSetSpecStrategyRollingSyncStepMatchExpressionArgs.builder()
                                        .key("envLabel")
                                        .operator("In")
                                        .values("env-qa")
                                        .build())
                                    .maxUpdate("0")
                                    .build(),
                                ApplicationSetSpecStrategyRollingSyncStepArgs.builder()
                                    .matchExpressions(ApplicationSetSpecStrategyRollingSyncStepMatchExpressionArgs.builder()
                                        .key("envLabel")
                                        .operator("In")
                                        .values("env-prod")
                                        .build())
                                    .maxUpdate("10%")
                                    .build())
                            .build())
                        .build())
                    .goTemplate(true)
                    .template(ApplicationSetSpecTemplateArgs.builder()
                        .metadata(ApplicationSetSpecTemplateMetadataArgs.builder()
                            .name("{{.cluster}}-guestbook")
                            .labels(Map.of("envLabel", "{{.env}}"))
                            .build())
                        .spec(ApplicationSetSpecTemplateSpecArgs.builder()
                            .project("default")
                            .sources(ApplicationSetSpecTemplateSpecSourceArgs.builder()
                                .repoUrl("https://github.com/infra-team/cluster-deployments.git")
                                .path("guestbook/{{.cluster}}")
                                .targetRevision("HEAD")
                                .build())
                            .destination(ApplicationSetSpecTemplateSpecDestinationArgs.builder()
                                .server("{{.url}}")
                                .namespace("guestbook")
                                .build())
                            .build())
                        .build())
                    .build())
                .build());
    
        }
    }
    
    resources:
      # Clusters Generator
      clustersSelector:
        type: argocd:ApplicationSet
        name: clusters_selector
        properties:
          metadata:
            name: clusters-selector
          spec:
            generators:
              - clusters:
                  - selector:
                      matchLabels:
                        argocd.argoproj.io/secret-type: cluster
            template:
              metadata:
                name: '{{name}}-clusters-selector'
              spec:
                sources:
                  - repoUrl: https://github.com/argoproj/argocd-example-apps/
                    targetRevision: HEAD
                    path: guestbook
                destination:
                  server: '{{server}}'
                  namespace: default
      # Cluster Decision Resource Generator
      clusterDecisionResource:
        type: argocd:ApplicationSet
        name: cluster_decision_resource
        properties:
          metadata:
            name: cluster-decision-resource
          spec:
            generators:
              - clusterDecisionResources:
                  - configMapRef: my-configmap
                    name: quak
            template:
              metadata:
                name: '{{name}}-guestbook'
              spec:
                sources:
                  - repoUrl: https://github.com/argoproj/argocd-example-apps/
                    targetRevision: HEAD
                    path: guestbook
                destination:
                  server: '{{server}}'
                  namespace: default
      # Git Generator - Directories
      gitDirectories:
        type: argocd:ApplicationSet
        name: git_directories
        properties:
          metadata:
            name: git-directories
          spec:
            generators:
              - gits:
                  - repoUrl: https://github.com/argoproj/argo-cd.git
                    revision: HEAD
                    directories:
                      - path: applicationset/examples/git-generator-directory/cluster-addons/*
                      - path: applicationset/examples/git-generator-directory/excludes/cluster-addons/exclude-helm-guestbook
                        exclude: true
            template:
              metadata:
                name: '{{path.basename}}-git-directories'
              spec:
                sources:
                  - repoUrl: https://github.com/argoproj/argo-cd.git
                    targetRevision: HEAD
                    path: '{{path}}'
                destination:
                  server: https://kubernetes.default.svc
                  namespace: '{{path.basename}}'
      # Git Generator - Files
      gitFiles:
        type: argocd:ApplicationSet
        name: git_files
        properties:
          metadata:
            name: git-files
          spec:
            generators:
              - gits:
                  - repoUrl: https://github.com/argoproj/argo-cd.git
                    revision: HEAD
                    files:
                      - path: applicationset/examples/git-generator-files-discovery/cluster-config/**/config.json
            template:
              metadata:
                name: '{{cluster.name}}-git-files'
              spec:
                sources:
                  - repoUrl: https://github.com/argoproj/argo-cd.git
                    targetRevision: HEAD
                    path: applicationset/examples/git-generator-files-discovery/apps/guestbook
                destination:
                  server: '{{cluster.address}}'
                  namespace: guestbook
      # List Generator
      list:
        type: argocd:ApplicationSet
        properties:
          metadata:
            name: list
          spec:
            generators:
              - lists:
                  - elements:
                      - cluster: engineering-dev
                        url: https://kubernetes.default.svc
                      - cluster: engineering-prod
                        url: https://kubernetes.default.svc
                        foo: bar
            template:
              metadata:
                name: '{{cluster}}-guestbook'
              spec:
                project: my-project
                sources:
                  - repoUrl: https://github.com/argoproj/argo-cd.git
                    targetRevision: HEAD
                    path: applicationset/examples/list-generator/guestbook/{{cluster}}
                destination:
                  server: '{{url}}'
                  namespace: guestbook
      # Matrix Generator
      matrix:
        type: argocd:ApplicationSet
        properties:
          metadata:
            name: matrix
          spec:
            generators:
              - matrices:
                  - generators:
                      - gits:
                          - repoUrl: https://github.com/argoproj/argo-cd.git
                            revision: HEAD
                            directories:
                              - path: applicationset/examples/matrix/cluster-addons/*
                      - clusters:
                          - selector:
                              matchLabels:
                                argocd.argoproj.io/secret-type: cluster
            template:
              metadata:
                name: '{{path.basename}}-{{name}}'
              spec:
                project: default
                sources:
                  - repoUrl: https://github.com/argoproj/argo-cd.git
                    targetRevision: HEAD
                    path: '{{path}}'
                destination:
                  server: '{{server}}'
                  namespace: '{{path.basename}}'
      # Merge Generator
      merge:
        type: argocd:ApplicationSet
        properties:
          metadata:
            name: merge
          spec:
            generators:
              - merges:
                  - mergeKeys:
                      - server
                    generators:
                      - clusters:
                          - values:
                              kafka: true
                              redis: false
                      - clusters:
                          - selector:
                              matchLabels:
                                use-kafka: 'false'
                            values:
                              kafka: 'false'
                      - lists:
                          - elements:
                              - server: https://2.4.6.8
                                values.redis: 'true'
            template:
              metadata:
                name: '{{name}}'
              spec:
                project: default
                sources:
                  - repoUrl: https://github.com/argoproj/argo-cd.git
                    path: app
                    targetRevision: HEAD
                    helm:
                      parameters:
                        - name: kafka
                          value: '{{values.kafka}}'
                        - name: redis
                          value: '{{values.redis}}'
                destination:
                  server: '{{server}}'
                  namespace: default
      # Pull Request Generator - GitHub
      prGithub:
        type: argocd:ApplicationSet
        name: pr_github
        properties:
          metadata:
            name: pr-github
          spec:
            generators:
              - pullRequests:
                  - github:
                      api: https://git.example.com/
                      owner: myorg
                      repo: myrepository
                      appSecretName: github-app-repo-creds
                      tokenRef:
                        secretName: github-token
                        key: token
                      labels:
                        - preview
            template:
              metadata:
                name: myapp-{{branch}}-{{number}}
              spec:
                project: default
                sources:
                  - repoUrl: https://github.com/myorg/myrepo.git
                    path: kubernetes/
                    targetRevision: '{{head_sha}}'
                    helm:
                      parameters:
                        - name: image.tag
                          value: pull-{{head_sha}}
                destination:
                  server: https://kubernetes.default.svc
                  namespace: default
      # SCM Provider Generator - GitHub
      scmGithub:
        type: argocd:ApplicationSet
        name: scm_github
        properties:
          metadata:
            name: scm-github
          spec:
            generators:
              - scmProviders:
                  - github:
                      appSecretName: gh-app-repo-creds
                      organization: myorg
            template:
              metadata:
                name: '{{repository}}'
              spec:
                project: default
                sources:
                  - repoUrl: '{{url}}'
                    path: kubernetes/
                    targetRevision: '{{branch}}'
                destination:
                  server: https://kubernetes.default.svc
                  namespace: default
      # Progressive Sync - Rolling Update
      progressiveSync:
        type: argocd:ApplicationSet
        name: progressive_sync
        properties:
          metadata:
            name: progressive-sync
          spec:
            generators:
              - lists:
                  - elements:
                      - cluster: engineering-dev
                        url: https://1.2.3.4
                        env: env-dev
                      - cluster: engineering-qa
                        url: https://2.4.6.8
                        env: env-qa
                      - cluster: engineering-prod
                        url: https://9.8.7.6/
                        env: env-prod
            strategy:
              type: RollingSync
              rollingSyncs:
                - steps:
                    - matchExpressions:
                        - key: envLabel
                          operator: In
                          values:
                            - env-dev
                    - matchExpressions:
                        - key: envLabel
                          operator: In
                          values:
                            - env-qa
                      maxUpdate: '0'
                    - matchExpressions:
                        - key: envLabel
                          operator: In
                          values:
                            - env-prod
                      maxUpdate: 10%
            goTemplate: true
            template:
              metadata:
                name: '{{.cluster}}-guestbook'
                labels:
                  envLabel: '{{.env}}'
              spec:
                project: default
                sources:
                  - repoUrl: https://github.com/infra-team/cluster-deployments.git
                    path: guestbook/{{.cluster}}
                    targetRevision: HEAD
                destination:
                  server: '{{.url}}'
                  namespace: guestbook
    

    Create ApplicationSet Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ApplicationSet(name: string, args: ApplicationSetArgs, opts?: CustomResourceOptions);
    @overload
    def ApplicationSet(resource_name: str,
                       args: ApplicationSetArgs,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def ApplicationSet(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       metadata: Optional[ApplicationSetMetadataArgs] = None,
                       spec: Optional[ApplicationSetSpecArgs] = None)
    func NewApplicationSet(ctx *Context, name string, args ApplicationSetArgs, opts ...ResourceOption) (*ApplicationSet, error)
    public ApplicationSet(string name, ApplicationSetArgs args, CustomResourceOptions? opts = null)
    public ApplicationSet(String name, ApplicationSetArgs args)
    public ApplicationSet(String name, ApplicationSetArgs args, CustomResourceOptions options)
    
    type: argocd:ApplicationSet
    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 ApplicationSetArgs
    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 ApplicationSetArgs
    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 ApplicationSetArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ApplicationSetArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ApplicationSetArgs
    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 applicationSetResource = new Argocd.ApplicationSet("applicationSetResource", new()
    {
        Metadata = new Argocd.Inputs.ApplicationSetMetadataArgs
        {
            Annotations = 
            {
                { "string", "string" },
            },
            Generation = 0,
            Labels = 
            {
                { "string", "string" },
            },
            Name = "string",
            Namespace = "string",
            ResourceVersion = "string",
            Uid = "string",
        },
        Spec = new Argocd.Inputs.ApplicationSetSpecArgs
        {
            Generators = new[]
            {
                new Argocd.Inputs.ApplicationSetSpecGeneratorArgs
                {
                    ClusterDecisionResources = new[]
                    {
                        new Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceArgs
                        {
                            ConfigMapRef = "string",
                            LabelSelector = new Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceLabelSelectorArgs
                            {
                                MatchExpressions = new[]
                                {
                                    new Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceLabelSelectorMatchExpressionArgs
                                    {
                                        Key = "string",
                                        Operator = "string",
                                        Values = new[]
                                        {
                                            "string",
                                        },
                                    },
                                },
                                MatchLabels = 
                                {
                                    { "string", "string" },
                                },
                            },
                            Name = "string",
                            RequeueAfterSeconds = "string",
                            Template = new Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateArgs
                            {
                                Metadata = new Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateMetadataArgs
                                {
                                    Annotations = 
                                    {
                                        { "string", "string" },
                                    },
                                    Finalizers = new[]
                                    {
                                        "string",
                                    },
                                    Labels = 
                                    {
                                        { "string", "string" },
                                    },
                                    Name = "string",
                                    Namespace = "string",
                                },
                                Spec = new Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecArgs
                                {
                                    Destination = new Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecDestinationArgs
                                    {
                                        Name = "string",
                                        Namespace = "string",
                                        Server = "string",
                                    },
                                    IgnoreDifferences = new[]
                                    {
                                        new Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecIgnoreDifferenceArgs
                                        {
                                            Group = "string",
                                            JqPathExpressions = new[]
                                            {
                                                "string",
                                            },
                                            JsonPointers = new[]
                                            {
                                                "string",
                                            },
                                            Kind = "string",
                                            ManagedFieldsManagers = new[]
                                            {
                                                "string",
                                            },
                                            Name = "string",
                                            Namespace = "string",
                                        },
                                    },
                                    Infos = new[]
                                    {
                                        new Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecInfoArgs
                                        {
                                            Name = "string",
                                            Value = "string",
                                        },
                                    },
                                    Project = "string",
                                    RevisionHistoryLimit = 0,
                                    Sources = new[]
                                    {
                                        new Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceArgs
                                        {
                                            Chart = "string",
                                            Directory = new Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryArgs
                                            {
                                                Exclude = "string",
                                                Include = "string",
                                                Jsonnet = new Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetArgs
                                                {
                                                    ExtVars = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetExtVarArgs
                                                        {
                                                            Code = false,
                                                            Name = "string",
                                                            Value = "string",
                                                        },
                                                    },
                                                    Libs = new[]
                                                    {
                                                        "string",
                                                    },
                                                    Tlas = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetTlaArgs
                                                        {
                                                            Code = false,
                                                            Name = "string",
                                                            Value = "string",
                                                        },
                                                    },
                                                },
                                                Recurse = false,
                                            },
                                            Helm = new Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceHelmArgs
                                            {
                                                FileParameters = new[]
                                                {
                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameterArgs
                                                    {
                                                        Name = "string",
                                                        Path = "string",
                                                    },
                                                },
                                                IgnoreMissingValueFiles = false,
                                                Parameters = new[]
                                                {
                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameterArgs
                                                    {
                                                        ForceString = false,
                                                        Name = "string",
                                                        Value = "string",
                                                    },
                                                },
                                                PassCredentials = false,
                                                ReleaseName = "string",
                                                SkipCrds = false,
                                                ValueFiles = new[]
                                                {
                                                    "string",
                                                },
                                                Values = "string",
                                                Version = "string",
                                            },
                                            Kustomize = new Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceKustomizeArgs
                                            {
                                                CommonAnnotations = 
                                                {
                                                    { "string", "string" },
                                                },
                                                CommonLabels = 
                                                {
                                                    { "string", "string" },
                                                },
                                                Images = new[]
                                                {
                                                    "string",
                                                },
                                                NamePrefix = "string",
                                                NameSuffix = "string",
                                                Patches = new[]
                                                {
                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchArgs
                                                    {
                                                        Target = new Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTargetArgs
                                                        {
                                                            AnnotationSelector = "string",
                                                            Group = "string",
                                                            Kind = "string",
                                                            LabelSelector = "string",
                                                            Name = "string",
                                                            Namespace = "string",
                                                            Version = "string",
                                                        },
                                                        Options = 
                                                        {
                                                            { "string", false },
                                                        },
                                                        Patch = "string",
                                                        Path = "string",
                                                    },
                                                },
                                                Version = "string",
                                            },
                                            Path = "string",
                                            Plugin = new Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourcePluginArgs
                                            {
                                                Envs = new[]
                                                {
                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnvArgs
                                                    {
                                                        Name = "string",
                                                        Value = "string",
                                                    },
                                                },
                                                Name = "string",
                                            },
                                            Ref = "string",
                                            RepoUrl = "string",
                                            TargetRevision = "string",
                                        },
                                    },
                                    SyncPolicy = new Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicyArgs
                                    {
                                        Automated = new Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomatedArgs
                                        {
                                            AllowEmpty = false,
                                            Prune = false,
                                            SelfHeal = false,
                                        },
                                        ManagedNamespaceMetadata = new Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadataArgs
                                        {
                                            Annotations = 
                                            {
                                                { "string", "string" },
                                            },
                                            Labels = 
                                            {
                                                { "string", "string" },
                                            },
                                        },
                                        Retry = new Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryArgs
                                        {
                                            Backoff = new Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoffArgs
                                            {
                                                Duration = "string",
                                                Factor = "string",
                                                MaxDuration = "string",
                                            },
                                            Limit = "string",
                                        },
                                        SyncOptions = new[]
                                        {
                                            "string",
                                        },
                                    },
                                },
                            },
                            Values = 
                            {
                                { "string", "string" },
                            },
                        },
                    },
                    Clusters = new[]
                    {
                        new Argocd.Inputs.ApplicationSetSpecGeneratorClusterArgs
                        {
                            Enabled = false,
                            Selector = new Argocd.Inputs.ApplicationSetSpecGeneratorClusterSelectorArgs
                            {
                                MatchExpressions = new[]
                                {
                                    new Argocd.Inputs.ApplicationSetSpecGeneratorClusterSelectorMatchExpressionArgs
                                    {
                                        Key = "string",
                                        Operator = "string",
                                        Values = new[]
                                        {
                                            "string",
                                        },
                                    },
                                },
                                MatchLabels = 
                                {
                                    { "string", "string" },
                                },
                            },
                            Template = new Argocd.Inputs.ApplicationSetSpecGeneratorClusterTemplateArgs
                            {
                                Metadata = new Argocd.Inputs.ApplicationSetSpecGeneratorClusterTemplateMetadataArgs
                                {
                                    Annotations = 
                                    {
                                        { "string", "string" },
                                    },
                                    Finalizers = new[]
                                    {
                                        "string",
                                    },
                                    Labels = 
                                    {
                                        { "string", "string" },
                                    },
                                    Name = "string",
                                    Namespace = "string",
                                },
                                Spec = new Argocd.Inputs.ApplicationSetSpecGeneratorClusterTemplateSpecArgs
                                {
                                    Destination = new Argocd.Inputs.ApplicationSetSpecGeneratorClusterTemplateSpecDestinationArgs
                                    {
                                        Name = "string",
                                        Namespace = "string",
                                        Server = "string",
                                    },
                                    IgnoreDifferences = new[]
                                    {
                                        new Argocd.Inputs.ApplicationSetSpecGeneratorClusterTemplateSpecIgnoreDifferenceArgs
                                        {
                                            Group = "string",
                                            JqPathExpressions = new[]
                                            {
                                                "string",
                                            },
                                            JsonPointers = new[]
                                            {
                                                "string",
                                            },
                                            Kind = "string",
                                            ManagedFieldsManagers = new[]
                                            {
                                                "string",
                                            },
                                            Name = "string",
                                            Namespace = "string",
                                        },
                                    },
                                    Infos = new[]
                                    {
                                        new Argocd.Inputs.ApplicationSetSpecGeneratorClusterTemplateSpecInfoArgs
                                        {
                                            Name = "string",
                                            Value = "string",
                                        },
                                    },
                                    Project = "string",
                                    RevisionHistoryLimit = 0,
                                    Sources = new[]
                                    {
                                        new Argocd.Inputs.ApplicationSetSpecGeneratorClusterTemplateSpecSourceArgs
                                        {
                                            Chart = "string",
                                            Directory = new Argocd.Inputs.ApplicationSetSpecGeneratorClusterTemplateSpecSourceDirectoryArgs
                                            {
                                                Exclude = "string",
                                                Include = "string",
                                                Jsonnet = new Argocd.Inputs.ApplicationSetSpecGeneratorClusterTemplateSpecSourceDirectoryJsonnetArgs
                                                {
                                                    ExtVars = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorClusterTemplateSpecSourceDirectoryJsonnetExtVarArgs
                                                        {
                                                            Code = false,
                                                            Name = "string",
                                                            Value = "string",
                                                        },
                                                    },
                                                    Libs = new[]
                                                    {
                                                        "string",
                                                    },
                                                    Tlas = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorClusterTemplateSpecSourceDirectoryJsonnetTlaArgs
                                                        {
                                                            Code = false,
                                                            Name = "string",
                                                            Value = "string",
                                                        },
                                                    },
                                                },
                                                Recurse = false,
                                            },
                                            Helm = new Argocd.Inputs.ApplicationSetSpecGeneratorClusterTemplateSpecSourceHelmArgs
                                            {
                                                FileParameters = new[]
                                                {
                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorClusterTemplateSpecSourceHelmFileParameterArgs
                                                    {
                                                        Name = "string",
                                                        Path = "string",
                                                    },
                                                },
                                                IgnoreMissingValueFiles = false,
                                                Parameters = new[]
                                                {
                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorClusterTemplateSpecSourceHelmParameterArgs
                                                    {
                                                        ForceString = false,
                                                        Name = "string",
                                                        Value = "string",
                                                    },
                                                },
                                                PassCredentials = false,
                                                ReleaseName = "string",
                                                SkipCrds = false,
                                                ValueFiles = new[]
                                                {
                                                    "string",
                                                },
                                                Values = "string",
                                                Version = "string",
                                            },
                                            Kustomize = new Argocd.Inputs.ApplicationSetSpecGeneratorClusterTemplateSpecSourceKustomizeArgs
                                            {
                                                CommonAnnotations = 
                                                {
                                                    { "string", "string" },
                                                },
                                                CommonLabels = 
                                                {
                                                    { "string", "string" },
                                                },
                                                Images = new[]
                                                {
                                                    "string",
                                                },
                                                NamePrefix = "string",
                                                NameSuffix = "string",
                                                Patches = new[]
                                                {
                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorClusterTemplateSpecSourceKustomizePatchArgs
                                                    {
                                                        Target = new Argocd.Inputs.ApplicationSetSpecGeneratorClusterTemplateSpecSourceKustomizePatchTargetArgs
                                                        {
                                                            AnnotationSelector = "string",
                                                            Group = "string",
                                                            Kind = "string",
                                                            LabelSelector = "string",
                                                            Name = "string",
                                                            Namespace = "string",
                                                            Version = "string",
                                                        },
                                                        Options = 
                                                        {
                                                            { "string", false },
                                                        },
                                                        Patch = "string",
                                                        Path = "string",
                                                    },
                                                },
                                                Version = "string",
                                            },
                                            Path = "string",
                                            Plugin = new Argocd.Inputs.ApplicationSetSpecGeneratorClusterTemplateSpecSourcePluginArgs
                                            {
                                                Envs = new[]
                                                {
                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorClusterTemplateSpecSourcePluginEnvArgs
                                                    {
                                                        Name = "string",
                                                        Value = "string",
                                                    },
                                                },
                                                Name = "string",
                                            },
                                            Ref = "string",
                                            RepoUrl = "string",
                                            TargetRevision = "string",
                                        },
                                    },
                                    SyncPolicy = new Argocd.Inputs.ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicyArgs
                                    {
                                        Automated = new Argocd.Inputs.ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicyAutomatedArgs
                                        {
                                            AllowEmpty = false,
                                            Prune = false,
                                            SelfHeal = false,
                                        },
                                        ManagedNamespaceMetadata = new Argocd.Inputs.ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadataArgs
                                        {
                                            Annotations = 
                                            {
                                                { "string", "string" },
                                            },
                                            Labels = 
                                            {
                                                { "string", "string" },
                                            },
                                        },
                                        Retry = new Argocd.Inputs.ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicyRetryArgs
                                        {
                                            Backoff = new Argocd.Inputs.ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicyRetryBackoffArgs
                                            {
                                                Duration = "string",
                                                Factor = "string",
                                                MaxDuration = "string",
                                            },
                                            Limit = "string",
                                        },
                                        SyncOptions = new[]
                                        {
                                            "string",
                                        },
                                    },
                                },
                            },
                            Values = 
                            {
                                { "string", "string" },
                            },
                        },
                    },
                    Gits = new[]
                    {
                        new Argocd.Inputs.ApplicationSetSpecGeneratorGitArgs
                        {
                            RepoUrl = "string",
                            Directories = new[]
                            {
                                new Argocd.Inputs.ApplicationSetSpecGeneratorGitDirectoryArgs
                                {
                                    Path = "string",
                                    Exclude = false,
                                },
                            },
                            Files = new[]
                            {
                                new Argocd.Inputs.ApplicationSetSpecGeneratorGitFileArgs
                                {
                                    Path = "string",
                                },
                            },
                            PathParamPrefix = "string",
                            Revision = "string",
                            Template = new Argocd.Inputs.ApplicationSetSpecGeneratorGitTemplateArgs
                            {
                                Metadata = new Argocd.Inputs.ApplicationSetSpecGeneratorGitTemplateMetadataArgs
                                {
                                    Annotations = 
                                    {
                                        { "string", "string" },
                                    },
                                    Finalizers = new[]
                                    {
                                        "string",
                                    },
                                    Labels = 
                                    {
                                        { "string", "string" },
                                    },
                                    Name = "string",
                                    Namespace = "string",
                                },
                                Spec = new Argocd.Inputs.ApplicationSetSpecGeneratorGitTemplateSpecArgs
                                {
                                    Destination = new Argocd.Inputs.ApplicationSetSpecGeneratorGitTemplateSpecDestinationArgs
                                    {
                                        Name = "string",
                                        Namespace = "string",
                                        Server = "string",
                                    },
                                    IgnoreDifferences = new[]
                                    {
                                        new Argocd.Inputs.ApplicationSetSpecGeneratorGitTemplateSpecIgnoreDifferenceArgs
                                        {
                                            Group = "string",
                                            JqPathExpressions = new[]
                                            {
                                                "string",
                                            },
                                            JsonPointers = new[]
                                            {
                                                "string",
                                            },
                                            Kind = "string",
                                            ManagedFieldsManagers = new[]
                                            {
                                                "string",
                                            },
                                            Name = "string",
                                            Namespace = "string",
                                        },
                                    },
                                    Infos = new[]
                                    {
                                        new Argocd.Inputs.ApplicationSetSpecGeneratorGitTemplateSpecInfoArgs
                                        {
                                            Name = "string",
                                            Value = "string",
                                        },
                                    },
                                    Project = "string",
                                    RevisionHistoryLimit = 0,
                                    Sources = new[]
                                    {
                                        new Argocd.Inputs.ApplicationSetSpecGeneratorGitTemplateSpecSourceArgs
                                        {
                                            Chart = "string",
                                            Directory = new Argocd.Inputs.ApplicationSetSpecGeneratorGitTemplateSpecSourceDirectoryArgs
                                            {
                                                Exclude = "string",
                                                Include = "string",
                                                Jsonnet = new Argocd.Inputs.ApplicationSetSpecGeneratorGitTemplateSpecSourceDirectoryJsonnetArgs
                                                {
                                                    ExtVars = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorGitTemplateSpecSourceDirectoryJsonnetExtVarArgs
                                                        {
                                                            Code = false,
                                                            Name = "string",
                                                            Value = "string",
                                                        },
                                                    },
                                                    Libs = new[]
                                                    {
                                                        "string",
                                                    },
                                                    Tlas = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorGitTemplateSpecSourceDirectoryJsonnetTlaArgs
                                                        {
                                                            Code = false,
                                                            Name = "string",
                                                            Value = "string",
                                                        },
                                                    },
                                                },
                                                Recurse = false,
                                            },
                                            Helm = new Argocd.Inputs.ApplicationSetSpecGeneratorGitTemplateSpecSourceHelmArgs
                                            {
                                                FileParameters = new[]
                                                {
                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorGitTemplateSpecSourceHelmFileParameterArgs
                                                    {
                                                        Name = "string",
                                                        Path = "string",
                                                    },
                                                },
                                                IgnoreMissingValueFiles = false,
                                                Parameters = new[]
                                                {
                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorGitTemplateSpecSourceHelmParameterArgs
                                                    {
                                                        ForceString = false,
                                                        Name = "string",
                                                        Value = "string",
                                                    },
                                                },
                                                PassCredentials = false,
                                                ReleaseName = "string",
                                                SkipCrds = false,
                                                ValueFiles = new[]
                                                {
                                                    "string",
                                                },
                                                Values = "string",
                                                Version = "string",
                                            },
                                            Kustomize = new Argocd.Inputs.ApplicationSetSpecGeneratorGitTemplateSpecSourceKustomizeArgs
                                            {
                                                CommonAnnotations = 
                                                {
                                                    { "string", "string" },
                                                },
                                                CommonLabels = 
                                                {
                                                    { "string", "string" },
                                                },
                                                Images = new[]
                                                {
                                                    "string",
                                                },
                                                NamePrefix = "string",
                                                NameSuffix = "string",
                                                Patches = new[]
                                                {
                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorGitTemplateSpecSourceKustomizePatchArgs
                                                    {
                                                        Target = new Argocd.Inputs.ApplicationSetSpecGeneratorGitTemplateSpecSourceKustomizePatchTargetArgs
                                                        {
                                                            AnnotationSelector = "string",
                                                            Group = "string",
                                                            Kind = "string",
                                                            LabelSelector = "string",
                                                            Name = "string",
                                                            Namespace = "string",
                                                            Version = "string",
                                                        },
                                                        Options = 
                                                        {
                                                            { "string", false },
                                                        },
                                                        Patch = "string",
                                                        Path = "string",
                                                    },
                                                },
                                                Version = "string",
                                            },
                                            Path = "string",
                                            Plugin = new Argocd.Inputs.ApplicationSetSpecGeneratorGitTemplateSpecSourcePluginArgs
                                            {
                                                Envs = new[]
                                                {
                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorGitTemplateSpecSourcePluginEnvArgs
                                                    {
                                                        Name = "string",
                                                        Value = "string",
                                                    },
                                                },
                                                Name = "string",
                                            },
                                            Ref = "string",
                                            RepoUrl = "string",
                                            TargetRevision = "string",
                                        },
                                    },
                                    SyncPolicy = new Argocd.Inputs.ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicyArgs
                                    {
                                        Automated = new Argocd.Inputs.ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicyAutomatedArgs
                                        {
                                            AllowEmpty = false,
                                            Prune = false,
                                            SelfHeal = false,
                                        },
                                        ManagedNamespaceMetadata = new Argocd.Inputs.ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadataArgs
                                        {
                                            Annotations = 
                                            {
                                                { "string", "string" },
                                            },
                                            Labels = 
                                            {
                                                { "string", "string" },
                                            },
                                        },
                                        Retry = new Argocd.Inputs.ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicyRetryArgs
                                        {
                                            Backoff = new Argocd.Inputs.ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicyRetryBackoffArgs
                                            {
                                                Duration = "string",
                                                Factor = "string",
                                                MaxDuration = "string",
                                            },
                                            Limit = "string",
                                        },
                                        SyncOptions = new[]
                                        {
                                            "string",
                                        },
                                    },
                                },
                            },
                            Values = 
                            {
                                { "string", "string" },
                            },
                        },
                    },
                    Lists = new[]
                    {
                        new Argocd.Inputs.ApplicationSetSpecGeneratorListArgs
                        {
                            Elements = new[]
                            {
                                
                                {
                                    { "string", "string" },
                                },
                            },
                            Template = new Argocd.Inputs.ApplicationSetSpecGeneratorListTemplateArgs
                            {
                                Metadata = new Argocd.Inputs.ApplicationSetSpecGeneratorListTemplateMetadataArgs
                                {
                                    Annotations = 
                                    {
                                        { "string", "string" },
                                    },
                                    Finalizers = new[]
                                    {
                                        "string",
                                    },
                                    Labels = 
                                    {
                                        { "string", "string" },
                                    },
                                    Name = "string",
                                    Namespace = "string",
                                },
                                Spec = new Argocd.Inputs.ApplicationSetSpecGeneratorListTemplateSpecArgs
                                {
                                    Destination = new Argocd.Inputs.ApplicationSetSpecGeneratorListTemplateSpecDestinationArgs
                                    {
                                        Name = "string",
                                        Namespace = "string",
                                        Server = "string",
                                    },
                                    IgnoreDifferences = new[]
                                    {
                                        new Argocd.Inputs.ApplicationSetSpecGeneratorListTemplateSpecIgnoreDifferenceArgs
                                        {
                                            Group = "string",
                                            JqPathExpressions = new[]
                                            {
                                                "string",
                                            },
                                            JsonPointers = new[]
                                            {
                                                "string",
                                            },
                                            Kind = "string",
                                            ManagedFieldsManagers = new[]
                                            {
                                                "string",
                                            },
                                            Name = "string",
                                            Namespace = "string",
                                        },
                                    },
                                    Infos = new[]
                                    {
                                        new Argocd.Inputs.ApplicationSetSpecGeneratorListTemplateSpecInfoArgs
                                        {
                                            Name = "string",
                                            Value = "string",
                                        },
                                    },
                                    Project = "string",
                                    RevisionHistoryLimit = 0,
                                    Sources = new[]
                                    {
                                        new Argocd.Inputs.ApplicationSetSpecGeneratorListTemplateSpecSourceArgs
                                        {
                                            Chart = "string",
                                            Directory = new Argocd.Inputs.ApplicationSetSpecGeneratorListTemplateSpecSourceDirectoryArgs
                                            {
                                                Exclude = "string",
                                                Include = "string",
                                                Jsonnet = new Argocd.Inputs.ApplicationSetSpecGeneratorListTemplateSpecSourceDirectoryJsonnetArgs
                                                {
                                                    ExtVars = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorListTemplateSpecSourceDirectoryJsonnetExtVarArgs
                                                        {
                                                            Code = false,
                                                            Name = "string",
                                                            Value = "string",
                                                        },
                                                    },
                                                    Libs = new[]
                                                    {
                                                        "string",
                                                    },
                                                    Tlas = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorListTemplateSpecSourceDirectoryJsonnetTlaArgs
                                                        {
                                                            Code = false,
                                                            Name = "string",
                                                            Value = "string",
                                                        },
                                                    },
                                                },
                                                Recurse = false,
                                            },
                                            Helm = new Argocd.Inputs.ApplicationSetSpecGeneratorListTemplateSpecSourceHelmArgs
                                            {
                                                FileParameters = new[]
                                                {
                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorListTemplateSpecSourceHelmFileParameterArgs
                                                    {
                                                        Name = "string",
                                                        Path = "string",
                                                    },
                                                },
                                                IgnoreMissingValueFiles = false,
                                                Parameters = new[]
                                                {
                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorListTemplateSpecSourceHelmParameterArgs
                                                    {
                                                        ForceString = false,
                                                        Name = "string",
                                                        Value = "string",
                                                    },
                                                },
                                                PassCredentials = false,
                                                ReleaseName = "string",
                                                SkipCrds = false,
                                                ValueFiles = new[]
                                                {
                                                    "string",
                                                },
                                                Values = "string",
                                                Version = "string",
                                            },
                                            Kustomize = new Argocd.Inputs.ApplicationSetSpecGeneratorListTemplateSpecSourceKustomizeArgs
                                            {
                                                CommonAnnotations = 
                                                {
                                                    { "string", "string" },
                                                },
                                                CommonLabels = 
                                                {
                                                    { "string", "string" },
                                                },
                                                Images = new[]
                                                {
                                                    "string",
                                                },
                                                NamePrefix = "string",
                                                NameSuffix = "string",
                                                Patches = new[]
                                                {
                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorListTemplateSpecSourceKustomizePatchArgs
                                                    {
                                                        Target = new Argocd.Inputs.ApplicationSetSpecGeneratorListTemplateSpecSourceKustomizePatchTargetArgs
                                                        {
                                                            AnnotationSelector = "string",
                                                            Group = "string",
                                                            Kind = "string",
                                                            LabelSelector = "string",
                                                            Name = "string",
                                                            Namespace = "string",
                                                            Version = "string",
                                                        },
                                                        Options = 
                                                        {
                                                            { "string", false },
                                                        },
                                                        Patch = "string",
                                                        Path = "string",
                                                    },
                                                },
                                                Version = "string",
                                            },
                                            Path = "string",
                                            Plugin = new Argocd.Inputs.ApplicationSetSpecGeneratorListTemplateSpecSourcePluginArgs
                                            {
                                                Envs = new[]
                                                {
                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorListTemplateSpecSourcePluginEnvArgs
                                                    {
                                                        Name = "string",
                                                        Value = "string",
                                                    },
                                                },
                                                Name = "string",
                                            },
                                            Ref = "string",
                                            RepoUrl = "string",
                                            TargetRevision = "string",
                                        },
                                    },
                                    SyncPolicy = new Argocd.Inputs.ApplicationSetSpecGeneratorListTemplateSpecSyncPolicyArgs
                                    {
                                        Automated = new Argocd.Inputs.ApplicationSetSpecGeneratorListTemplateSpecSyncPolicyAutomatedArgs
                                        {
                                            AllowEmpty = false,
                                            Prune = false,
                                            SelfHeal = false,
                                        },
                                        ManagedNamespaceMetadata = new Argocd.Inputs.ApplicationSetSpecGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadataArgs
                                        {
                                            Annotations = 
                                            {
                                                { "string", "string" },
                                            },
                                            Labels = 
                                            {
                                                { "string", "string" },
                                            },
                                        },
                                        Retry = new Argocd.Inputs.ApplicationSetSpecGeneratorListTemplateSpecSyncPolicyRetryArgs
                                        {
                                            Backoff = new Argocd.Inputs.ApplicationSetSpecGeneratorListTemplateSpecSyncPolicyRetryBackoffArgs
                                            {
                                                Duration = "string",
                                                Factor = "string",
                                                MaxDuration = "string",
                                            },
                                            Limit = "string",
                                        },
                                        SyncOptions = new[]
                                        {
                                            "string",
                                        },
                                    },
                                },
                            },
                        },
                    },
                    Matrices = new[]
                    {
                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixArgs
                        {
                            Generators = new[]
                            {
                                new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorArgs
                                {
                                    ClusterDecisionResources = new[]
                                    {
                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceArgs
                                        {
                                            ConfigMapRef = "string",
                                            LabelSelector = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceLabelSelectorArgs
                                            {
                                                MatchExpressions = new[]
                                                {
                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceLabelSelectorMatchExpressionArgs
                                                    {
                                                        Key = "string",
                                                        Operator = "string",
                                                        Values = new[]
                                                        {
                                                            "string",
                                                        },
                                                    },
                                                },
                                                MatchLabels = 
                                                {
                                                    { "string", "string" },
                                                },
                                            },
                                            Name = "string",
                                            RequeueAfterSeconds = "string",
                                            Template = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateArgs
                                            {
                                                Metadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateMetadataArgs
                                                {
                                                    Annotations = 
                                                    {
                                                        { "string", "string" },
                                                    },
                                                    Finalizers = new[]
                                                    {
                                                        "string",
                                                    },
                                                    Labels = 
                                                    {
                                                        { "string", "string" },
                                                    },
                                                    Name = "string",
                                                    Namespace = "string",
                                                },
                                                Spec = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecArgs
                                                {
                                                    Destination = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecDestinationArgs
                                                    {
                                                        Name = "string",
                                                        Namespace = "string",
                                                        Server = "string",
                                                    },
                                                    IgnoreDifferences = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecIgnoreDifferenceArgs
                                                        {
                                                            Group = "string",
                                                            JqPathExpressions = new[]
                                                            {
                                                                "string",
                                                            },
                                                            JsonPointers = new[]
                                                            {
                                                                "string",
                                                            },
                                                            Kind = "string",
                                                            ManagedFieldsManagers = new[]
                                                            {
                                                                "string",
                                                            },
                                                            Name = "string",
                                                            Namespace = "string",
                                                        },
                                                    },
                                                    Infos = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecInfoArgs
                                                        {
                                                            Name = "string",
                                                            Value = "string",
                                                        },
                                                    },
                                                    Project = "string",
                                                    RevisionHistoryLimit = 0,
                                                    Sources = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceArgs
                                                        {
                                                            Chart = "string",
                                                            Directory = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryArgs
                                                            {
                                                                Exclude = "string",
                                                                Include = "string",
                                                                Jsonnet = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetArgs
                                                                {
                                                                    ExtVars = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetExtVarArgs
                                                                        {
                                                                            Code = false,
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                    Libs = new[]
                                                                    {
                                                                        "string",
                                                                    },
                                                                    Tlas = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetTlaArgs
                                                                        {
                                                                            Code = false,
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                },
                                                                Recurse = false,
                                                            },
                                                            Helm = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmArgs
                                                            {
                                                                FileParameters = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameterArgs
                                                                    {
                                                                        Name = "string",
                                                                        Path = "string",
                                                                    },
                                                                },
                                                                IgnoreMissingValueFiles = false,
                                                                Parameters = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameterArgs
                                                                    {
                                                                        ForceString = false,
                                                                        Name = "string",
                                                                        Value = "string",
                                                                    },
                                                                },
                                                                PassCredentials = false,
                                                                ReleaseName = "string",
                                                                SkipCrds = false,
                                                                ValueFiles = new[]
                                                                {
                                                                    "string",
                                                                },
                                                                Values = "string",
                                                                Version = "string",
                                                            },
                                                            Kustomize = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizeArgs
                                                            {
                                                                CommonAnnotations = 
                                                                {
                                                                    { "string", "string" },
                                                                },
                                                                CommonLabels = 
                                                                {
                                                                    { "string", "string" },
                                                                },
                                                                Images = new[]
                                                                {
                                                                    "string",
                                                                },
                                                                NamePrefix = "string",
                                                                NameSuffix = "string",
                                                                Patches = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchArgs
                                                                    {
                                                                        Target = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTargetArgs
                                                                        {
                                                                            AnnotationSelector = "string",
                                                                            Group = "string",
                                                                            Kind = "string",
                                                                            LabelSelector = "string",
                                                                            Name = "string",
                                                                            Namespace = "string",
                                                                            Version = "string",
                                                                        },
                                                                        Options = 
                                                                        {
                                                                            { "string", false },
                                                                        },
                                                                        Patch = "string",
                                                                        Path = "string",
                                                                    },
                                                                },
                                                                Version = "string",
                                                            },
                                                            Path = "string",
                                                            Plugin = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePluginArgs
                                                            {
                                                                Envs = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnvArgs
                                                                    {
                                                                        Name = "string",
                                                                        Value = "string",
                                                                    },
                                                                },
                                                                Name = "string",
                                                            },
                                                            Ref = "string",
                                                            RepoUrl = "string",
                                                            TargetRevision = "string",
                                                        },
                                                    },
                                                    SyncPolicy = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyArgs
                                                    {
                                                        Automated = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomatedArgs
                                                        {
                                                            AllowEmpty = false,
                                                            Prune = false,
                                                            SelfHeal = false,
                                                        },
                                                        ManagedNamespaceMetadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadataArgs
                                                        {
                                                            Annotations = 
                                                            {
                                                                { "string", "string" },
                                                            },
                                                            Labels = 
                                                            {
                                                                { "string", "string" },
                                                            },
                                                        },
                                                        Retry = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryArgs
                                                        {
                                                            Backoff = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoffArgs
                                                            {
                                                                Duration = "string",
                                                                Factor = "string",
                                                                MaxDuration = "string",
                                                            },
                                                            Limit = "string",
                                                        },
                                                        SyncOptions = new[]
                                                        {
                                                            "string",
                                                        },
                                                    },
                                                },
                                            },
                                            Values = 
                                            {
                                                { "string", "string" },
                                            },
                                        },
                                    },
                                    Clusters = new[]
                                    {
                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterArgs
                                        {
                                            Enabled = false,
                                            Selector = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterSelectorArgs
                                            {
                                                MatchExpressions = new[]
                                                {
                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterSelectorMatchExpressionArgs
                                                    {
                                                        Key = "string",
                                                        Operator = "string",
                                                        Values = new[]
                                                        {
                                                            "string",
                                                        },
                                                    },
                                                },
                                                MatchLabels = 
                                                {
                                                    { "string", "string" },
                                                },
                                            },
                                            Template = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateArgs
                                            {
                                                Metadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateMetadataArgs
                                                {
                                                    Annotations = 
                                                    {
                                                        { "string", "string" },
                                                    },
                                                    Finalizers = new[]
                                                    {
                                                        "string",
                                                    },
                                                    Labels = 
                                                    {
                                                        { "string", "string" },
                                                    },
                                                    Name = "string",
                                                    Namespace = "string",
                                                },
                                                Spec = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecArgs
                                                {
                                                    Destination = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecDestinationArgs
                                                    {
                                                        Name = "string",
                                                        Namespace = "string",
                                                        Server = "string",
                                                    },
                                                    IgnoreDifferences = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecIgnoreDifferenceArgs
                                                        {
                                                            Group = "string",
                                                            JqPathExpressions = new[]
                                                            {
                                                                "string",
                                                            },
                                                            JsonPointers = new[]
                                                            {
                                                                "string",
                                                            },
                                                            Kind = "string",
                                                            ManagedFieldsManagers = new[]
                                                            {
                                                                "string",
                                                            },
                                                            Name = "string",
                                                            Namespace = "string",
                                                        },
                                                    },
                                                    Infos = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecInfoArgs
                                                        {
                                                            Name = "string",
                                                            Value = "string",
                                                        },
                                                    },
                                                    Project = "string",
                                                    RevisionHistoryLimit = 0,
                                                    Sources = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceArgs
                                                        {
                                                            Chart = "string",
                                                            Directory = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryArgs
                                                            {
                                                                Exclude = "string",
                                                                Include = "string",
                                                                Jsonnet = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnetArgs
                                                                {
                                                                    ExtVars = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnetExtVarArgs
                                                                        {
                                                                            Code = false,
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                    Libs = new[]
                                                                    {
                                                                        "string",
                                                                    },
                                                                    Tlas = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnetTlaArgs
                                                                        {
                                                                            Code = false,
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                },
                                                                Recurse = false,
                                                            },
                                                            Helm = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmArgs
                                                            {
                                                                FileParameters = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmFileParameterArgs
                                                                    {
                                                                        Name = "string",
                                                                        Path = "string",
                                                                    },
                                                                },
                                                                IgnoreMissingValueFiles = false,
                                                                Parameters = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmParameterArgs
                                                                    {
                                                                        ForceString = false,
                                                                        Name = "string",
                                                                        Value = "string",
                                                                    },
                                                                },
                                                                PassCredentials = false,
                                                                ReleaseName = "string",
                                                                SkipCrds = false,
                                                                ValueFiles = new[]
                                                                {
                                                                    "string",
                                                                },
                                                                Values = "string",
                                                                Version = "string",
                                                            },
                                                            Kustomize = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizeArgs
                                                            {
                                                                CommonAnnotations = 
                                                                {
                                                                    { "string", "string" },
                                                                },
                                                                CommonLabels = 
                                                                {
                                                                    { "string", "string" },
                                                                },
                                                                Images = new[]
                                                                {
                                                                    "string",
                                                                },
                                                                NamePrefix = "string",
                                                                NameSuffix = "string",
                                                                Patches = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatchArgs
                                                                    {
                                                                        Target = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatchTargetArgs
                                                                        {
                                                                            AnnotationSelector = "string",
                                                                            Group = "string",
                                                                            Kind = "string",
                                                                            LabelSelector = "string",
                                                                            Name = "string",
                                                                            Namespace = "string",
                                                                            Version = "string",
                                                                        },
                                                                        Options = 
                                                                        {
                                                                            { "string", false },
                                                                        },
                                                                        Patch = "string",
                                                                        Path = "string",
                                                                    },
                                                                },
                                                                Version = "string",
                                                            },
                                                            Path = "string",
                                                            Plugin = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourcePluginArgs
                                                            {
                                                                Envs = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourcePluginEnvArgs
                                                                    {
                                                                        Name = "string",
                                                                        Value = "string",
                                                                    },
                                                                },
                                                                Name = "string",
                                                            },
                                                            Ref = "string",
                                                            RepoUrl = "string",
                                                            TargetRevision = "string",
                                                        },
                                                    },
                                                    SyncPolicy = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyArgs
                                                    {
                                                        Automated = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyAutomatedArgs
                                                        {
                                                            AllowEmpty = false,
                                                            Prune = false,
                                                            SelfHeal = false,
                                                        },
                                                        ManagedNamespaceMetadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadataArgs
                                                        {
                                                            Annotations = 
                                                            {
                                                                { "string", "string" },
                                                            },
                                                            Labels = 
                                                            {
                                                                { "string", "string" },
                                                            },
                                                        },
                                                        Retry = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetryArgs
                                                        {
                                                            Backoff = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetryBackoffArgs
                                                            {
                                                                Duration = "string",
                                                                Factor = "string",
                                                                MaxDuration = "string",
                                                            },
                                                            Limit = "string",
                                                        },
                                                        SyncOptions = new[]
                                                        {
                                                            "string",
                                                        },
                                                    },
                                                },
                                            },
                                            Values = 
                                            {
                                                { "string", "string" },
                                            },
                                        },
                                    },
                                    Gits = new[]
                                    {
                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitArgs
                                        {
                                            RepoUrl = "string",
                                            Directories = new[]
                                            {
                                                new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitDirectoryArgs
                                                {
                                                    Path = "string",
                                                    Exclude = false,
                                                },
                                            },
                                            Files = new[]
                                            {
                                                new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitFileArgs
                                                {
                                                    Path = "string",
                                                },
                                            },
                                            PathParamPrefix = "string",
                                            Revision = "string",
                                            Template = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateArgs
                                            {
                                                Metadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateMetadataArgs
                                                {
                                                    Annotations = 
                                                    {
                                                        { "string", "string" },
                                                    },
                                                    Finalizers = new[]
                                                    {
                                                        "string",
                                                    },
                                                    Labels = 
                                                    {
                                                        { "string", "string" },
                                                    },
                                                    Name = "string",
                                                    Namespace = "string",
                                                },
                                                Spec = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecArgs
                                                {
                                                    Destination = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecDestinationArgs
                                                    {
                                                        Name = "string",
                                                        Namespace = "string",
                                                        Server = "string",
                                                    },
                                                    IgnoreDifferences = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecIgnoreDifferenceArgs
                                                        {
                                                            Group = "string",
                                                            JqPathExpressions = new[]
                                                            {
                                                                "string",
                                                            },
                                                            JsonPointers = new[]
                                                            {
                                                                "string",
                                                            },
                                                            Kind = "string",
                                                            ManagedFieldsManagers = new[]
                                                            {
                                                                "string",
                                                            },
                                                            Name = "string",
                                                            Namespace = "string",
                                                        },
                                                    },
                                                    Infos = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecInfoArgs
                                                        {
                                                            Name = "string",
                                                            Value = "string",
                                                        },
                                                    },
                                                    Project = "string",
                                                    RevisionHistoryLimit = 0,
                                                    Sources = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceArgs
                                                        {
                                                            Chart = "string",
                                                            Directory = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryArgs
                                                            {
                                                                Exclude = "string",
                                                                Include = "string",
                                                                Jsonnet = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnetArgs
                                                                {
                                                                    ExtVars = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnetExtVarArgs
                                                                        {
                                                                            Code = false,
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                    Libs = new[]
                                                                    {
                                                                        "string",
                                                                    },
                                                                    Tlas = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnetTlaArgs
                                                                        {
                                                                            Code = false,
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                },
                                                                Recurse = false,
                                                            },
                                                            Helm = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceHelmArgs
                                                            {
                                                                FileParameters = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceHelmFileParameterArgs
                                                                    {
                                                                        Name = "string",
                                                                        Path = "string",
                                                                    },
                                                                },
                                                                IgnoreMissingValueFiles = false,
                                                                Parameters = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceHelmParameterArgs
                                                                    {
                                                                        ForceString = false,
                                                                        Name = "string",
                                                                        Value = "string",
                                                                    },
                                                                },
                                                                PassCredentials = false,
                                                                ReleaseName = "string",
                                                                SkipCrds = false,
                                                                ValueFiles = new[]
                                                                {
                                                                    "string",
                                                                },
                                                                Values = "string",
                                                                Version = "string",
                                                            },
                                                            Kustomize = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizeArgs
                                                            {
                                                                CommonAnnotations = 
                                                                {
                                                                    { "string", "string" },
                                                                },
                                                                CommonLabels = 
                                                                {
                                                                    { "string", "string" },
                                                                },
                                                                Images = new[]
                                                                {
                                                                    "string",
                                                                },
                                                                NamePrefix = "string",
                                                                NameSuffix = "string",
                                                                Patches = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatchArgs
                                                                    {
                                                                        Target = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatchTargetArgs
                                                                        {
                                                                            AnnotationSelector = "string",
                                                                            Group = "string",
                                                                            Kind = "string",
                                                                            LabelSelector = "string",
                                                                            Name = "string",
                                                                            Namespace = "string",
                                                                            Version = "string",
                                                                        },
                                                                        Options = 
                                                                        {
                                                                            { "string", false },
                                                                        },
                                                                        Patch = "string",
                                                                        Path = "string",
                                                                    },
                                                                },
                                                                Version = "string",
                                                            },
                                                            Path = "string",
                                                            Plugin = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourcePluginArgs
                                                            {
                                                                Envs = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourcePluginEnvArgs
                                                                    {
                                                                        Name = "string",
                                                                        Value = "string",
                                                                    },
                                                                },
                                                                Name = "string",
                                                            },
                                                            Ref = "string",
                                                            RepoUrl = "string",
                                                            TargetRevision = "string",
                                                        },
                                                    },
                                                    SyncPolicy = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyArgs
                                                    {
                                                        Automated = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyAutomatedArgs
                                                        {
                                                            AllowEmpty = false,
                                                            Prune = false,
                                                            SelfHeal = false,
                                                        },
                                                        ManagedNamespaceMetadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadataArgs
                                                        {
                                                            Annotations = 
                                                            {
                                                                { "string", "string" },
                                                            },
                                                            Labels = 
                                                            {
                                                                { "string", "string" },
                                                            },
                                                        },
                                                        Retry = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetryArgs
                                                        {
                                                            Backoff = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetryBackoffArgs
                                                            {
                                                                Duration = "string",
                                                                Factor = "string",
                                                                MaxDuration = "string",
                                                            },
                                                            Limit = "string",
                                                        },
                                                        SyncOptions = new[]
                                                        {
                                                            "string",
                                                        },
                                                    },
                                                },
                                            },
                                            Values = 
                                            {
                                                { "string", "string" },
                                            },
                                        },
                                    },
                                    Lists = new[]
                                    {
                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorListArgs
                                        {
                                            Elements = new[]
                                            {
                                                
                                                {
                                                    { "string", "string" },
                                                },
                                            },
                                            Template = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateArgs
                                            {
                                                Metadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateMetadataArgs
                                                {
                                                    Annotations = 
                                                    {
                                                        { "string", "string" },
                                                    },
                                                    Finalizers = new[]
                                                    {
                                                        "string",
                                                    },
                                                    Labels = 
                                                    {
                                                        { "string", "string" },
                                                    },
                                                    Name = "string",
                                                    Namespace = "string",
                                                },
                                                Spec = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecArgs
                                                {
                                                    Destination = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecDestinationArgs
                                                    {
                                                        Name = "string",
                                                        Namespace = "string",
                                                        Server = "string",
                                                    },
                                                    IgnoreDifferences = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecIgnoreDifferenceArgs
                                                        {
                                                            Group = "string",
                                                            JqPathExpressions = new[]
                                                            {
                                                                "string",
                                                            },
                                                            JsonPointers = new[]
                                                            {
                                                                "string",
                                                            },
                                                            Kind = "string",
                                                            ManagedFieldsManagers = new[]
                                                            {
                                                                "string",
                                                            },
                                                            Name = "string",
                                                            Namespace = "string",
                                                        },
                                                    },
                                                    Infos = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecInfoArgs
                                                        {
                                                            Name = "string",
                                                            Value = "string",
                                                        },
                                                    },
                                                    Project = "string",
                                                    RevisionHistoryLimit = 0,
                                                    Sources = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceArgs
                                                        {
                                                            Chart = "string",
                                                            Directory = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryArgs
                                                            {
                                                                Exclude = "string",
                                                                Include = "string",
                                                                Jsonnet = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnetArgs
                                                                {
                                                                    ExtVars = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnetExtVarArgs
                                                                        {
                                                                            Code = false,
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                    Libs = new[]
                                                                    {
                                                                        "string",
                                                                    },
                                                                    Tlas = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnetTlaArgs
                                                                        {
                                                                            Code = false,
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                },
                                                                Recurse = false,
                                                            },
                                                            Helm = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceHelmArgs
                                                            {
                                                                FileParameters = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceHelmFileParameterArgs
                                                                    {
                                                                        Name = "string",
                                                                        Path = "string",
                                                                    },
                                                                },
                                                                IgnoreMissingValueFiles = false,
                                                                Parameters = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceHelmParameterArgs
                                                                    {
                                                                        ForceString = false,
                                                                        Name = "string",
                                                                        Value = "string",
                                                                    },
                                                                },
                                                                PassCredentials = false,
                                                                ReleaseName = "string",
                                                                SkipCrds = false,
                                                                ValueFiles = new[]
                                                                {
                                                                    "string",
                                                                },
                                                                Values = "string",
                                                                Version = "string",
                                                            },
                                                            Kustomize = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceKustomizeArgs
                                                            {
                                                                CommonAnnotations = 
                                                                {
                                                                    { "string", "string" },
                                                                },
                                                                CommonLabels = 
                                                                {
                                                                    { "string", "string" },
                                                                },
                                                                Images = new[]
                                                                {
                                                                    "string",
                                                                },
                                                                NamePrefix = "string",
                                                                NameSuffix = "string",
                                                                Patches = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatchArgs
                                                                    {
                                                                        Target = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatchTargetArgs
                                                                        {
                                                                            AnnotationSelector = "string",
                                                                            Group = "string",
                                                                            Kind = "string",
                                                                            LabelSelector = "string",
                                                                            Name = "string",
                                                                            Namespace = "string",
                                                                            Version = "string",
                                                                        },
                                                                        Options = 
                                                                        {
                                                                            { "string", false },
                                                                        },
                                                                        Patch = "string",
                                                                        Path = "string",
                                                                    },
                                                                },
                                                                Version = "string",
                                                            },
                                                            Path = "string",
                                                            Plugin = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourcePluginArgs
                                                            {
                                                                Envs = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourcePluginEnvArgs
                                                                    {
                                                                        Name = "string",
                                                                        Value = "string",
                                                                    },
                                                                },
                                                                Name = "string",
                                                            },
                                                            Ref = "string",
                                                            RepoUrl = "string",
                                                            TargetRevision = "string",
                                                        },
                                                    },
                                                    SyncPolicy = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicyArgs
                                                    {
                                                        Automated = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicyAutomatedArgs
                                                        {
                                                            AllowEmpty = false,
                                                            Prune = false,
                                                            SelfHeal = false,
                                                        },
                                                        ManagedNamespaceMetadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadataArgs
                                                        {
                                                            Annotations = 
                                                            {
                                                                { "string", "string" },
                                                            },
                                                            Labels = 
                                                            {
                                                                { "string", "string" },
                                                            },
                                                        },
                                                        Retry = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetryArgs
                                                        {
                                                            Backoff = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetryBackoffArgs
                                                            {
                                                                Duration = "string",
                                                                Factor = "string",
                                                                MaxDuration = "string",
                                                            },
                                                            Limit = "string",
                                                        },
                                                        SyncOptions = new[]
                                                        {
                                                            "string",
                                                        },
                                                    },
                                                },
                                            },
                                        },
                                    },
                                    Matrices = new[]
                                    {
                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixArgs
                                        {
                                            Generators = new[]
                                            {
                                                new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorArgs
                                                {
                                                    ClusterDecisionResources = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceArgs
                                                        {
                                                            ConfigMapRef = "string",
                                                            LabelSelector = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceLabelSelectorArgs
                                                            {
                                                                MatchExpressions = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceLabelSelectorMatchExpressionArgs
                                                                    {
                                                                        Key = "string",
                                                                        Operator = "string",
                                                                        Values = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                                MatchLabels = 
                                                                {
                                                                    { "string", "string" },
                                                                },
                                                            },
                                                            Name = "string",
                                                            RequeueAfterSeconds = "string",
                                                            Template = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateArgs
                                                            {
                                                                Metadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateMetadataArgs
                                                                {
                                                                    Annotations = 
                                                                    {
                                                                        { "string", "string" },
                                                                    },
                                                                    Finalizers = new[]
                                                                    {
                                                                        "string",
                                                                    },
                                                                    Labels = 
                                                                    {
                                                                        { "string", "string" },
                                                                    },
                                                                    Name = "string",
                                                                    Namespace = "string",
                                                                },
                                                                Spec = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecArgs
                                                                {
                                                                    Destination = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecDestinationArgs
                                                                    {
                                                                        Name = "string",
                                                                        Namespace = "string",
                                                                        Server = "string",
                                                                    },
                                                                    IgnoreDifferences = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecIgnoreDifferenceArgs
                                                                        {
                                                                            Group = "string",
                                                                            JqPathExpressions = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            JsonPointers = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            Kind = "string",
                                                                            ManagedFieldsManagers = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            Name = "string",
                                                                            Namespace = "string",
                                                                        },
                                                                    },
                                                                    Infos = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecInfoArgs
                                                                        {
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                    Project = "string",
                                                                    RevisionHistoryLimit = 0,
                                                                    Sources = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceArgs
                                                                        {
                                                                            Chart = "string",
                                                                            Directory = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryArgs
                                                                            {
                                                                                Exclude = "string",
                                                                                Include = "string",
                                                                                Jsonnet = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetArgs
                                                                                {
                                                                                    ExtVars = new[]
                                                                                    {
                                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetExtVarArgs
                                                                                        {
                                                                                            Code = false,
                                                                                            Name = "string",
                                                                                            Value = "string",
                                                                                        },
                                                                                    },
                                                                                    Libs = new[]
                                                                                    {
                                                                                        "string",
                                                                                    },
                                                                                    Tlas = new[]
                                                                                    {
                                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetTlaArgs
                                                                                        {
                                                                                            Code = false,
                                                                                            Name = "string",
                                                                                            Value = "string",
                                                                                        },
                                                                                    },
                                                                                },
                                                                                Recurse = false,
                                                                            },
                                                                            Helm = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmArgs
                                                                            {
                                                                                FileParameters = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameterArgs
                                                                                    {
                                                                                        Name = "string",
                                                                                        Path = "string",
                                                                                    },
                                                                                },
                                                                                IgnoreMissingValueFiles = false,
                                                                                Parameters = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameterArgs
                                                                                    {
                                                                                        ForceString = false,
                                                                                        Name = "string",
                                                                                        Value = "string",
                                                                                    },
                                                                                },
                                                                                PassCredentials = false,
                                                                                ReleaseName = "string",
                                                                                SkipCrds = false,
                                                                                ValueFiles = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                                Values = "string",
                                                                                Version = "string",
                                                                            },
                                                                            Kustomize = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizeArgs
                                                                            {
                                                                                CommonAnnotations = 
                                                                                {
                                                                                    { "string", "string" },
                                                                                },
                                                                                CommonLabels = 
                                                                                {
                                                                                    { "string", "string" },
                                                                                },
                                                                                Images = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                                NamePrefix = "string",
                                                                                NameSuffix = "string",
                                                                                Patches = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchArgs
                                                                                    {
                                                                                        Target = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTargetArgs
                                                                                        {
                                                                                            AnnotationSelector = "string",
                                                                                            Group = "string",
                                                                                            Kind = "string",
                                                                                            LabelSelector = "string",
                                                                                            Name = "string",
                                                                                            Namespace = "string",
                                                                                            Version = "string",
                                                                                        },
                                                                                        Options = 
                                                                                        {
                                                                                            { "string", false },
                                                                                        },
                                                                                        Patch = "string",
                                                                                        Path = "string",
                                                                                    },
                                                                                },
                                                                                Version = "string",
                                                                            },
                                                                            Path = "string",
                                                                            Plugin = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePluginArgs
                                                                            {
                                                                                Envs = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnvArgs
                                                                                    {
                                                                                        Name = "string",
                                                                                        Value = "string",
                                                                                    },
                                                                                },
                                                                                Name = "string",
                                                                            },
                                                                            Ref = "string",
                                                                            RepoUrl = "string",
                                                                            TargetRevision = "string",
                                                                        },
                                                                    },
                                                                    SyncPolicy = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyArgs
                                                                    {
                                                                        Automated = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomatedArgs
                                                                        {
                                                                            AllowEmpty = false,
                                                                            Prune = false,
                                                                            SelfHeal = false,
                                                                        },
                                                                        ManagedNamespaceMetadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadataArgs
                                                                        {
                                                                            Annotations = 
                                                                            {
                                                                                { "string", "string" },
                                                                            },
                                                                            Labels = 
                                                                            {
                                                                                { "string", "string" },
                                                                            },
                                                                        },
                                                                        Retry = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryArgs
                                                                        {
                                                                            Backoff = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoffArgs
                                                                            {
                                                                                Duration = "string",
                                                                                Factor = "string",
                                                                                MaxDuration = "string",
                                                                            },
                                                                            Limit = "string",
                                                                        },
                                                                        SyncOptions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                            Values = 
                                                            {
                                                                { "string", "string" },
                                                            },
                                                        },
                                                    },
                                                    Clusters = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterArgs
                                                        {
                                                            Enabled = false,
                                                            Selector = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterSelectorArgs
                                                            {
                                                                MatchExpressions = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterSelectorMatchExpressionArgs
                                                                    {
                                                                        Key = "string",
                                                                        Operator = "string",
                                                                        Values = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                                MatchLabels = 
                                                                {
                                                                    { "string", "string" },
                                                                },
                                                            },
                                                            Template = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateArgs
                                                            {
                                                                Metadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateMetadataArgs
                                                                {
                                                                    Annotations = 
                                                                    {
                                                                        { "string", "string" },
                                                                    },
                                                                    Finalizers = new[]
                                                                    {
                                                                        "string",
                                                                    },
                                                                    Labels = 
                                                                    {
                                                                        { "string", "string" },
                                                                    },
                                                                    Name = "string",
                                                                    Namespace = "string",
                                                                },
                                                                Spec = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecArgs
                                                                {
                                                                    Destination = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecDestinationArgs
                                                                    {
                                                                        Name = "string",
                                                                        Namespace = "string",
                                                                        Server = "string",
                                                                    },
                                                                    IgnoreDifferences = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecIgnoreDifferenceArgs
                                                                        {
                                                                            Group = "string",
                                                                            JqPathExpressions = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            JsonPointers = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            Kind = "string",
                                                                            ManagedFieldsManagers = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            Name = "string",
                                                                            Namespace = "string",
                                                                        },
                                                                    },
                                                                    Infos = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecInfoArgs
                                                                        {
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                    Project = "string",
                                                                    RevisionHistoryLimit = 0,
                                                                    Sources = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceArgs
                                                                        {
                                                                            Chart = "string",
                                                                            Directory = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryArgs
                                                                            {
                                                                                Exclude = "string",
                                                                                Include = "string",
                                                                                Jsonnet = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnetArgs
                                                                                {
                                                                                    ExtVars = new[]
                                                                                    {
                                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnetExtVarArgs
                                                                                        {
                                                                                            Code = false,
                                                                                            Name = "string",
                                                                                            Value = "string",
                                                                                        },
                                                                                    },
                                                                                    Libs = new[]
                                                                                    {
                                                                                        "string",
                                                                                    },
                                                                                    Tlas = new[]
                                                                                    {
                                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnetTlaArgs
                                                                                        {
                                                                                            Code = false,
                                                                                            Name = "string",
                                                                                            Value = "string",
                                                                                        },
                                                                                    },
                                                                                },
                                                                                Recurse = false,
                                                                            },
                                                                            Helm = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmArgs
                                                                            {
                                                                                FileParameters = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmFileParameterArgs
                                                                                    {
                                                                                        Name = "string",
                                                                                        Path = "string",
                                                                                    },
                                                                                },
                                                                                IgnoreMissingValueFiles = false,
                                                                                Parameters = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmParameterArgs
                                                                                    {
                                                                                        ForceString = false,
                                                                                        Name = "string",
                                                                                        Value = "string",
                                                                                    },
                                                                                },
                                                                                PassCredentials = false,
                                                                                ReleaseName = "string",
                                                                                SkipCrds = false,
                                                                                ValueFiles = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                                Values = "string",
                                                                                Version = "string",
                                                                            },
                                                                            Kustomize = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizeArgs
                                                                            {
                                                                                CommonAnnotations = 
                                                                                {
                                                                                    { "string", "string" },
                                                                                },
                                                                                CommonLabels = 
                                                                                {
                                                                                    { "string", "string" },
                                                                                },
                                                                                Images = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                                NamePrefix = "string",
                                                                                NameSuffix = "string",
                                                                                Patches = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatchArgs
                                                                                    {
                                                                                        Target = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatchTargetArgs
                                                                                        {
                                                                                            AnnotationSelector = "string",
                                                                                            Group = "string",
                                                                                            Kind = "string",
                                                                                            LabelSelector = "string",
                                                                                            Name = "string",
                                                                                            Namespace = "string",
                                                                                            Version = "string",
                                                                                        },
                                                                                        Options = 
                                                                                        {
                                                                                            { "string", false },
                                                                                        },
                                                                                        Patch = "string",
                                                                                        Path = "string",
                                                                                    },
                                                                                },
                                                                                Version = "string",
                                                                            },
                                                                            Path = "string",
                                                                            Plugin = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourcePluginArgs
                                                                            {
                                                                                Envs = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourcePluginEnvArgs
                                                                                    {
                                                                                        Name = "string",
                                                                                        Value = "string",
                                                                                    },
                                                                                },
                                                                                Name = "string",
                                                                            },
                                                                            Ref = "string",
                                                                            RepoUrl = "string",
                                                                            TargetRevision = "string",
                                                                        },
                                                                    },
                                                                    SyncPolicy = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyArgs
                                                                    {
                                                                        Automated = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyAutomatedArgs
                                                                        {
                                                                            AllowEmpty = false,
                                                                            Prune = false,
                                                                            SelfHeal = false,
                                                                        },
                                                                        ManagedNamespaceMetadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadataArgs
                                                                        {
                                                                            Annotations = 
                                                                            {
                                                                                { "string", "string" },
                                                                            },
                                                                            Labels = 
                                                                            {
                                                                                { "string", "string" },
                                                                            },
                                                                        },
                                                                        Retry = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetryArgs
                                                                        {
                                                                            Backoff = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetryBackoffArgs
                                                                            {
                                                                                Duration = "string",
                                                                                Factor = "string",
                                                                                MaxDuration = "string",
                                                                            },
                                                                            Limit = "string",
                                                                        },
                                                                        SyncOptions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                            Values = 
                                                            {
                                                                { "string", "string" },
                                                            },
                                                        },
                                                    },
                                                    Gits = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitArgs
                                                        {
                                                            RepoUrl = "string",
                                                            Directories = new[]
                                                            {
                                                                new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitDirectoryArgs
                                                                {
                                                                    Path = "string",
                                                                    Exclude = false,
                                                                },
                                                            },
                                                            Files = new[]
                                                            {
                                                                new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitFileArgs
                                                                {
                                                                    Path = "string",
                                                                },
                                                            },
                                                            PathParamPrefix = "string",
                                                            Revision = "string",
                                                            Template = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateArgs
                                                            {
                                                                Metadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateMetadataArgs
                                                                {
                                                                    Annotations = 
                                                                    {
                                                                        { "string", "string" },
                                                                    },
                                                                    Finalizers = new[]
                                                                    {
                                                                        "string",
                                                                    },
                                                                    Labels = 
                                                                    {
                                                                        { "string", "string" },
                                                                    },
                                                                    Name = "string",
                                                                    Namespace = "string",
                                                                },
                                                                Spec = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecArgs
                                                                {
                                                                    Destination = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecDestinationArgs
                                                                    {
                                                                        Name = "string",
                                                                        Namespace = "string",
                                                                        Server = "string",
                                                                    },
                                                                    IgnoreDifferences = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecIgnoreDifferenceArgs
                                                                        {
                                                                            Group = "string",
                                                                            JqPathExpressions = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            JsonPointers = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            Kind = "string",
                                                                            ManagedFieldsManagers = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            Name = "string",
                                                                            Namespace = "string",
                                                                        },
                                                                    },
                                                                    Infos = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecInfoArgs
                                                                        {
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                    Project = "string",
                                                                    RevisionHistoryLimit = 0,
                                                                    Sources = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceArgs
                                                                        {
                                                                            Chart = "string",
                                                                            Directory = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryArgs
                                                                            {
                                                                                Exclude = "string",
                                                                                Include = "string",
                                                                                Jsonnet = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnetArgs
                                                                                {
                                                                                    ExtVars = new[]
                                                                                    {
                                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnetExtVarArgs
                                                                                        {
                                                                                            Code = false,
                                                                                            Name = "string",
                                                                                            Value = "string",
                                                                                        },
                                                                                    },
                                                                                    Libs = new[]
                                                                                    {
                                                                                        "string",
                                                                                    },
                                                                                    Tlas = new[]
                                                                                    {
                                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnetTlaArgs
                                                                                        {
                                                                                            Code = false,
                                                                                            Name = "string",
                                                                                            Value = "string",
                                                                                        },
                                                                                    },
                                                                                },
                                                                                Recurse = false,
                                                                            },
                                                                            Helm = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceHelmArgs
                                                                            {
                                                                                FileParameters = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceHelmFileParameterArgs
                                                                                    {
                                                                                        Name = "string",
                                                                                        Path = "string",
                                                                                    },
                                                                                },
                                                                                IgnoreMissingValueFiles = false,
                                                                                Parameters = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceHelmParameterArgs
                                                                                    {
                                                                                        ForceString = false,
                                                                                        Name = "string",
                                                                                        Value = "string",
                                                                                    },
                                                                                },
                                                                                PassCredentials = false,
                                                                                ReleaseName = "string",
                                                                                SkipCrds = false,
                                                                                ValueFiles = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                                Values = "string",
                                                                                Version = "string",
                                                                            },
                                                                            Kustomize = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizeArgs
                                                                            {
                                                                                CommonAnnotations = 
                                                                                {
                                                                                    { "string", "string" },
                                                                                },
                                                                                CommonLabels = 
                                                                                {
                                                                                    { "string", "string" },
                                                                                },
                                                                                Images = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                                NamePrefix = "string",
                                                                                NameSuffix = "string",
                                                                                Patches = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatchArgs
                                                                                    {
                                                                                        Target = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatchTargetArgs
                                                                                        {
                                                                                            AnnotationSelector = "string",
                                                                                            Group = "string",
                                                                                            Kind = "string",
                                                                                            LabelSelector = "string",
                                                                                            Name = "string",
                                                                                            Namespace = "string",
                                                                                            Version = "string",
                                                                                        },
                                                                                        Options = 
                                                                                        {
                                                                                            { "string", false },
                                                                                        },
                                                                                        Patch = "string",
                                                                                        Path = "string",
                                                                                    },
                                                                                },
                                                                                Version = "string",
                                                                            },
                                                                            Path = "string",
                                                                            Plugin = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourcePluginArgs
                                                                            {
                                                                                Envs = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourcePluginEnvArgs
                                                                                    {
                                                                                        Name = "string",
                                                                                        Value = "string",
                                                                                    },
                                                                                },
                                                                                Name = "string",
                                                                            },
                                                                            Ref = "string",
                                                                            RepoUrl = "string",
                                                                            TargetRevision = "string",
                                                                        },
                                                                    },
                                                                    SyncPolicy = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyArgs
                                                                    {
                                                                        Automated = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyAutomatedArgs
                                                                        {
                                                                            AllowEmpty = false,
                                                                            Prune = false,
                                                                            SelfHeal = false,
                                                                        },
                                                                        ManagedNamespaceMetadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadataArgs
                                                                        {
                                                                            Annotations = 
                                                                            {
                                                                                { "string", "string" },
                                                                            },
                                                                            Labels = 
                                                                            {
                                                                                { "string", "string" },
                                                                            },
                                                                        },
                                                                        Retry = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetryArgs
                                                                        {
                                                                            Backoff = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetryBackoffArgs
                                                                            {
                                                                                Duration = "string",
                                                                                Factor = "string",
                                                                                MaxDuration = "string",
                                                                            },
                                                                            Limit = "string",
                                                                        },
                                                                        SyncOptions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                            Values = 
                                                            {
                                                                { "string", "string" },
                                                            },
                                                        },
                                                    },
                                                    Lists = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListArgs
                                                        {
                                                            Elements = new[]
                                                            {
                                                                
                                                                {
                                                                    { "string", "string" },
                                                                },
                                                            },
                                                            Template = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateArgs
                                                            {
                                                                Metadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateMetadataArgs
                                                                {
                                                                    Annotations = 
                                                                    {
                                                                        { "string", "string" },
                                                                    },
                                                                    Finalizers = new[]
                                                                    {
                                                                        "string",
                                                                    },
                                                                    Labels = 
                                                                    {
                                                                        { "string", "string" },
                                                                    },
                                                                    Name = "string",
                                                                    Namespace = "string",
                                                                },
                                                                Spec = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecArgs
                                                                {
                                                                    Destination = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecDestinationArgs
                                                                    {
                                                                        Name = "string",
                                                                        Namespace = "string",
                                                                        Server = "string",
                                                                    },
                                                                    IgnoreDifferences = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecIgnoreDifferenceArgs
                                                                        {
                                                                            Group = "string",
                                                                            JqPathExpressions = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            JsonPointers = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            Kind = "string",
                                                                            ManagedFieldsManagers = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            Name = "string",
                                                                            Namespace = "string",
                                                                        },
                                                                    },
                                                                    Infos = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecInfoArgs
                                                                        {
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                    Project = "string",
                                                                    RevisionHistoryLimit = 0,
                                                                    Sources = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceArgs
                                                                        {
                                                                            Chart = "string",
                                                                            Directory = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryArgs
                                                                            {
                                                                                Exclude = "string",
                                                                                Include = "string",
                                                                                Jsonnet = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnetArgs
                                                                                {
                                                                                    ExtVars = new[]
                                                                                    {
                                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnetExtVarArgs
                                                                                        {
                                                                                            Code = false,
                                                                                            Name = "string",
                                                                                            Value = "string",
                                                                                        },
                                                                                    },
                                                                                    Libs = new[]
                                                                                    {
                                                                                        "string",
                                                                                    },
                                                                                    Tlas = new[]
                                                                                    {
                                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnetTlaArgs
                                                                                        {
                                                                                            Code = false,
                                                                                            Name = "string",
                                                                                            Value = "string",
                                                                                        },
                                                                                    },
                                                                                },
                                                                                Recurse = false,
                                                                            },
                                                                            Helm = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceHelmArgs
                                                                            {
                                                                                FileParameters = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceHelmFileParameterArgs
                                                                                    {
                                                                                        Name = "string",
                                                                                        Path = "string",
                                                                                    },
                                                                                },
                                                                                IgnoreMissingValueFiles = false,
                                                                                Parameters = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceHelmParameterArgs
                                                                                    {
                                                                                        ForceString = false,
                                                                                        Name = "string",
                                                                                        Value = "string",
                                                                                    },
                                                                                },
                                                                                PassCredentials = false,
                                                                                ReleaseName = "string",
                                                                                SkipCrds = false,
                                                                                ValueFiles = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                                Values = "string",
                                                                                Version = "string",
                                                                            },
                                                                            Kustomize = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceKustomizeArgs
                                                                            {
                                                                                CommonAnnotations = 
                                                                                {
                                                                                    { "string", "string" },
                                                                                },
                                                                                CommonLabels = 
                                                                                {
                                                                                    { "string", "string" },
                                                                                },
                                                                                Images = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                                NamePrefix = "string",
                                                                                NameSuffix = "string",
                                                                                Patches = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatchArgs
                                                                                    {
                                                                                        Target = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatchTargetArgs
                                                                                        {
                                                                                            AnnotationSelector = "string",
                                                                                            Group = "string",
                                                                                            Kind = "string",
                                                                                            LabelSelector = "string",
                                                                                            Name = "string",
                                                                                            Namespace = "string",
                                                                                            Version = "string",
                                                                                        },
                                                                                        Options = 
                                                                                        {
                                                                                            { "string", false },
                                                                                        },
                                                                                        Patch = "string",
                                                                                        Path = "string",
                                                                                    },
                                                                                },
                                                                                Version = "string",
                                                                            },
                                                                            Path = "string",
                                                                            Plugin = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourcePluginArgs
                                                                            {
                                                                                Envs = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourcePluginEnvArgs
                                                                                    {
                                                                                        Name = "string",
                                                                                        Value = "string",
                                                                                    },
                                                                                },
                                                                                Name = "string",
                                                                            },
                                                                            Ref = "string",
                                                                            RepoUrl = "string",
                                                                            TargetRevision = "string",
                                                                        },
                                                                    },
                                                                    SyncPolicy = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicyArgs
                                                                    {
                                                                        Automated = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicyAutomatedArgs
                                                                        {
                                                                            AllowEmpty = false,
                                                                            Prune = false,
                                                                            SelfHeal = false,
                                                                        },
                                                                        ManagedNamespaceMetadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadataArgs
                                                                        {
                                                                            Annotations = 
                                                                            {
                                                                                { "string", "string" },
                                                                            },
                                                                            Labels = 
                                                                            {
                                                                                { "string", "string" },
                                                                            },
                                                                        },
                                                                        Retry = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetryArgs
                                                                        {
                                                                            Backoff = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetryBackoffArgs
                                                                            {
                                                                                Duration = "string",
                                                                                Factor = "string",
                                                                                MaxDuration = "string",
                                                                            },
                                                                            Limit = "string",
                                                                        },
                                                                        SyncOptions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                        },
                                                    },
                                                    PullRequests = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestArgs
                                                        {
                                                            BitbucketServer = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestBitbucketServerArgs
                                                            {
                                                                Api = "string",
                                                                Project = "string",
                                                                Repo = "string",
                                                                BasicAuth = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestBitbucketServerBasicAuthArgs
                                                                {
                                                                    PasswordRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestBitbucketServerBasicAuthPasswordRefArgs
                                                                    {
                                                                        Key = "string",
                                                                        SecretName = "string",
                                                                    },
                                                                    Username = "string",
                                                                },
                                                            },
                                                            Filters = new[]
                                                            {
                                                                new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestFilterArgs
                                                                {
                                                                    BranchMatch = "string",
                                                                },
                                                            },
                                                            Gitea = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGiteaArgs
                                                            {
                                                                Api = "string",
                                                                Owner = "string",
                                                                Repo = "string",
                                                                Insecure = false,
                                                                TokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGiteaTokenRefArgs
                                                                {
                                                                    Key = "string",
                                                                    SecretName = "string",
                                                                },
                                                            },
                                                            Github = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGithubArgs
                                                            {
                                                                Owner = "string",
                                                                Repo = "string",
                                                                Api = "string",
                                                                AppSecretName = "string",
                                                                Labels = new[]
                                                                {
                                                                    "string",
                                                                },
                                                                TokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGithubTokenRefArgs
                                                                {
                                                                    Key = "string",
                                                                    SecretName = "string",
                                                                },
                                                            },
                                                            Gitlab = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGitlabArgs
                                                            {
                                                                Project = "string",
                                                                Api = "string",
                                                                Labels = new[]
                                                                {
                                                                    "string",
                                                                },
                                                                PullRequestState = "string",
                                                                TokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGitlabTokenRefArgs
                                                                {
                                                                    Key = "string",
                                                                    SecretName = "string",
                                                                },
                                                            },
                                                            RequeueAfterSeconds = "string",
                                                            Template = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateArgs
                                                            {
                                                                Metadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateMetadataArgs
                                                                {
                                                                    Annotations = 
                                                                    {
                                                                        { "string", "string" },
                                                                    },
                                                                    Finalizers = new[]
                                                                    {
                                                                        "string",
                                                                    },
                                                                    Labels = 
                                                                    {
                                                                        { "string", "string" },
                                                                    },
                                                                    Name = "string",
                                                                    Namespace = "string",
                                                                },
                                                                Spec = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecArgs
                                                                {
                                                                    Destination = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecDestinationArgs
                                                                    {
                                                                        Name = "string",
                                                                        Namespace = "string",
                                                                        Server = "string",
                                                                    },
                                                                    IgnoreDifferences = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecIgnoreDifferenceArgs
                                                                        {
                                                                            Group = "string",
                                                                            JqPathExpressions = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            JsonPointers = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            Kind = "string",
                                                                            ManagedFieldsManagers = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            Name = "string",
                                                                            Namespace = "string",
                                                                        },
                                                                    },
                                                                    Infos = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecInfoArgs
                                                                        {
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                    Project = "string",
                                                                    RevisionHistoryLimit = 0,
                                                                    Sources = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceArgs
                                                                        {
                                                                            Chart = "string",
                                                                            Directory = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryArgs
                                                                            {
                                                                                Exclude = "string",
                                                                                Include = "string",
                                                                                Jsonnet = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetArgs
                                                                                {
                                                                                    ExtVars = new[]
                                                                                    {
                                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetExtVarArgs
                                                                                        {
                                                                                            Code = false,
                                                                                            Name = "string",
                                                                                            Value = "string",
                                                                                        },
                                                                                    },
                                                                                    Libs = new[]
                                                                                    {
                                                                                        "string",
                                                                                    },
                                                                                    Tlas = new[]
                                                                                    {
                                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetTlaArgs
                                                                                        {
                                                                                            Code = false,
                                                                                            Name = "string",
                                                                                            Value = "string",
                                                                                        },
                                                                                    },
                                                                                },
                                                                                Recurse = false,
                                                                            },
                                                                            Helm = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmArgs
                                                                            {
                                                                                FileParameters = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmFileParameterArgs
                                                                                    {
                                                                                        Name = "string",
                                                                                        Path = "string",
                                                                                    },
                                                                                },
                                                                                IgnoreMissingValueFiles = false,
                                                                                Parameters = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmParameterArgs
                                                                                    {
                                                                                        ForceString = false,
                                                                                        Name = "string",
                                                                                        Value = "string",
                                                                                    },
                                                                                },
                                                                                PassCredentials = false,
                                                                                ReleaseName = "string",
                                                                                SkipCrds = false,
                                                                                ValueFiles = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                                Values = "string",
                                                                                Version = "string",
                                                                            },
                                                                            Kustomize = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizeArgs
                                                                            {
                                                                                CommonAnnotations = 
                                                                                {
                                                                                    { "string", "string" },
                                                                                },
                                                                                CommonLabels = 
                                                                                {
                                                                                    { "string", "string" },
                                                                                },
                                                                                Images = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                                NamePrefix = "string",
                                                                                NameSuffix = "string",
                                                                                Patches = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatchArgs
                                                                                    {
                                                                                        Target = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatchTargetArgs
                                                                                        {
                                                                                            AnnotationSelector = "string",
                                                                                            Group = "string",
                                                                                            Kind = "string",
                                                                                            LabelSelector = "string",
                                                                                            Name = "string",
                                                                                            Namespace = "string",
                                                                                            Version = "string",
                                                                                        },
                                                                                        Options = 
                                                                                        {
                                                                                            { "string", false },
                                                                                        },
                                                                                        Patch = "string",
                                                                                        Path = "string",
                                                                                    },
                                                                                },
                                                                                Version = "string",
                                                                            },
                                                                            Path = "string",
                                                                            Plugin = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePluginArgs
                                                                            {
                                                                                Envs = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePluginEnvArgs
                                                                                    {
                                                                                        Name = "string",
                                                                                        Value = "string",
                                                                                    },
                                                                                },
                                                                                Name = "string",
                                                                            },
                                                                            Ref = "string",
                                                                            RepoUrl = "string",
                                                                            TargetRevision = "string",
                                                                        },
                                                                    },
                                                                    SyncPolicy = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyArgs
                                                                    {
                                                                        Automated = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyAutomatedArgs
                                                                        {
                                                                            AllowEmpty = false,
                                                                            Prune = false,
                                                                            SelfHeal = false,
                                                                        },
                                                                        ManagedNamespaceMetadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyManagedNamespaceMetadataArgs
                                                                        {
                                                                            Annotations = 
                                                                            {
                                                                                { "string", "string" },
                                                                            },
                                                                            Labels = 
                                                                            {
                                                                                { "string", "string" },
                                                                            },
                                                                        },
                                                                        Retry = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetryArgs
                                                                        {
                                                                            Backoff = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetryBackoffArgs
                                                                            {
                                                                                Duration = "string",
                                                                                Factor = "string",
                                                                                MaxDuration = "string",
                                                                            },
                                                                            Limit = "string",
                                                                        },
                                                                        SyncOptions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                        },
                                                    },
                                                    ScmProviders = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderArgs
                                                        {
                                                            AzureDevops = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderAzureDevopsArgs
                                                            {
                                                                Organization = "string",
                                                                TeamProject = "string",
                                                                AccessTokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderAzureDevopsAccessTokenRefArgs
                                                                {
                                                                    Key = "string",
                                                                    SecretName = "string",
                                                                },
                                                                AllBranches = false,
                                                                Api = "string",
                                                            },
                                                            BitbucketCloud = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderBitbucketCloudArgs
                                                            {
                                                                Owner = "string",
                                                                User = "string",
                                                                AllBranches = false,
                                                                AppPasswordRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderBitbucketCloudAppPasswordRefArgs
                                                                {
                                                                    Key = "string",
                                                                    SecretName = "string",
                                                                },
                                                            },
                                                            BitbucketServer = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderBitbucketServerArgs
                                                            {
                                                                Api = "string",
                                                                Project = "string",
                                                                AllBranches = false,
                                                                BasicAuth = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderBitbucketServerBasicAuthArgs
                                                                {
                                                                    PasswordRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderBitbucketServerBasicAuthPasswordRefArgs
                                                                    {
                                                                        Key = "string",
                                                                        SecretName = "string",
                                                                    },
                                                                    Username = "string",
                                                                },
                                                            },
                                                            CloneProtocol = "string",
                                                            Filters = new[]
                                                            {
                                                                new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderFilterArgs
                                                                {
                                                                    BranchMatch = "string",
                                                                    LabelMatch = "string",
                                                                    PathsDoNotExists = new[]
                                                                    {
                                                                        "string",
                                                                    },
                                                                    PathsExists = new[]
                                                                    {
                                                                        "string",
                                                                    },
                                                                    RepositoryMatch = "string",
                                                                },
                                                            },
                                                            Gitea = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGiteaArgs
                                                            {
                                                                Owner = "string",
                                                                AllBranches = false,
                                                                Api = "string",
                                                                Insecure = false,
                                                                TokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGiteaTokenRefArgs
                                                                {
                                                                    Key = "string",
                                                                    SecretName = "string",
                                                                },
                                                            },
                                                            Github = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGithubArgs
                                                            {
                                                                Organization = "string",
                                                                AllBranches = false,
                                                                Api = "string",
                                                                AppSecretName = "string",
                                                                TokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGithubTokenRefArgs
                                                                {
                                                                    Key = "string",
                                                                    SecretName = "string",
                                                                },
                                                            },
                                                            Gitlab = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGitlabArgs
                                                            {
                                                                Group = "string",
                                                                AllBranches = false,
                                                                Api = "string",
                                                                IncludeSubgroups = false,
                                                                TokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGitlabTokenRefArgs
                                                                {
                                                                    Key = "string",
                                                                    SecretName = "string",
                                                                },
                                                            },
                                                            RequeueAfterSeconds = "string",
                                                            Template = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateArgs
                                                            {
                                                                Metadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateMetadataArgs
                                                                {
                                                                    Annotations = 
                                                                    {
                                                                        { "string", "string" },
                                                                    },
                                                                    Finalizers = new[]
                                                                    {
                                                                        "string",
                                                                    },
                                                                    Labels = 
                                                                    {
                                                                        { "string", "string" },
                                                                    },
                                                                    Name = "string",
                                                                    Namespace = "string",
                                                                },
                                                                Spec = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecArgs
                                                                {
                                                                    Destination = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecDestinationArgs
                                                                    {
                                                                        Name = "string",
                                                                        Namespace = "string",
                                                                        Server = "string",
                                                                    },
                                                                    IgnoreDifferences = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecIgnoreDifferenceArgs
                                                                        {
                                                                            Group = "string",
                                                                            JqPathExpressions = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            JsonPointers = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            Kind = "string",
                                                                            ManagedFieldsManagers = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            Name = "string",
                                                                            Namespace = "string",
                                                                        },
                                                                    },
                                                                    Infos = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecInfoArgs
                                                                        {
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                    Project = "string",
                                                                    RevisionHistoryLimit = 0,
                                                                    Sources = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceArgs
                                                                        {
                                                                            Chart = "string",
                                                                            Directory = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryArgs
                                                                            {
                                                                                Exclude = "string",
                                                                                Include = "string",
                                                                                Jsonnet = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetArgs
                                                                                {
                                                                                    ExtVars = new[]
                                                                                    {
                                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetExtVarArgs
                                                                                        {
                                                                                            Code = false,
                                                                                            Name = "string",
                                                                                            Value = "string",
                                                                                        },
                                                                                    },
                                                                                    Libs = new[]
                                                                                    {
                                                                                        "string",
                                                                                    },
                                                                                    Tlas = new[]
                                                                                    {
                                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetTlaArgs
                                                                                        {
                                                                                            Code = false,
                                                                                            Name = "string",
                                                                                            Value = "string",
                                                                                        },
                                                                                    },
                                                                                },
                                                                                Recurse = false,
                                                                            },
                                                                            Helm = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmArgs
                                                                            {
                                                                                FileParameters = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmFileParameterArgs
                                                                                    {
                                                                                        Name = "string",
                                                                                        Path = "string",
                                                                                    },
                                                                                },
                                                                                IgnoreMissingValueFiles = false,
                                                                                Parameters = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmParameterArgs
                                                                                    {
                                                                                        ForceString = false,
                                                                                        Name = "string",
                                                                                        Value = "string",
                                                                                    },
                                                                                },
                                                                                PassCredentials = false,
                                                                                ReleaseName = "string",
                                                                                SkipCrds = false,
                                                                                ValueFiles = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                                Values = "string",
                                                                                Version = "string",
                                                                            },
                                                                            Kustomize = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizeArgs
                                                                            {
                                                                                CommonAnnotations = 
                                                                                {
                                                                                    { "string", "string" },
                                                                                },
                                                                                CommonLabels = 
                                                                                {
                                                                                    { "string", "string" },
                                                                                },
                                                                                Images = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                                NamePrefix = "string",
                                                                                NameSuffix = "string",
                                                                                Patches = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizePatchArgs
                                                                                    {
                                                                                        Target = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizePatchTargetArgs
                                                                                        {
                                                                                            AnnotationSelector = "string",
                                                                                            Group = "string",
                                                                                            Kind = "string",
                                                                                            LabelSelector = "string",
                                                                                            Name = "string",
                                                                                            Namespace = "string",
                                                                                            Version = "string",
                                                                                        },
                                                                                        Options = 
                                                                                        {
                                                                                            { "string", false },
                                                                                        },
                                                                                        Patch = "string",
                                                                                        Path = "string",
                                                                                    },
                                                                                },
                                                                                Version = "string",
                                                                            },
                                                                            Path = "string",
                                                                            Plugin = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourcePluginArgs
                                                                            {
                                                                                Envs = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourcePluginEnvArgs
                                                                                    {
                                                                                        Name = "string",
                                                                                        Value = "string",
                                                                                    },
                                                                                },
                                                                                Name = "string",
                                                                            },
                                                                            Ref = "string",
                                                                            RepoUrl = "string",
                                                                            TargetRevision = "string",
                                                                        },
                                                                    },
                                                                    SyncPolicy = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyArgs
                                                                    {
                                                                        Automated = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyAutomatedArgs
                                                                        {
                                                                            AllowEmpty = false,
                                                                            Prune = false,
                                                                            SelfHeal = false,
                                                                        },
                                                                        ManagedNamespaceMetadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyManagedNamespaceMetadataArgs
                                                                        {
                                                                            Annotations = 
                                                                            {
                                                                                { "string", "string" },
                                                                            },
                                                                            Labels = 
                                                                            {
                                                                                { "string", "string" },
                                                                            },
                                                                        },
                                                                        Retry = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyRetryArgs
                                                                        {
                                                                            Backoff = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyRetryBackoffArgs
                                                                            {
                                                                                Duration = "string",
                                                                                Factor = "string",
                                                                                MaxDuration = "string",
                                                                            },
                                                                            Limit = "string",
                                                                        },
                                                                        SyncOptions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                        },
                                                    },
                                                    Selector = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorSelectorArgs
                                                    {
                                                        MatchExpressions = new[]
                                                        {
                                                            new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorSelectorMatchExpressionArgs
                                                            {
                                                                Key = "string",
                                                                Operator = "string",
                                                                Values = new[]
                                                                {
                                                                    "string",
                                                                },
                                                            },
                                                        },
                                                        MatchLabels = 
                                                        {
                                                            { "string", "string" },
                                                        },
                                                    },
                                                },
                                            },
                                            Template = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateArgs
                                            {
                                                Metadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateMetadataArgs
                                                {
                                                    Annotations = 
                                                    {
                                                        { "string", "string" },
                                                    },
                                                    Finalizers = new[]
                                                    {
                                                        "string",
                                                    },
                                                    Labels = 
                                                    {
                                                        { "string", "string" },
                                                    },
                                                    Name = "string",
                                                    Namespace = "string",
                                                },
                                                Spec = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecArgs
                                                {
                                                    Destination = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecDestinationArgs
                                                    {
                                                        Name = "string",
                                                        Namespace = "string",
                                                        Server = "string",
                                                    },
                                                    IgnoreDifferences = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecIgnoreDifferenceArgs
                                                        {
                                                            Group = "string",
                                                            JqPathExpressions = new[]
                                                            {
                                                                "string",
                                                            },
                                                            JsonPointers = new[]
                                                            {
                                                                "string",
                                                            },
                                                            Kind = "string",
                                                            ManagedFieldsManagers = new[]
                                                            {
                                                                "string",
                                                            },
                                                            Name = "string",
                                                            Namespace = "string",
                                                        },
                                                    },
                                                    Infos = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecInfoArgs
                                                        {
                                                            Name = "string",
                                                            Value = "string",
                                                        },
                                                    },
                                                    Project = "string",
                                                    RevisionHistoryLimit = 0,
                                                    Sources = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceArgs
                                                        {
                                                            Chart = "string",
                                                            Directory = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceDirectoryArgs
                                                            {
                                                                Exclude = "string",
                                                                Include = "string",
                                                                Jsonnet = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceDirectoryJsonnetArgs
                                                                {
                                                                    ExtVars = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceDirectoryJsonnetExtVarArgs
                                                                        {
                                                                            Code = false,
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                    Libs = new[]
                                                                    {
                                                                        "string",
                                                                    },
                                                                    Tlas = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceDirectoryJsonnetTlaArgs
                                                                        {
                                                                            Code = false,
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                },
                                                                Recurse = false,
                                                            },
                                                            Helm = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceHelmArgs
                                                            {
                                                                FileParameters = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceHelmFileParameterArgs
                                                                    {
                                                                        Name = "string",
                                                                        Path = "string",
                                                                    },
                                                                },
                                                                IgnoreMissingValueFiles = false,
                                                                Parameters = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceHelmParameterArgs
                                                                    {
                                                                        ForceString = false,
                                                                        Name = "string",
                                                                        Value = "string",
                                                                    },
                                                                },
                                                                PassCredentials = false,
                                                                ReleaseName = "string",
                                                                SkipCrds = false,
                                                                ValueFiles = new[]
                                                                {
                                                                    "string",
                                                                },
                                                                Values = "string",
                                                                Version = "string",
                                                            },
                                                            Kustomize = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceKustomizeArgs
                                                            {
                                                                CommonAnnotations = 
                                                                {
                                                                    { "string", "string" },
                                                                },
                                                                CommonLabels = 
                                                                {
                                                                    { "string", "string" },
                                                                },
                                                                Images = new[]
                                                                {
                                                                    "string",
                                                                },
                                                                NamePrefix = "string",
                                                                NameSuffix = "string",
                                                                Patches = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceKustomizePatchArgs
                                                                    {
                                                                        Target = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceKustomizePatchTargetArgs
                                                                        {
                                                                            AnnotationSelector = "string",
                                                                            Group = "string",
                                                                            Kind = "string",
                                                                            LabelSelector = "string",
                                                                            Name = "string",
                                                                            Namespace = "string",
                                                                            Version = "string",
                                                                        },
                                                                        Options = 
                                                                        {
                                                                            { "string", false },
                                                                        },
                                                                        Patch = "string",
                                                                        Path = "string",
                                                                    },
                                                                },
                                                                Version = "string",
                                                            },
                                                            Path = "string",
                                                            Plugin = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourcePluginArgs
                                                            {
                                                                Envs = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourcePluginEnvArgs
                                                                    {
                                                                        Name = "string",
                                                                        Value = "string",
                                                                    },
                                                                },
                                                                Name = "string",
                                                            },
                                                            Ref = "string",
                                                            RepoUrl = "string",
                                                            TargetRevision = "string",
                                                        },
                                                    },
                                                    SyncPolicy = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicyArgs
                                                    {
                                                        Automated = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicyAutomatedArgs
                                                        {
                                                            AllowEmpty = false,
                                                            Prune = false,
                                                            SelfHeal = false,
                                                        },
                                                        ManagedNamespaceMetadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicyManagedNamespaceMetadataArgs
                                                        {
                                                            Annotations = 
                                                            {
                                                                { "string", "string" },
                                                            },
                                                            Labels = 
                                                            {
                                                                { "string", "string" },
                                                            },
                                                        },
                                                        Retry = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicyRetryArgs
                                                        {
                                                            Backoff = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicyRetryBackoffArgs
                                                            {
                                                                Duration = "string",
                                                                Factor = "string",
                                                                MaxDuration = "string",
                                                            },
                                                            Limit = "string",
                                                        },
                                                        SyncOptions = new[]
                                                        {
                                                            "string",
                                                        },
                                                    },
                                                },
                                            },
                                        },
                                    },
                                    Merges = new[]
                                    {
                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeArgs
                                        {
                                            Generators = new[]
                                            {
                                                new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorArgs
                                                {
                                                    ClusterDecisionResources = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceArgs
                                                        {
                                                            ConfigMapRef = "string",
                                                            LabelSelector = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceLabelSelectorArgs
                                                            {
                                                                MatchExpressions = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceLabelSelectorMatchExpressionArgs
                                                                    {
                                                                        Key = "string",
                                                                        Operator = "string",
                                                                        Values = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                                MatchLabels = 
                                                                {
                                                                    { "string", "string" },
                                                                },
                                                            },
                                                            Name = "string",
                                                            RequeueAfterSeconds = "string",
                                                            Template = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateArgs
                                                            {
                                                                Metadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateMetadataArgs
                                                                {
                                                                    Annotations = 
                                                                    {
                                                                        { "string", "string" },
                                                                    },
                                                                    Finalizers = new[]
                                                                    {
                                                                        "string",
                                                                    },
                                                                    Labels = 
                                                                    {
                                                                        { "string", "string" },
                                                                    },
                                                                    Name = "string",
                                                                    Namespace = "string",
                                                                },
                                                                Spec = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecArgs
                                                                {
                                                                    Destination = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecDestinationArgs
                                                                    {
                                                                        Name = "string",
                                                                        Namespace = "string",
                                                                        Server = "string",
                                                                    },
                                                                    IgnoreDifferences = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecIgnoreDifferenceArgs
                                                                        {
                                                                            Group = "string",
                                                                            JqPathExpressions = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            JsonPointers = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            Kind = "string",
                                                                            ManagedFieldsManagers = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            Name = "string",
                                                                            Namespace = "string",
                                                                        },
                                                                    },
                                                                    Infos = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecInfoArgs
                                                                        {
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                    Project = "string",
                                                                    RevisionHistoryLimit = 0,
                                                                    Sources = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceArgs
                                                                        {
                                                                            Chart = "string",
                                                                            Directory = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryArgs
                                                                            {
                                                                                Exclude = "string",
                                                                                Include = "string",
                                                                                Jsonnet = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetArgs
                                                                                {
                                                                                    ExtVars = new[]
                                                                                    {
                                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetExtVarArgs
                                                                                        {
                                                                                            Code = false,
                                                                                            Name = "string",
                                                                                            Value = "string",
                                                                                        },
                                                                                    },
                                                                                    Libs = new[]
                                                                                    {
                                                                                        "string",
                                                                                    },
                                                                                    Tlas = new[]
                                                                                    {
                                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetTlaArgs
                                                                                        {
                                                                                            Code = false,
                                                                                            Name = "string",
                                                                                            Value = "string",
                                                                                        },
                                                                                    },
                                                                                },
                                                                                Recurse = false,
                                                                            },
                                                                            Helm = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmArgs
                                                                            {
                                                                                FileParameters = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameterArgs
                                                                                    {
                                                                                        Name = "string",
                                                                                        Path = "string",
                                                                                    },
                                                                                },
                                                                                IgnoreMissingValueFiles = false,
                                                                                Parameters = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameterArgs
                                                                                    {
                                                                                        ForceString = false,
                                                                                        Name = "string",
                                                                                        Value = "string",
                                                                                    },
                                                                                },
                                                                                PassCredentials = false,
                                                                                ReleaseName = "string",
                                                                                SkipCrds = false,
                                                                                ValueFiles = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                                Values = "string",
                                                                                Version = "string",
                                                                            },
                                                                            Kustomize = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizeArgs
                                                                            {
                                                                                CommonAnnotations = 
                                                                                {
                                                                                    { "string", "string" },
                                                                                },
                                                                                CommonLabels = 
                                                                                {
                                                                                    { "string", "string" },
                                                                                },
                                                                                Images = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                                NamePrefix = "string",
                                                                                NameSuffix = "string",
                                                                                Patches = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchArgs
                                                                                    {
                                                                                        Target = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTargetArgs
                                                                                        {
                                                                                            AnnotationSelector = "string",
                                                                                            Group = "string",
                                                                                            Kind = "string",
                                                                                            LabelSelector = "string",
                                                                                            Name = "string",
                                                                                            Namespace = "string",
                                                                                            Version = "string",
                                                                                        },
                                                                                        Options = 
                                                                                        {
                                                                                            { "string", false },
                                                                                        },
                                                                                        Patch = "string",
                                                                                        Path = "string",
                                                                                    },
                                                                                },
                                                                                Version = "string",
                                                                            },
                                                                            Path = "string",
                                                                            Plugin = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourcePluginArgs
                                                                            {
                                                                                Envs = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnvArgs
                                                                                    {
                                                                                        Name = "string",
                                                                                        Value = "string",
                                                                                    },
                                                                                },
                                                                                Name = "string",
                                                                            },
                                                                            Ref = "string",
                                                                            RepoUrl = "string",
                                                                            TargetRevision = "string",
                                                                        },
                                                                    },
                                                                    SyncPolicy = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyArgs
                                                                    {
                                                                        Automated = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomatedArgs
                                                                        {
                                                                            AllowEmpty = false,
                                                                            Prune = false,
                                                                            SelfHeal = false,
                                                                        },
                                                                        ManagedNamespaceMetadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadataArgs
                                                                        {
                                                                            Annotations = 
                                                                            {
                                                                                { "string", "string" },
                                                                            },
                                                                            Labels = 
                                                                            {
                                                                                { "string", "string" },
                                                                            },
                                                                        },
                                                                        Retry = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryArgs
                                                                        {
                                                                            Backoff = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoffArgs
                                                                            {
                                                                                Duration = "string",
                                                                                Factor = "string",
                                                                                MaxDuration = "string",
                                                                            },
                                                                            Limit = "string",
                                                                        },
                                                                        SyncOptions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                            Values = 
                                                            {
                                                                { "string", "string" },
                                                            },
                                                        },
                                                    },
                                                    Clusters = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterArgs
                                                        {
                                                            Enabled = false,
                                                            Selector = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterSelectorArgs
                                                            {
                                                                MatchExpressions = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterSelectorMatchExpressionArgs
                                                                    {
                                                                        Key = "string",
                                                                        Operator = "string",
                                                                        Values = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                                MatchLabels = 
                                                                {
                                                                    { "string", "string" },
                                                                },
                                                            },
                                                            Template = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateArgs
                                                            {
                                                                Metadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateMetadataArgs
                                                                {
                                                                    Annotations = 
                                                                    {
                                                                        { "string", "string" },
                                                                    },
                                                                    Finalizers = new[]
                                                                    {
                                                                        "string",
                                                                    },
                                                                    Labels = 
                                                                    {
                                                                        { "string", "string" },
                                                                    },
                                                                    Name = "string",
                                                                    Namespace = "string",
                                                                },
                                                                Spec = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecArgs
                                                                {
                                                                    Destination = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecDestinationArgs
                                                                    {
                                                                        Name = "string",
                                                                        Namespace = "string",
                                                                        Server = "string",
                                                                    },
                                                                    IgnoreDifferences = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecIgnoreDifferenceArgs
                                                                        {
                                                                            Group = "string",
                                                                            JqPathExpressions = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            JsonPointers = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            Kind = "string",
                                                                            ManagedFieldsManagers = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            Name = "string",
                                                                            Namespace = "string",
                                                                        },
                                                                    },
                                                                    Infos = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecInfoArgs
                                                                        {
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                    Project = "string",
                                                                    RevisionHistoryLimit = 0,
                                                                    Sources = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceArgs
                                                                        {
                                                                            Chart = "string",
                                                                            Directory = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryArgs
                                                                            {
                                                                                Exclude = "string",
                                                                                Include = "string",
                                                                                Jsonnet = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnetArgs
                                                                                {
                                                                                    ExtVars = new[]
                                                                                    {
                                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnetExtVarArgs
                                                                                        {
                                                                                            Code = false,
                                                                                            Name = "string",
                                                                                            Value = "string",
                                                                                        },
                                                                                    },
                                                                                    Libs = new[]
                                                                                    {
                                                                                        "string",
                                                                                    },
                                                                                    Tlas = new[]
                                                                                    {
                                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnetTlaArgs
                                                                                        {
                                                                                            Code = false,
                                                                                            Name = "string",
                                                                                            Value = "string",
                                                                                        },
                                                                                    },
                                                                                },
                                                                                Recurse = false,
                                                                            },
                                                                            Helm = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceHelmArgs
                                                                            {
                                                                                FileParameters = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceHelmFileParameterArgs
                                                                                    {
                                                                                        Name = "string",
                                                                                        Path = "string",
                                                                                    },
                                                                                },
                                                                                IgnoreMissingValueFiles = false,
                                                                                Parameters = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceHelmParameterArgs
                                                                                    {
                                                                                        ForceString = false,
                                                                                        Name = "string",
                                                                                        Value = "string",
                                                                                    },
                                                                                },
                                                                                PassCredentials = false,
                                                                                ReleaseName = "string",
                                                                                SkipCrds = false,
                                                                                ValueFiles = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                                Values = "string",
                                                                                Version = "string",
                                                                            },
                                                                            Kustomize = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizeArgs
                                                                            {
                                                                                CommonAnnotations = 
                                                                                {
                                                                                    { "string", "string" },
                                                                                },
                                                                                CommonLabels = 
                                                                                {
                                                                                    { "string", "string" },
                                                                                },
                                                                                Images = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                                NamePrefix = "string",
                                                                                NameSuffix = "string",
                                                                                Patches = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizePatchArgs
                                                                                    {
                                                                                        Target = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizePatchTargetArgs
                                                                                        {
                                                                                            AnnotationSelector = "string",
                                                                                            Group = "string",
                                                                                            Kind = "string",
                                                                                            LabelSelector = "string",
                                                                                            Name = "string",
                                                                                            Namespace = "string",
                                                                                            Version = "string",
                                                                                        },
                                                                                        Options = 
                                                                                        {
                                                                                            { "string", false },
                                                                                        },
                                                                                        Patch = "string",
                                                                                        Path = "string",
                                                                                    },
                                                                                },
                                                                                Version = "string",
                                                                            },
                                                                            Path = "string",
                                                                            Plugin = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourcePluginArgs
                                                                            {
                                                                                Envs = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourcePluginEnvArgs
                                                                                    {
                                                                                        Name = "string",
                                                                                        Value = "string",
                                                                                    },
                                                                                },
                                                                                Name = "string",
                                                                            },
                                                                            Ref = "string",
                                                                            RepoUrl = "string",
                                                                            TargetRevision = "string",
                                                                        },
                                                                    },
                                                                    SyncPolicy = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyArgs
                                                                    {
                                                                        Automated = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyAutomatedArgs
                                                                        {
                                                                            AllowEmpty = false,
                                                                            Prune = false,
                                                                            SelfHeal = false,
                                                                        },
                                                                        ManagedNamespaceMetadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadataArgs
                                                                        {
                                                                            Annotations = 
                                                                            {
                                                                                { "string", "string" },
                                                                            },
                                                                            Labels = 
                                                                            {
                                                                                { "string", "string" },
                                                                            },
                                                                        },
                                                                        Retry = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyRetryArgs
                                                                        {
                                                                            Backoff = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyRetryBackoffArgs
                                                                            {
                                                                                Duration = "string",
                                                                                Factor = "string",
                                                                                MaxDuration = "string",
                                                                            },
                                                                            Limit = "string",
                                                                        },
                                                                        SyncOptions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                            Values = 
                                                            {
                                                                { "string", "string" },
                                                            },
                                                        },
                                                    },
                                                    Gits = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitArgs
                                                        {
                                                            RepoUrl = "string",
                                                            Directories = new[]
                                                            {
                                                                new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitDirectoryArgs
                                                                {
                                                                    Path = "string",
                                                                    Exclude = false,
                                                                },
                                                            },
                                                            Files = new[]
                                                            {
                                                                new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitFileArgs
                                                                {
                                                                    Path = "string",
                                                                },
                                                            },
                                                            PathParamPrefix = "string",
                                                            Revision = "string",
                                                            Template = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateArgs
                                                            {
                                                                Metadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateMetadataArgs
                                                                {
                                                                    Annotations = 
                                                                    {
                                                                        { "string", "string" },
                                                                    },
                                                                    Finalizers = new[]
                                                                    {
                                                                        "string",
                                                                    },
                                                                    Labels = 
                                                                    {
                                                                        { "string", "string" },
                                                                    },
                                                                    Name = "string",
                                                                    Namespace = "string",
                                                                },
                                                                Spec = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecArgs
                                                                {
                                                                    Destination = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecDestinationArgs
                                                                    {
                                                                        Name = "string",
                                                                        Namespace = "string",
                                                                        Server = "string",
                                                                    },
                                                                    IgnoreDifferences = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecIgnoreDifferenceArgs
                                                                        {
                                                                            Group = "string",
                                                                            JqPathExpressions = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            JsonPointers = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            Kind = "string",
                                                                            ManagedFieldsManagers = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            Name = "string",
                                                                            Namespace = "string",
                                                                        },
                                                                    },
                                                                    Infos = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecInfoArgs
                                                                        {
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                    Project = "string",
                                                                    RevisionHistoryLimit = 0,
                                                                    Sources = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceArgs
                                                                        {
                                                                            Chart = "string",
                                                                            Directory = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryArgs
                                                                            {
                                                                                Exclude = "string",
                                                                                Include = "string",
                                                                                Jsonnet = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnetArgs
                                                                                {
                                                                                    ExtVars = new[]
                                                                                    {
                                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnetExtVarArgs
                                                                                        {
                                                                                            Code = false,
                                                                                            Name = "string",
                                                                                            Value = "string",
                                                                                        },
                                                                                    },
                                                                                    Libs = new[]
                                                                                    {
                                                                                        "string",
                                                                                    },
                                                                                    Tlas = new[]
                                                                                    {
                                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnetTlaArgs
                                                                                        {
                                                                                            Code = false,
                                                                                            Name = "string",
                                                                                            Value = "string",
                                                                                        },
                                                                                    },
                                                                                },
                                                                                Recurse = false,
                                                                            },
                                                                            Helm = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceHelmArgs
                                                                            {
                                                                                FileParameters = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceHelmFileParameterArgs
                                                                                    {
                                                                                        Name = "string",
                                                                                        Path = "string",
                                                                                    },
                                                                                },
                                                                                IgnoreMissingValueFiles = false,
                                                                                Parameters = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceHelmParameterArgs
                                                                                    {
                                                                                        ForceString = false,
                                                                                        Name = "string",
                                                                                        Value = "string",
                                                                                    },
                                                                                },
                                                                                PassCredentials = false,
                                                                                ReleaseName = "string",
                                                                                SkipCrds = false,
                                                                                ValueFiles = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                                Values = "string",
                                                                                Version = "string",
                                                                            },
                                                                            Kustomize = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceKustomizeArgs
                                                                            {
                                                                                CommonAnnotations = 
                                                                                {
                                                                                    { "string", "string" },
                                                                                },
                                                                                CommonLabels = 
                                                                                {
                                                                                    { "string", "string" },
                                                                                },
                                                                                Images = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                                NamePrefix = "string",
                                                                                NameSuffix = "string",
                                                                                Patches = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceKustomizePatchArgs
                                                                                    {
                                                                                        Target = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceKustomizePatchTargetArgs
                                                                                        {
                                                                                            AnnotationSelector = "string",
                                                                                            Group = "string",
                                                                                            Kind = "string",
                                                                                            LabelSelector = "string",
                                                                                            Name = "string",
                                                                                            Namespace = "string",
                                                                                            Version = "string",
                                                                                        },
                                                                                        Options = 
                                                                                        {
                                                                                            { "string", false },
                                                                                        },
                                                                                        Patch = "string",
                                                                                        Path = "string",
                                                                                    },
                                                                                },
                                                                                Version = "string",
                                                                            },
                                                                            Path = "string",
                                                                            Plugin = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourcePluginArgs
                                                                            {
                                                                                Envs = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourcePluginEnvArgs
                                                                                    {
                                                                                        Name = "string",
                                                                                        Value = "string",
                                                                                    },
                                                                                },
                                                                                Name = "string",
                                                                            },
                                                                            Ref = "string",
                                                                            RepoUrl = "string",
                                                                            TargetRevision = "string",
                                                                        },
                                                                    },
                                                                    SyncPolicy = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicyArgs
                                                                    {
                                                                        Automated = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicyAutomatedArgs
                                                                        {
                                                                            AllowEmpty = false,
                                                                            Prune = false,
                                                                            SelfHeal = false,
                                                                        },
                                                                        ManagedNamespaceMetadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadataArgs
                                                                        {
                                                                            Annotations = 
                                                                            {
                                                                                { "string", "string" },
                                                                            },
                                                                            Labels = 
                                                                            {
                                                                                { "string", "string" },
                                                                            },
                                                                        },
                                                                        Retry = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicyRetryArgs
                                                                        {
                                                                            Backoff = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicyRetryBackoffArgs
                                                                            {
                                                                                Duration = "string",
                                                                                Factor = "string",
                                                                                MaxDuration = "string",
                                                                            },
                                                                            Limit = "string",
                                                                        },
                                                                        SyncOptions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                            Values = 
                                                            {
                                                                { "string", "string" },
                                                            },
                                                        },
                                                    },
                                                    Lists = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListArgs
                                                        {
                                                            Elements = new[]
                                                            {
                                                                
                                                                {
                                                                    { "string", "string" },
                                                                },
                                                            },
                                                            Template = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateArgs
                                                            {
                                                                Metadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateMetadataArgs
                                                                {
                                                                    Annotations = 
                                                                    {
                                                                        { "string", "string" },
                                                                    },
                                                                    Finalizers = new[]
                                                                    {
                                                                        "string",
                                                                    },
                                                                    Labels = 
                                                                    {
                                                                        { "string", "string" },
                                                                    },
                                                                    Name = "string",
                                                                    Namespace = "string",
                                                                },
                                                                Spec = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecArgs
                                                                {
                                                                    Destination = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecDestinationArgs
                                                                    {
                                                                        Name = "string",
                                                                        Namespace = "string",
                                                                        Server = "string",
                                                                    },
                                                                    IgnoreDifferences = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecIgnoreDifferenceArgs
                                                                        {
                                                                            Group = "string",
                                                                            JqPathExpressions = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            JsonPointers = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            Kind = "string",
                                                                            ManagedFieldsManagers = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            Name = "string",
                                                                            Namespace = "string",
                                                                        },
                                                                    },
                                                                    Infos = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecInfoArgs
                                                                        {
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                    Project = "string",
                                                                    RevisionHistoryLimit = 0,
                                                                    Sources = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceArgs
                                                                        {
                                                                            Chart = "string",
                                                                            Directory = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceDirectoryArgs
                                                                            {
                                                                                Exclude = "string",
                                                                                Include = "string",
                                                                                Jsonnet = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnetArgs
                                                                                {
                                                                                    ExtVars = new[]
                                                                                    {
                                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnetExtVarArgs
                                                                                        {
                                                                                            Code = false,
                                                                                            Name = "string",
                                                                                            Value = "string",
                                                                                        },
                                                                                    },
                                                                                    Libs = new[]
                                                                                    {
                                                                                        "string",
                                                                                    },
                                                                                    Tlas = new[]
                                                                                    {
                                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnetTlaArgs
                                                                                        {
                                                                                            Code = false,
                                                                                            Name = "string",
                                                                                            Value = "string",
                                                                                        },
                                                                                    },
                                                                                },
                                                                                Recurse = false,
                                                                            },
                                                                            Helm = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceHelmArgs
                                                                            {
                                                                                FileParameters = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceHelmFileParameterArgs
                                                                                    {
                                                                                        Name = "string",
                                                                                        Path = "string",
                                                                                    },
                                                                                },
                                                                                IgnoreMissingValueFiles = false,
                                                                                Parameters = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceHelmParameterArgs
                                                                                    {
                                                                                        ForceString = false,
                                                                                        Name = "string",
                                                                                        Value = "string",
                                                                                    },
                                                                                },
                                                                                PassCredentials = false,
                                                                                ReleaseName = "string",
                                                                                SkipCrds = false,
                                                                                ValueFiles = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                                Values = "string",
                                                                                Version = "string",
                                                                            },
                                                                            Kustomize = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceKustomizeArgs
                                                                            {
                                                                                CommonAnnotations = 
                                                                                {
                                                                                    { "string", "string" },
                                                                                },
                                                                                CommonLabels = 
                                                                                {
                                                                                    { "string", "string" },
                                                                                },
                                                                                Images = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                                NamePrefix = "string",
                                                                                NameSuffix = "string",
                                                                                Patches = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceKustomizePatchArgs
                                                                                    {
                                                                                        Target = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceKustomizePatchTargetArgs
                                                                                        {
                                                                                            AnnotationSelector = "string",
                                                                                            Group = "string",
                                                                                            Kind = "string",
                                                                                            LabelSelector = "string",
                                                                                            Name = "string",
                                                                                            Namespace = "string",
                                                                                            Version = "string",
                                                                                        },
                                                                                        Options = 
                                                                                        {
                                                                                            { "string", false },
                                                                                        },
                                                                                        Patch = "string",
                                                                                        Path = "string",
                                                                                    },
                                                                                },
                                                                                Version = "string",
                                                                            },
                                                                            Path = "string",
                                                                            Plugin = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourcePluginArgs
                                                                            {
                                                                                Envs = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourcePluginEnvArgs
                                                                                    {
                                                                                        Name = "string",
                                                                                        Value = "string",
                                                                                    },
                                                                                },
                                                                                Name = "string",
                                                                            },
                                                                            Ref = "string",
                                                                            RepoUrl = "string",
                                                                            TargetRevision = "string",
                                                                        },
                                                                    },
                                                                    SyncPolicy = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicyArgs
                                                                    {
                                                                        Automated = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicyAutomatedArgs
                                                                        {
                                                                            AllowEmpty = false,
                                                                            Prune = false,
                                                                            SelfHeal = false,
                                                                        },
                                                                        ManagedNamespaceMetadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadataArgs
                                                                        {
                                                                            Annotations = 
                                                                            {
                                                                                { "string", "string" },
                                                                            },
                                                                            Labels = 
                                                                            {
                                                                                { "string", "string" },
                                                                            },
                                                                        },
                                                                        Retry = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicyRetryArgs
                                                                        {
                                                                            Backoff = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicyRetryBackoffArgs
                                                                            {
                                                                                Duration = "string",
                                                                                Factor = "string",
                                                                                MaxDuration = "string",
                                                                            },
                                                                            Limit = "string",
                                                                        },
                                                                        SyncOptions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                        },
                                                    },
                                                    PullRequests = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestArgs
                                                        {
                                                            BitbucketServer = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestBitbucketServerArgs
                                                            {
                                                                Api = "string",
                                                                Project = "string",
                                                                Repo = "string",
                                                                BasicAuth = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestBitbucketServerBasicAuthArgs
                                                                {
                                                                    PasswordRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestBitbucketServerBasicAuthPasswordRefArgs
                                                                    {
                                                                        Key = "string",
                                                                        SecretName = "string",
                                                                    },
                                                                    Username = "string",
                                                                },
                                                            },
                                                            Filters = new[]
                                                            {
                                                                new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestFilterArgs
                                                                {
                                                                    BranchMatch = "string",
                                                                },
                                                            },
                                                            Gitea = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGiteaArgs
                                                            {
                                                                Api = "string",
                                                                Owner = "string",
                                                                Repo = "string",
                                                                Insecure = false,
                                                                TokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGiteaTokenRefArgs
                                                                {
                                                                    Key = "string",
                                                                    SecretName = "string",
                                                                },
                                                            },
                                                            Github = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGithubArgs
                                                            {
                                                                Owner = "string",
                                                                Repo = "string",
                                                                Api = "string",
                                                                AppSecretName = "string",
                                                                Labels = new[]
                                                                {
                                                                    "string",
                                                                },
                                                                TokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGithubTokenRefArgs
                                                                {
                                                                    Key = "string",
                                                                    SecretName = "string",
                                                                },
                                                            },
                                                            Gitlab = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGitlabArgs
                                                            {
                                                                Project = "string",
                                                                Api = "string",
                                                                Labels = new[]
                                                                {
                                                                    "string",
                                                                },
                                                                PullRequestState = "string",
                                                                TokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGitlabTokenRefArgs
                                                                {
                                                                    Key = "string",
                                                                    SecretName = "string",
                                                                },
                                                            },
                                                            RequeueAfterSeconds = "string",
                                                            Template = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateArgs
                                                            {
                                                                Metadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateMetadataArgs
                                                                {
                                                                    Annotations = 
                                                                    {
                                                                        { "string", "string" },
                                                                    },
                                                                    Finalizers = new[]
                                                                    {
                                                                        "string",
                                                                    },
                                                                    Labels = 
                                                                    {
                                                                        { "string", "string" },
                                                                    },
                                                                    Name = "string",
                                                                    Namespace = "string",
                                                                },
                                                                Spec = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecArgs
                                                                {
                                                                    Destination = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecDestinationArgs
                                                                    {
                                                                        Name = "string",
                                                                        Namespace = "string",
                                                                        Server = "string",
                                                                    },
                                                                    IgnoreDifferences = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecIgnoreDifferenceArgs
                                                                        {
                                                                            Group = "string",
                                                                            JqPathExpressions = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            JsonPointers = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            Kind = "string",
                                                                            ManagedFieldsManagers = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            Name = "string",
                                                                            Namespace = "string",
                                                                        },
                                                                    },
                                                                    Infos = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecInfoArgs
                                                                        {
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                    Project = "string",
                                                                    RevisionHistoryLimit = 0,
                                                                    Sources = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceArgs
                                                                        {
                                                                            Chart = "string",
                                                                            Directory = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryArgs
                                                                            {
                                                                                Exclude = "string",
                                                                                Include = "string",
                                                                                Jsonnet = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetArgs
                                                                                {
                                                                                    ExtVars = new[]
                                                                                    {
                                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetExtVarArgs
                                                                                        {
                                                                                            Code = false,
                                                                                            Name = "string",
                                                                                            Value = "string",
                                                                                        },
                                                                                    },
                                                                                    Libs = new[]
                                                                                    {
                                                                                        "string",
                                                                                    },
                                                                                    Tlas = new[]
                                                                                    {
                                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetTlaArgs
                                                                                        {
                                                                                            Code = false,
                                                                                            Name = "string",
                                                                                            Value = "string",
                                                                                        },
                                                                                    },
                                                                                },
                                                                                Recurse = false,
                                                                            },
                                                                            Helm = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmArgs
                                                                            {
                                                                                FileParameters = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmFileParameterArgs
                                                                                    {
                                                                                        Name = "string",
                                                                                        Path = "string",
                                                                                    },
                                                                                },
                                                                                IgnoreMissingValueFiles = false,
                                                                                Parameters = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmParameterArgs
                                                                                    {
                                                                                        ForceString = false,
                                                                                        Name = "string",
                                                                                        Value = "string",
                                                                                    },
                                                                                },
                                                                                PassCredentials = false,
                                                                                ReleaseName = "string",
                                                                                SkipCrds = false,
                                                                                ValueFiles = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                                Values = "string",
                                                                                Version = "string",
                                                                            },
                                                                            Kustomize = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomizeArgs
                                                                            {
                                                                                CommonAnnotations = 
                                                                                {
                                                                                    { "string", "string" },
                                                                                },
                                                                                CommonLabels = 
                                                                                {
                                                                                    { "string", "string" },
                                                                                },
                                                                                Images = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                                NamePrefix = "string",
                                                                                NameSuffix = "string",
                                                                                Patches = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomizePatchArgs
                                                                                    {
                                                                                        Target = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomizePatchTargetArgs
                                                                                        {
                                                                                            AnnotationSelector = "string",
                                                                                            Group = "string",
                                                                                            Kind = "string",
                                                                                            LabelSelector = "string",
                                                                                            Name = "string",
                                                                                            Namespace = "string",
                                                                                            Version = "string",
                                                                                        },
                                                                                        Options = 
                                                                                        {
                                                                                            { "string", false },
                                                                                        },
                                                                                        Patch = "string",
                                                                                        Path = "string",
                                                                                    },
                                                                                },
                                                                                Version = "string",
                                                                            },
                                                                            Path = "string",
                                                                            Plugin = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourcePluginArgs
                                                                            {
                                                                                Envs = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourcePluginEnvArgs
                                                                                    {
                                                                                        Name = "string",
                                                                                        Value = "string",
                                                                                    },
                                                                                },
                                                                                Name = "string",
                                                                            },
                                                                            Ref = "string",
                                                                            RepoUrl = "string",
                                                                            TargetRevision = "string",
                                                                        },
                                                                    },
                                                                    SyncPolicy = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyArgs
                                                                    {
                                                                        Automated = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyAutomatedArgs
                                                                        {
                                                                            AllowEmpty = false,
                                                                            Prune = false,
                                                                            SelfHeal = false,
                                                                        },
                                                                        ManagedNamespaceMetadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyManagedNamespaceMetadataArgs
                                                                        {
                                                                            Annotations = 
                                                                            {
                                                                                { "string", "string" },
                                                                            },
                                                                            Labels = 
                                                                            {
                                                                                { "string", "string" },
                                                                            },
                                                                        },
                                                                        Retry = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyRetryArgs
                                                                        {
                                                                            Backoff = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyRetryBackoffArgs
                                                                            {
                                                                                Duration = "string",
                                                                                Factor = "string",
                                                                                MaxDuration = "string",
                                                                            },
                                                                            Limit = "string",
                                                                        },
                                                                        SyncOptions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                        },
                                                    },
                                                    ScmProviders = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderArgs
                                                        {
                                                            AzureDevops = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderAzureDevopsArgs
                                                            {
                                                                Organization = "string",
                                                                TeamProject = "string",
                                                                AccessTokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderAzureDevopsAccessTokenRefArgs
                                                                {
                                                                    Key = "string",
                                                                    SecretName = "string",
                                                                },
                                                                AllBranches = false,
                                                                Api = "string",
                                                            },
                                                            BitbucketCloud = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderBitbucketCloudArgs
                                                            {
                                                                Owner = "string",
                                                                User = "string",
                                                                AllBranches = false,
                                                                AppPasswordRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderBitbucketCloudAppPasswordRefArgs
                                                                {
                                                                    Key = "string",
                                                                    SecretName = "string",
                                                                },
                                                            },
                                                            BitbucketServer = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderBitbucketServerArgs
                                                            {
                                                                Api = "string",
                                                                Project = "string",
                                                                AllBranches = false,
                                                                BasicAuth = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderBitbucketServerBasicAuthArgs
                                                                {
                                                                    PasswordRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderBitbucketServerBasicAuthPasswordRefArgs
                                                                    {
                                                                        Key = "string",
                                                                        SecretName = "string",
                                                                    },
                                                                    Username = "string",
                                                                },
                                                            },
                                                            CloneProtocol = "string",
                                                            Filters = new[]
                                                            {
                                                                new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderFilterArgs
                                                                {
                                                                    BranchMatch = "string",
                                                                    LabelMatch = "string",
                                                                    PathsDoNotExists = new[]
                                                                    {
                                                                        "string",
                                                                    },
                                                                    PathsExists = new[]
                                                                    {
                                                                        "string",
                                                                    },
                                                                    RepositoryMatch = "string",
                                                                },
                                                            },
                                                            Gitea = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGiteaArgs
                                                            {
                                                                Owner = "string",
                                                                AllBranches = false,
                                                                Api = "string",
                                                                Insecure = false,
                                                                TokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGiteaTokenRefArgs
                                                                {
                                                                    Key = "string",
                                                                    SecretName = "string",
                                                                },
                                                            },
                                                            Github = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGithubArgs
                                                            {
                                                                Organization = "string",
                                                                AllBranches = false,
                                                                Api = "string",
                                                                AppSecretName = "string",
                                                                TokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGithubTokenRefArgs
                                                                {
                                                                    Key = "string",
                                                                    SecretName = "string",
                                                                },
                                                            },
                                                            Gitlab = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGitlabArgs
                                                            {
                                                                Group = "string",
                                                                AllBranches = false,
                                                                Api = "string",
                                                                IncludeSubgroups = false,
                                                                TokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGitlabTokenRefArgs
                                                                {
                                                                    Key = "string",
                                                                    SecretName = "string",
                                                                },
                                                            },
                                                            RequeueAfterSeconds = "string",
                                                            Template = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateArgs
                                                            {
                                                                Metadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateMetadataArgs
                                                                {
                                                                    Annotations = 
                                                                    {
                                                                        { "string", "string" },
                                                                    },
                                                                    Finalizers = new[]
                                                                    {
                                                                        "string",
                                                                    },
                                                                    Labels = 
                                                                    {
                                                                        { "string", "string" },
                                                                    },
                                                                    Name = "string",
                                                                    Namespace = "string",
                                                                },
                                                                Spec = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecArgs
                                                                {
                                                                    Destination = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecDestinationArgs
                                                                    {
                                                                        Name = "string",
                                                                        Namespace = "string",
                                                                        Server = "string",
                                                                    },
                                                                    IgnoreDifferences = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecIgnoreDifferenceArgs
                                                                        {
                                                                            Group = "string",
                                                                            JqPathExpressions = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            JsonPointers = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            Kind = "string",
                                                                            ManagedFieldsManagers = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            Name = "string",
                                                                            Namespace = "string",
                                                                        },
                                                                    },
                                                                    Infos = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecInfoArgs
                                                                        {
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                    Project = "string",
                                                                    RevisionHistoryLimit = 0,
                                                                    Sources = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceArgs
                                                                        {
                                                                            Chart = "string",
                                                                            Directory = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryArgs
                                                                            {
                                                                                Exclude = "string",
                                                                                Include = "string",
                                                                                Jsonnet = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetArgs
                                                                                {
                                                                                    ExtVars = new[]
                                                                                    {
                                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetExtVarArgs
                                                                                        {
                                                                                            Code = false,
                                                                                            Name = "string",
                                                                                            Value = "string",
                                                                                        },
                                                                                    },
                                                                                    Libs = new[]
                                                                                    {
                                                                                        "string",
                                                                                    },
                                                                                    Tlas = new[]
                                                                                    {
                                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetTlaArgs
                                                                                        {
                                                                                            Code = false,
                                                                                            Name = "string",
                                                                                            Value = "string",
                                                                                        },
                                                                                    },
                                                                                },
                                                                                Recurse = false,
                                                                            },
                                                                            Helm = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmArgs
                                                                            {
                                                                                FileParameters = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmFileParameterArgs
                                                                                    {
                                                                                        Name = "string",
                                                                                        Path = "string",
                                                                                    },
                                                                                },
                                                                                IgnoreMissingValueFiles = false,
                                                                                Parameters = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmParameterArgs
                                                                                    {
                                                                                        ForceString = false,
                                                                                        Name = "string",
                                                                                        Value = "string",
                                                                                    },
                                                                                },
                                                                                PassCredentials = false,
                                                                                ReleaseName = "string",
                                                                                SkipCrds = false,
                                                                                ValueFiles = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                                Values = "string",
                                                                                Version = "string",
                                                                            },
                                                                            Kustomize = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomizeArgs
                                                                            {
                                                                                CommonAnnotations = 
                                                                                {
                                                                                    { "string", "string" },
                                                                                },
                                                                                CommonLabels = 
                                                                                {
                                                                                    { "string", "string" },
                                                                                },
                                                                                Images = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                                NamePrefix = "string",
                                                                                NameSuffix = "string",
                                                                                Patches = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomizePatchArgs
                                                                                    {
                                                                                        Target = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomizePatchTargetArgs
                                                                                        {
                                                                                            AnnotationSelector = "string",
                                                                                            Group = "string",
                                                                                            Kind = "string",
                                                                                            LabelSelector = "string",
                                                                                            Name = "string",
                                                                                            Namespace = "string",
                                                                                            Version = "string",
                                                                                        },
                                                                                        Options = 
                                                                                        {
                                                                                            { "string", false },
                                                                                        },
                                                                                        Patch = "string",
                                                                                        Path = "string",
                                                                                    },
                                                                                },
                                                                                Version = "string",
                                                                            },
                                                                            Path = "string",
                                                                            Plugin = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourcePluginArgs
                                                                            {
                                                                                Envs = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourcePluginEnvArgs
                                                                                    {
                                                                                        Name = "string",
                                                                                        Value = "string",
                                                                                    },
                                                                                },
                                                                                Name = "string",
                                                                            },
                                                                            Ref = "string",
                                                                            RepoUrl = "string",
                                                                            TargetRevision = "string",
                                                                        },
                                                                    },
                                                                    SyncPolicy = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyArgs
                                                                    {
                                                                        Automated = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyAutomatedArgs
                                                                        {
                                                                            AllowEmpty = false,
                                                                            Prune = false,
                                                                            SelfHeal = false,
                                                                        },
                                                                        ManagedNamespaceMetadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyManagedNamespaceMetadataArgs
                                                                        {
                                                                            Annotations = 
                                                                            {
                                                                                { "string", "string" },
                                                                            },
                                                                            Labels = 
                                                                            {
                                                                                { "string", "string" },
                                                                            },
                                                                        },
                                                                        Retry = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyRetryArgs
                                                                        {
                                                                            Backoff = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyRetryBackoffArgs
                                                                            {
                                                                                Duration = "string",
                                                                                Factor = "string",
                                                                                MaxDuration = "string",
                                                                            },
                                                                            Limit = "string",
                                                                        },
                                                                        SyncOptions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                        },
                                                    },
                                                    Selector = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorSelectorArgs
                                                    {
                                                        MatchExpressions = new[]
                                                        {
                                                            new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorSelectorMatchExpressionArgs
                                                            {
                                                                Key = "string",
                                                                Operator = "string",
                                                                Values = new[]
                                                                {
                                                                    "string",
                                                                },
                                                            },
                                                        },
                                                        MatchLabels = 
                                                        {
                                                            { "string", "string" },
                                                        },
                                                    },
                                                },
                                            },
                                            MergeKeys = new[]
                                            {
                                                "string",
                                            },
                                            Template = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateArgs
                                            {
                                                Metadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateMetadataArgs
                                                {
                                                    Annotations = 
                                                    {
                                                        { "string", "string" },
                                                    },
                                                    Finalizers = new[]
                                                    {
                                                        "string",
                                                    },
                                                    Labels = 
                                                    {
                                                        { "string", "string" },
                                                    },
                                                    Name = "string",
                                                    Namespace = "string",
                                                },
                                                Spec = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecArgs
                                                {
                                                    Destination = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecDestinationArgs
                                                    {
                                                        Name = "string",
                                                        Namespace = "string",
                                                        Server = "string",
                                                    },
                                                    IgnoreDifferences = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecIgnoreDifferenceArgs
                                                        {
                                                            Group = "string",
                                                            JqPathExpressions = new[]
                                                            {
                                                                "string",
                                                            },
                                                            JsonPointers = new[]
                                                            {
                                                                "string",
                                                            },
                                                            Kind = "string",
                                                            ManagedFieldsManagers = new[]
                                                            {
                                                                "string",
                                                            },
                                                            Name = "string",
                                                            Namespace = "string",
                                                        },
                                                    },
                                                    Infos = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecInfoArgs
                                                        {
                                                            Name = "string",
                                                            Value = "string",
                                                        },
                                                    },
                                                    Project = "string",
                                                    RevisionHistoryLimit = 0,
                                                    Sources = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceArgs
                                                        {
                                                            Chart = "string",
                                                            Directory = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceDirectoryArgs
                                                            {
                                                                Exclude = "string",
                                                                Include = "string",
                                                                Jsonnet = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceDirectoryJsonnetArgs
                                                                {
                                                                    ExtVars = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceDirectoryJsonnetExtVarArgs
                                                                        {
                                                                            Code = false,
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                    Libs = new[]
                                                                    {
                                                                        "string",
                                                                    },
                                                                    Tlas = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceDirectoryJsonnetTlaArgs
                                                                        {
                                                                            Code = false,
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                },
                                                                Recurse = false,
                                                            },
                                                            Helm = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceHelmArgs
                                                            {
                                                                FileParameters = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceHelmFileParameterArgs
                                                                    {
                                                                        Name = "string",
                                                                        Path = "string",
                                                                    },
                                                                },
                                                                IgnoreMissingValueFiles = false,
                                                                Parameters = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceHelmParameterArgs
                                                                    {
                                                                        ForceString = false,
                                                                        Name = "string",
                                                                        Value = "string",
                                                                    },
                                                                },
                                                                PassCredentials = false,
                                                                ReleaseName = "string",
                                                                SkipCrds = false,
                                                                ValueFiles = new[]
                                                                {
                                                                    "string",
                                                                },
                                                                Values = "string",
                                                                Version = "string",
                                                            },
                                                            Kustomize = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceKustomizeArgs
                                                            {
                                                                CommonAnnotations = 
                                                                {
                                                                    { "string", "string" },
                                                                },
                                                                CommonLabels = 
                                                                {
                                                                    { "string", "string" },
                                                                },
                                                                Images = new[]
                                                                {
                                                                    "string",
                                                                },
                                                                NamePrefix = "string",
                                                                NameSuffix = "string",
                                                                Patches = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceKustomizePatchArgs
                                                                    {
                                                                        Target = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceKustomizePatchTargetArgs
                                                                        {
                                                                            AnnotationSelector = "string",
                                                                            Group = "string",
                                                                            Kind = "string",
                                                                            LabelSelector = "string",
                                                                            Name = "string",
                                                                            Namespace = "string",
                                                                            Version = "string",
                                                                        },
                                                                        Options = 
                                                                        {
                                                                            { "string", false },
                                                                        },
                                                                        Patch = "string",
                                                                        Path = "string",
                                                                    },
                                                                },
                                                                Version = "string",
                                                            },
                                                            Path = "string",
                                                            Plugin = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourcePluginArgs
                                                            {
                                                                Envs = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourcePluginEnvArgs
                                                                    {
                                                                        Name = "string",
                                                                        Value = "string",
                                                                    },
                                                                },
                                                                Name = "string",
                                                            },
                                                            Ref = "string",
                                                            RepoUrl = "string",
                                                            TargetRevision = "string",
                                                        },
                                                    },
                                                    SyncPolicy = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicyArgs
                                                    {
                                                        Automated = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicyAutomatedArgs
                                                        {
                                                            AllowEmpty = false,
                                                            Prune = false,
                                                            SelfHeal = false,
                                                        },
                                                        ManagedNamespaceMetadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicyManagedNamespaceMetadataArgs
                                                        {
                                                            Annotations = 
                                                            {
                                                                { "string", "string" },
                                                            },
                                                            Labels = 
                                                            {
                                                                { "string", "string" },
                                                            },
                                                        },
                                                        Retry = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicyRetryArgs
                                                        {
                                                            Backoff = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicyRetryBackoffArgs
                                                            {
                                                                Duration = "string",
                                                                Factor = "string",
                                                                MaxDuration = "string",
                                                            },
                                                            Limit = "string",
                                                        },
                                                        SyncOptions = new[]
                                                        {
                                                            "string",
                                                        },
                                                    },
                                                },
                                            },
                                        },
                                    },
                                    PullRequests = new[]
                                    {
                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestArgs
                                        {
                                            BitbucketServer = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestBitbucketServerArgs
                                            {
                                                Api = "string",
                                                Project = "string",
                                                Repo = "string",
                                                BasicAuth = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestBitbucketServerBasicAuthArgs
                                                {
                                                    PasswordRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestBitbucketServerBasicAuthPasswordRefArgs
                                                    {
                                                        Key = "string",
                                                        SecretName = "string",
                                                    },
                                                    Username = "string",
                                                },
                                            },
                                            Filters = new[]
                                            {
                                                new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestFilterArgs
                                                {
                                                    BranchMatch = "string",
                                                },
                                            },
                                            Gitea = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGiteaArgs
                                            {
                                                Api = "string",
                                                Owner = "string",
                                                Repo = "string",
                                                Insecure = false,
                                                TokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGiteaTokenRefArgs
                                                {
                                                    Key = "string",
                                                    SecretName = "string",
                                                },
                                            },
                                            Github = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGithubArgs
                                            {
                                                Owner = "string",
                                                Repo = "string",
                                                Api = "string",
                                                AppSecretName = "string",
                                                Labels = new[]
                                                {
                                                    "string",
                                                },
                                                TokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGithubTokenRefArgs
                                                {
                                                    Key = "string",
                                                    SecretName = "string",
                                                },
                                            },
                                            Gitlab = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGitlabArgs
                                            {
                                                Project = "string",
                                                Api = "string",
                                                Labels = new[]
                                                {
                                                    "string",
                                                },
                                                PullRequestState = "string",
                                                TokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGitlabTokenRefArgs
                                                {
                                                    Key = "string",
                                                    SecretName = "string",
                                                },
                                            },
                                            RequeueAfterSeconds = "string",
                                            Template = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateArgs
                                            {
                                                Metadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateMetadataArgs
                                                {
                                                    Annotations = 
                                                    {
                                                        { "string", "string" },
                                                    },
                                                    Finalizers = new[]
                                                    {
                                                        "string",
                                                    },
                                                    Labels = 
                                                    {
                                                        { "string", "string" },
                                                    },
                                                    Name = "string",
                                                    Namespace = "string",
                                                },
                                                Spec = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecArgs
                                                {
                                                    Destination = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecDestinationArgs
                                                    {
                                                        Name = "string",
                                                        Namespace = "string",
                                                        Server = "string",
                                                    },
                                                    IgnoreDifferences = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecIgnoreDifferenceArgs
                                                        {
                                                            Group = "string",
                                                            JqPathExpressions = new[]
                                                            {
                                                                "string",
                                                            },
                                                            JsonPointers = new[]
                                                            {
                                                                "string",
                                                            },
                                                            Kind = "string",
                                                            ManagedFieldsManagers = new[]
                                                            {
                                                                "string",
                                                            },
                                                            Name = "string",
                                                            Namespace = "string",
                                                        },
                                                    },
                                                    Infos = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecInfoArgs
                                                        {
                                                            Name = "string",
                                                            Value = "string",
                                                        },
                                                    },
                                                    Project = "string",
                                                    RevisionHistoryLimit = 0,
                                                    Sources = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceArgs
                                                        {
                                                            Chart = "string",
                                                            Directory = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryArgs
                                                            {
                                                                Exclude = "string",
                                                                Include = "string",
                                                                Jsonnet = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetArgs
                                                                {
                                                                    ExtVars = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetExtVarArgs
                                                                        {
                                                                            Code = false,
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                    Libs = new[]
                                                                    {
                                                                        "string",
                                                                    },
                                                                    Tlas = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetTlaArgs
                                                                        {
                                                                            Code = false,
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                },
                                                                Recurse = false,
                                                            },
                                                            Helm = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmArgs
                                                            {
                                                                FileParameters = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmFileParameterArgs
                                                                    {
                                                                        Name = "string",
                                                                        Path = "string",
                                                                    },
                                                                },
                                                                IgnoreMissingValueFiles = false,
                                                                Parameters = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmParameterArgs
                                                                    {
                                                                        ForceString = false,
                                                                        Name = "string",
                                                                        Value = "string",
                                                                    },
                                                                },
                                                                PassCredentials = false,
                                                                ReleaseName = "string",
                                                                SkipCrds = false,
                                                                ValueFiles = new[]
                                                                {
                                                                    "string",
                                                                },
                                                                Values = "string",
                                                                Version = "string",
                                                            },
                                                            Kustomize = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizeArgs
                                                            {
                                                                CommonAnnotations = 
                                                                {
                                                                    { "string", "string" },
                                                                },
                                                                CommonLabels = 
                                                                {
                                                                    { "string", "string" },
                                                                },
                                                                Images = new[]
                                                                {
                                                                    "string",
                                                                },
                                                                NamePrefix = "string",
                                                                NameSuffix = "string",
                                                                Patches = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatchArgs
                                                                    {
                                                                        Target = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatchTargetArgs
                                                                        {
                                                                            AnnotationSelector = "string",
                                                                            Group = "string",
                                                                            Kind = "string",
                                                                            LabelSelector = "string",
                                                                            Name = "string",
                                                                            Namespace = "string",
                                                                            Version = "string",
                                                                        },
                                                                        Options = 
                                                                        {
                                                                            { "string", false },
                                                                        },
                                                                        Patch = "string",
                                                                        Path = "string",
                                                                    },
                                                                },
                                                                Version = "string",
                                                            },
                                                            Path = "string",
                                                            Plugin = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePluginArgs
                                                            {
                                                                Envs = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePluginEnvArgs
                                                                    {
                                                                        Name = "string",
                                                                        Value = "string",
                                                                    },
                                                                },
                                                                Name = "string",
                                                            },
                                                            Ref = "string",
                                                            RepoUrl = "string",
                                                            TargetRevision = "string",
                                                        },
                                                    },
                                                    SyncPolicy = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyArgs
                                                    {
                                                        Automated = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyAutomatedArgs
                                                        {
                                                            AllowEmpty = false,
                                                            Prune = false,
                                                            SelfHeal = false,
                                                        },
                                                        ManagedNamespaceMetadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyManagedNamespaceMetadataArgs
                                                        {
                                                            Annotations = 
                                                            {
                                                                { "string", "string" },
                                                            },
                                                            Labels = 
                                                            {
                                                                { "string", "string" },
                                                            },
                                                        },
                                                        Retry = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetryArgs
                                                        {
                                                            Backoff = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetryBackoffArgs
                                                            {
                                                                Duration = "string",
                                                                Factor = "string",
                                                                MaxDuration = "string",
                                                            },
                                                            Limit = "string",
                                                        },
                                                        SyncOptions = new[]
                                                        {
                                                            "string",
                                                        },
                                                    },
                                                },
                                            },
                                        },
                                    },
                                    ScmProviders = new[]
                                    {
                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderArgs
                                        {
                                            AzureDevops = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderAzureDevopsArgs
                                            {
                                                Organization = "string",
                                                TeamProject = "string",
                                                AccessTokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderAzureDevopsAccessTokenRefArgs
                                                {
                                                    Key = "string",
                                                    SecretName = "string",
                                                },
                                                AllBranches = false,
                                                Api = "string",
                                            },
                                            BitbucketCloud = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderBitbucketCloudArgs
                                            {
                                                Owner = "string",
                                                User = "string",
                                                AllBranches = false,
                                                AppPasswordRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderBitbucketCloudAppPasswordRefArgs
                                                {
                                                    Key = "string",
                                                    SecretName = "string",
                                                },
                                            },
                                            BitbucketServer = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderBitbucketServerArgs
                                            {
                                                Api = "string",
                                                Project = "string",
                                                AllBranches = false,
                                                BasicAuth = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderBitbucketServerBasicAuthArgs
                                                {
                                                    PasswordRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderBitbucketServerBasicAuthPasswordRefArgs
                                                    {
                                                        Key = "string",
                                                        SecretName = "string",
                                                    },
                                                    Username = "string",
                                                },
                                            },
                                            CloneProtocol = "string",
                                            Filters = new[]
                                            {
                                                new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderFilterArgs
                                                {
                                                    BranchMatch = "string",
                                                    LabelMatch = "string",
                                                    PathsDoNotExists = new[]
                                                    {
                                                        "string",
                                                    },
                                                    PathsExists = new[]
                                                    {
                                                        "string",
                                                    },
                                                    RepositoryMatch = "string",
                                                },
                                            },
                                            Gitea = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGiteaArgs
                                            {
                                                Owner = "string",
                                                AllBranches = false,
                                                Api = "string",
                                                Insecure = false,
                                                TokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGiteaTokenRefArgs
                                                {
                                                    Key = "string",
                                                    SecretName = "string",
                                                },
                                            },
                                            Github = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGithubArgs
                                            {
                                                Organization = "string",
                                                AllBranches = false,
                                                Api = "string",
                                                AppSecretName = "string",
                                                TokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGithubTokenRefArgs
                                                {
                                                    Key = "string",
                                                    SecretName = "string",
                                                },
                                            },
                                            Gitlab = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGitlabArgs
                                            {
                                                Group = "string",
                                                AllBranches = false,
                                                Api = "string",
                                                IncludeSubgroups = false,
                                                TokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGitlabTokenRefArgs
                                                {
                                                    Key = "string",
                                                    SecretName = "string",
                                                },
                                            },
                                            RequeueAfterSeconds = "string",
                                            Template = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateArgs
                                            {
                                                Metadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateMetadataArgs
                                                {
                                                    Annotations = 
                                                    {
                                                        { "string", "string" },
                                                    },
                                                    Finalizers = new[]
                                                    {
                                                        "string",
                                                    },
                                                    Labels = 
                                                    {
                                                        { "string", "string" },
                                                    },
                                                    Name = "string",
                                                    Namespace = "string",
                                                },
                                                Spec = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecArgs
                                                {
                                                    Destination = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecDestinationArgs
                                                    {
                                                        Name = "string",
                                                        Namespace = "string",
                                                        Server = "string",
                                                    },
                                                    IgnoreDifferences = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecIgnoreDifferenceArgs
                                                        {
                                                            Group = "string",
                                                            JqPathExpressions = new[]
                                                            {
                                                                "string",
                                                            },
                                                            JsonPointers = new[]
                                                            {
                                                                "string",
                                                            },
                                                            Kind = "string",
                                                            ManagedFieldsManagers = new[]
                                                            {
                                                                "string",
                                                            },
                                                            Name = "string",
                                                            Namespace = "string",
                                                        },
                                                    },
                                                    Infos = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecInfoArgs
                                                        {
                                                            Name = "string",
                                                            Value = "string",
                                                        },
                                                    },
                                                    Project = "string",
                                                    RevisionHistoryLimit = 0,
                                                    Sources = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceArgs
                                                        {
                                                            Chart = "string",
                                                            Directory = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryArgs
                                                            {
                                                                Exclude = "string",
                                                                Include = "string",
                                                                Jsonnet = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetArgs
                                                                {
                                                                    ExtVars = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetExtVarArgs
                                                                        {
                                                                            Code = false,
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                    Libs = new[]
                                                                    {
                                                                        "string",
                                                                    },
                                                                    Tlas = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetTlaArgs
                                                                        {
                                                                            Code = false,
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                },
                                                                Recurse = false,
                                                            },
                                                            Helm = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmArgs
                                                            {
                                                                FileParameters = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmFileParameterArgs
                                                                    {
                                                                        Name = "string",
                                                                        Path = "string",
                                                                    },
                                                                },
                                                                IgnoreMissingValueFiles = false,
                                                                Parameters = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmParameterArgs
                                                                    {
                                                                        ForceString = false,
                                                                        Name = "string",
                                                                        Value = "string",
                                                                    },
                                                                },
                                                                PassCredentials = false,
                                                                ReleaseName = "string",
                                                                SkipCrds = false,
                                                                ValueFiles = new[]
                                                                {
                                                                    "string",
                                                                },
                                                                Values = "string",
                                                                Version = "string",
                                                            },
                                                            Kustomize = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizeArgs
                                                            {
                                                                CommonAnnotations = 
                                                                {
                                                                    { "string", "string" },
                                                                },
                                                                CommonLabels = 
                                                                {
                                                                    { "string", "string" },
                                                                },
                                                                Images = new[]
                                                                {
                                                                    "string",
                                                                },
                                                                NamePrefix = "string",
                                                                NameSuffix = "string",
                                                                Patches = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizePatchArgs
                                                                    {
                                                                        Target = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizePatchTargetArgs
                                                                        {
                                                                            AnnotationSelector = "string",
                                                                            Group = "string",
                                                                            Kind = "string",
                                                                            LabelSelector = "string",
                                                                            Name = "string",
                                                                            Namespace = "string",
                                                                            Version = "string",
                                                                        },
                                                                        Options = 
                                                                        {
                                                                            { "string", false },
                                                                        },
                                                                        Patch = "string",
                                                                        Path = "string",
                                                                    },
                                                                },
                                                                Version = "string",
                                                            },
                                                            Path = "string",
                                                            Plugin = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourcePluginArgs
                                                            {
                                                                Envs = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourcePluginEnvArgs
                                                                    {
                                                                        Name = "string",
                                                                        Value = "string",
                                                                    },
                                                                },
                                                                Name = "string",
                                                            },
                                                            Ref = "string",
                                                            RepoUrl = "string",
                                                            TargetRevision = "string",
                                                        },
                                                    },
                                                    SyncPolicy = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyArgs
                                                    {
                                                        Automated = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyAutomatedArgs
                                                        {
                                                            AllowEmpty = false,
                                                            Prune = false,
                                                            SelfHeal = false,
                                                        },
                                                        ManagedNamespaceMetadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyManagedNamespaceMetadataArgs
                                                        {
                                                            Annotations = 
                                                            {
                                                                { "string", "string" },
                                                            },
                                                            Labels = 
                                                            {
                                                                { "string", "string" },
                                                            },
                                                        },
                                                        Retry = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyRetryArgs
                                                        {
                                                            Backoff = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyRetryBackoffArgs
                                                            {
                                                                Duration = "string",
                                                                Factor = "string",
                                                                MaxDuration = "string",
                                                            },
                                                            Limit = "string",
                                                        },
                                                        SyncOptions = new[]
                                                        {
                                                            "string",
                                                        },
                                                    },
                                                },
                                            },
                                        },
                                    },
                                    Selector = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorSelectorArgs
                                    {
                                        MatchExpressions = new[]
                                        {
                                            new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorSelectorMatchExpressionArgs
                                            {
                                                Key = "string",
                                                Operator = "string",
                                                Values = new[]
                                                {
                                                    "string",
                                                },
                                            },
                                        },
                                        MatchLabels = 
                                        {
                                            { "string", "string" },
                                        },
                                    },
                                },
                            },
                            Template = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixTemplateArgs
                            {
                                Metadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixTemplateMetadataArgs
                                {
                                    Annotations = 
                                    {
                                        { "string", "string" },
                                    },
                                    Finalizers = new[]
                                    {
                                        "string",
                                    },
                                    Labels = 
                                    {
                                        { "string", "string" },
                                    },
                                    Name = "string",
                                    Namespace = "string",
                                },
                                Spec = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixTemplateSpecArgs
                                {
                                    Destination = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixTemplateSpecDestinationArgs
                                    {
                                        Name = "string",
                                        Namespace = "string",
                                        Server = "string",
                                    },
                                    IgnoreDifferences = new[]
                                    {
                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixTemplateSpecIgnoreDifferenceArgs
                                        {
                                            Group = "string",
                                            JqPathExpressions = new[]
                                            {
                                                "string",
                                            },
                                            JsonPointers = new[]
                                            {
                                                "string",
                                            },
                                            Kind = "string",
                                            ManagedFieldsManagers = new[]
                                            {
                                                "string",
                                            },
                                            Name = "string",
                                            Namespace = "string",
                                        },
                                    },
                                    Infos = new[]
                                    {
                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixTemplateSpecInfoArgs
                                        {
                                            Name = "string",
                                            Value = "string",
                                        },
                                    },
                                    Project = "string",
                                    RevisionHistoryLimit = 0,
                                    Sources = new[]
                                    {
                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixTemplateSpecSourceArgs
                                        {
                                            Chart = "string",
                                            Directory = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixTemplateSpecSourceDirectoryArgs
                                            {
                                                Exclude = "string",
                                                Include = "string",
                                                Jsonnet = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixTemplateSpecSourceDirectoryJsonnetArgs
                                                {
                                                    ExtVars = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixTemplateSpecSourceDirectoryJsonnetExtVarArgs
                                                        {
                                                            Code = false,
                                                            Name = "string",
                                                            Value = "string",
                                                        },
                                                    },
                                                    Libs = new[]
                                                    {
                                                        "string",
                                                    },
                                                    Tlas = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixTemplateSpecSourceDirectoryJsonnetTlaArgs
                                                        {
                                                            Code = false,
                                                            Name = "string",
                                                            Value = "string",
                                                        },
                                                    },
                                                },
                                                Recurse = false,
                                            },
                                            Helm = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixTemplateSpecSourceHelmArgs
                                            {
                                                FileParameters = new[]
                                                {
                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixTemplateSpecSourceHelmFileParameterArgs
                                                    {
                                                        Name = "string",
                                                        Path = "string",
                                                    },
                                                },
                                                IgnoreMissingValueFiles = false,
                                                Parameters = new[]
                                                {
                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixTemplateSpecSourceHelmParameterArgs
                                                    {
                                                        ForceString = false,
                                                        Name = "string",
                                                        Value = "string",
                                                    },
                                                },
                                                PassCredentials = false,
                                                ReleaseName = "string",
                                                SkipCrds = false,
                                                ValueFiles = new[]
                                                {
                                                    "string",
                                                },
                                                Values = "string",
                                                Version = "string",
                                            },
                                            Kustomize = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixTemplateSpecSourceKustomizeArgs
                                            {
                                                CommonAnnotations = 
                                                {
                                                    { "string", "string" },
                                                },
                                                CommonLabels = 
                                                {
                                                    { "string", "string" },
                                                },
                                                Images = new[]
                                                {
                                                    "string",
                                                },
                                                NamePrefix = "string",
                                                NameSuffix = "string",
                                                Patches = new[]
                                                {
                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixTemplateSpecSourceKustomizePatchArgs
                                                    {
                                                        Target = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixTemplateSpecSourceKustomizePatchTargetArgs
                                                        {
                                                            AnnotationSelector = "string",
                                                            Group = "string",
                                                            Kind = "string",
                                                            LabelSelector = "string",
                                                            Name = "string",
                                                            Namespace = "string",
                                                            Version = "string",
                                                        },
                                                        Options = 
                                                        {
                                                            { "string", false },
                                                        },
                                                        Patch = "string",
                                                        Path = "string",
                                                    },
                                                },
                                                Version = "string",
                                            },
                                            Path = "string",
                                            Plugin = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixTemplateSpecSourcePluginArgs
                                            {
                                                Envs = new[]
                                                {
                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixTemplateSpecSourcePluginEnvArgs
                                                    {
                                                        Name = "string",
                                                        Value = "string",
                                                    },
                                                },
                                                Name = "string",
                                            },
                                            Ref = "string",
                                            RepoUrl = "string",
                                            TargetRevision = "string",
                                        },
                                    },
                                    SyncPolicy = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicyArgs
                                    {
                                        Automated = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicyAutomatedArgs
                                        {
                                            AllowEmpty = false,
                                            Prune = false,
                                            SelfHeal = false,
                                        },
                                        ManagedNamespaceMetadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicyManagedNamespaceMetadataArgs
                                        {
                                            Annotations = 
                                            {
                                                { "string", "string" },
                                            },
                                            Labels = 
                                            {
                                                { "string", "string" },
                                            },
                                        },
                                        Retry = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicyRetryArgs
                                        {
                                            Backoff = new Argocd.Inputs.ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicyRetryBackoffArgs
                                            {
                                                Duration = "string",
                                                Factor = "string",
                                                MaxDuration = "string",
                                            },
                                            Limit = "string",
                                        },
                                        SyncOptions = new[]
                                        {
                                            "string",
                                        },
                                    },
                                },
                            },
                        },
                    },
                    Merges = new[]
                    {
                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeArgs
                        {
                            Generators = new[]
                            {
                                new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorArgs
                                {
                                    ClusterDecisionResources = new[]
                                    {
                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceArgs
                                        {
                                            ConfigMapRef = "string",
                                            LabelSelector = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceLabelSelectorArgs
                                            {
                                                MatchExpressions = new[]
                                                {
                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceLabelSelectorMatchExpressionArgs
                                                    {
                                                        Key = "string",
                                                        Operator = "string",
                                                        Values = new[]
                                                        {
                                                            "string",
                                                        },
                                                    },
                                                },
                                                MatchLabels = 
                                                {
                                                    { "string", "string" },
                                                },
                                            },
                                            Name = "string",
                                            RequeueAfterSeconds = "string",
                                            Template = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateArgs
                                            {
                                                Metadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateMetadataArgs
                                                {
                                                    Annotations = 
                                                    {
                                                        { "string", "string" },
                                                    },
                                                    Finalizers = new[]
                                                    {
                                                        "string",
                                                    },
                                                    Labels = 
                                                    {
                                                        { "string", "string" },
                                                    },
                                                    Name = "string",
                                                    Namespace = "string",
                                                },
                                                Spec = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecArgs
                                                {
                                                    Destination = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecDestinationArgs
                                                    {
                                                        Name = "string",
                                                        Namespace = "string",
                                                        Server = "string",
                                                    },
                                                    IgnoreDifferences = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecIgnoreDifferenceArgs
                                                        {
                                                            Group = "string",
                                                            JqPathExpressions = new[]
                                                            {
                                                                "string",
                                                            },
                                                            JsonPointers = new[]
                                                            {
                                                                "string",
                                                            },
                                                            Kind = "string",
                                                            ManagedFieldsManagers = new[]
                                                            {
                                                                "string",
                                                            },
                                                            Name = "string",
                                                            Namespace = "string",
                                                        },
                                                    },
                                                    Infos = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecInfoArgs
                                                        {
                                                            Name = "string",
                                                            Value = "string",
                                                        },
                                                    },
                                                    Project = "string",
                                                    RevisionHistoryLimit = 0,
                                                    Sources = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceArgs
                                                        {
                                                            Chart = "string",
                                                            Directory = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryArgs
                                                            {
                                                                Exclude = "string",
                                                                Include = "string",
                                                                Jsonnet = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetArgs
                                                                {
                                                                    ExtVars = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetExtVarArgs
                                                                        {
                                                                            Code = false,
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                    Libs = new[]
                                                                    {
                                                                        "string",
                                                                    },
                                                                    Tlas = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetTlaArgs
                                                                        {
                                                                            Code = false,
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                },
                                                                Recurse = false,
                                                            },
                                                            Helm = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmArgs
                                                            {
                                                                FileParameters = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameterArgs
                                                                    {
                                                                        Name = "string",
                                                                        Path = "string",
                                                                    },
                                                                },
                                                                IgnoreMissingValueFiles = false,
                                                                Parameters = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameterArgs
                                                                    {
                                                                        ForceString = false,
                                                                        Name = "string",
                                                                        Value = "string",
                                                                    },
                                                                },
                                                                PassCredentials = false,
                                                                ReleaseName = "string",
                                                                SkipCrds = false,
                                                                ValueFiles = new[]
                                                                {
                                                                    "string",
                                                                },
                                                                Values = "string",
                                                                Version = "string",
                                                            },
                                                            Kustomize = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizeArgs
                                                            {
                                                                CommonAnnotations = 
                                                                {
                                                                    { "string", "string" },
                                                                },
                                                                CommonLabels = 
                                                                {
                                                                    { "string", "string" },
                                                                },
                                                                Images = new[]
                                                                {
                                                                    "string",
                                                                },
                                                                NamePrefix = "string",
                                                                NameSuffix = "string",
                                                                Patches = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchArgs
                                                                    {
                                                                        Target = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTargetArgs
                                                                        {
                                                                            AnnotationSelector = "string",
                                                                            Group = "string",
                                                                            Kind = "string",
                                                                            LabelSelector = "string",
                                                                            Name = "string",
                                                                            Namespace = "string",
                                                                            Version = "string",
                                                                        },
                                                                        Options = 
                                                                        {
                                                                            { "string", false },
                                                                        },
                                                                        Patch = "string",
                                                                        Path = "string",
                                                                    },
                                                                },
                                                                Version = "string",
                                                            },
                                                            Path = "string",
                                                            Plugin = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourcePluginArgs
                                                            {
                                                                Envs = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnvArgs
                                                                    {
                                                                        Name = "string",
                                                                        Value = "string",
                                                                    },
                                                                },
                                                                Name = "string",
                                                            },
                                                            Ref = "string",
                                                            RepoUrl = "string",
                                                            TargetRevision = "string",
                                                        },
                                                    },
                                                    SyncPolicy = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyArgs
                                                    {
                                                        Automated = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomatedArgs
                                                        {
                                                            AllowEmpty = false,
                                                            Prune = false,
                                                            SelfHeal = false,
                                                        },
                                                        ManagedNamespaceMetadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadataArgs
                                                        {
                                                            Annotations = 
                                                            {
                                                                { "string", "string" },
                                                            },
                                                            Labels = 
                                                            {
                                                                { "string", "string" },
                                                            },
                                                        },
                                                        Retry = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryArgs
                                                        {
                                                            Backoff = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoffArgs
                                                            {
                                                                Duration = "string",
                                                                Factor = "string",
                                                                MaxDuration = "string",
                                                            },
                                                            Limit = "string",
                                                        },
                                                        SyncOptions = new[]
                                                        {
                                                            "string",
                                                        },
                                                    },
                                                },
                                            },
                                            Values = 
                                            {
                                                { "string", "string" },
                                            },
                                        },
                                    },
                                    Clusters = new[]
                                    {
                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterArgs
                                        {
                                            Enabled = false,
                                            Selector = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterSelectorArgs
                                            {
                                                MatchExpressions = new[]
                                                {
                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterSelectorMatchExpressionArgs
                                                    {
                                                        Key = "string",
                                                        Operator = "string",
                                                        Values = new[]
                                                        {
                                                            "string",
                                                        },
                                                    },
                                                },
                                                MatchLabels = 
                                                {
                                                    { "string", "string" },
                                                },
                                            },
                                            Template = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateArgs
                                            {
                                                Metadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateMetadataArgs
                                                {
                                                    Annotations = 
                                                    {
                                                        { "string", "string" },
                                                    },
                                                    Finalizers = new[]
                                                    {
                                                        "string",
                                                    },
                                                    Labels = 
                                                    {
                                                        { "string", "string" },
                                                    },
                                                    Name = "string",
                                                    Namespace = "string",
                                                },
                                                Spec = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecArgs
                                                {
                                                    Destination = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecDestinationArgs
                                                    {
                                                        Name = "string",
                                                        Namespace = "string",
                                                        Server = "string",
                                                    },
                                                    IgnoreDifferences = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecIgnoreDifferenceArgs
                                                        {
                                                            Group = "string",
                                                            JqPathExpressions = new[]
                                                            {
                                                                "string",
                                                            },
                                                            JsonPointers = new[]
                                                            {
                                                                "string",
                                                            },
                                                            Kind = "string",
                                                            ManagedFieldsManagers = new[]
                                                            {
                                                                "string",
                                                            },
                                                            Name = "string",
                                                            Namespace = "string",
                                                        },
                                                    },
                                                    Infos = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecInfoArgs
                                                        {
                                                            Name = "string",
                                                            Value = "string",
                                                        },
                                                    },
                                                    Project = "string",
                                                    RevisionHistoryLimit = 0,
                                                    Sources = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceArgs
                                                        {
                                                            Chart = "string",
                                                            Directory = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryArgs
                                                            {
                                                                Exclude = "string",
                                                                Include = "string",
                                                                Jsonnet = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnetArgs
                                                                {
                                                                    ExtVars = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnetExtVarArgs
                                                                        {
                                                                            Code = false,
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                    Libs = new[]
                                                                    {
                                                                        "string",
                                                                    },
                                                                    Tlas = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnetTlaArgs
                                                                        {
                                                                            Code = false,
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                },
                                                                Recurse = false,
                                                            },
                                                            Helm = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceHelmArgs
                                                            {
                                                                FileParameters = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceHelmFileParameterArgs
                                                                    {
                                                                        Name = "string",
                                                                        Path = "string",
                                                                    },
                                                                },
                                                                IgnoreMissingValueFiles = false,
                                                                Parameters = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceHelmParameterArgs
                                                                    {
                                                                        ForceString = false,
                                                                        Name = "string",
                                                                        Value = "string",
                                                                    },
                                                                },
                                                                PassCredentials = false,
                                                                ReleaseName = "string",
                                                                SkipCrds = false,
                                                                ValueFiles = new[]
                                                                {
                                                                    "string",
                                                                },
                                                                Values = "string",
                                                                Version = "string",
                                                            },
                                                            Kustomize = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizeArgs
                                                            {
                                                                CommonAnnotations = 
                                                                {
                                                                    { "string", "string" },
                                                                },
                                                                CommonLabels = 
                                                                {
                                                                    { "string", "string" },
                                                                },
                                                                Images = new[]
                                                                {
                                                                    "string",
                                                                },
                                                                NamePrefix = "string",
                                                                NameSuffix = "string",
                                                                Patches = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizePatchArgs
                                                                    {
                                                                        Target = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizePatchTargetArgs
                                                                        {
                                                                            AnnotationSelector = "string",
                                                                            Group = "string",
                                                                            Kind = "string",
                                                                            LabelSelector = "string",
                                                                            Name = "string",
                                                                            Namespace = "string",
                                                                            Version = "string",
                                                                        },
                                                                        Options = 
                                                                        {
                                                                            { "string", false },
                                                                        },
                                                                        Patch = "string",
                                                                        Path = "string",
                                                                    },
                                                                },
                                                                Version = "string",
                                                            },
                                                            Path = "string",
                                                            Plugin = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourcePluginArgs
                                                            {
                                                                Envs = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourcePluginEnvArgs
                                                                    {
                                                                        Name = "string",
                                                                        Value = "string",
                                                                    },
                                                                },
                                                                Name = "string",
                                                            },
                                                            Ref = "string",
                                                            RepoUrl = "string",
                                                            TargetRevision = "string",
                                                        },
                                                    },
                                                    SyncPolicy = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyArgs
                                                    {
                                                        Automated = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyAutomatedArgs
                                                        {
                                                            AllowEmpty = false,
                                                            Prune = false,
                                                            SelfHeal = false,
                                                        },
                                                        ManagedNamespaceMetadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadataArgs
                                                        {
                                                            Annotations = 
                                                            {
                                                                { "string", "string" },
                                                            },
                                                            Labels = 
                                                            {
                                                                { "string", "string" },
                                                            },
                                                        },
                                                        Retry = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyRetryArgs
                                                        {
                                                            Backoff = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyRetryBackoffArgs
                                                            {
                                                                Duration = "string",
                                                                Factor = "string",
                                                                MaxDuration = "string",
                                                            },
                                                            Limit = "string",
                                                        },
                                                        SyncOptions = new[]
                                                        {
                                                            "string",
                                                        },
                                                    },
                                                },
                                            },
                                            Values = 
                                            {
                                                { "string", "string" },
                                            },
                                        },
                                    },
                                    Gits = new[]
                                    {
                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGitArgs
                                        {
                                            RepoUrl = "string",
                                            Directories = new[]
                                            {
                                                new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGitDirectoryArgs
                                                {
                                                    Path = "string",
                                                    Exclude = false,
                                                },
                                            },
                                            Files = new[]
                                            {
                                                new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGitFileArgs
                                                {
                                                    Path = "string",
                                                },
                                            },
                                            PathParamPrefix = "string",
                                            Revision = "string",
                                            Template = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateArgs
                                            {
                                                Metadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateMetadataArgs
                                                {
                                                    Annotations = 
                                                    {
                                                        { "string", "string" },
                                                    },
                                                    Finalizers = new[]
                                                    {
                                                        "string",
                                                    },
                                                    Labels = 
                                                    {
                                                        { "string", "string" },
                                                    },
                                                    Name = "string",
                                                    Namespace = "string",
                                                },
                                                Spec = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecArgs
                                                {
                                                    Destination = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecDestinationArgs
                                                    {
                                                        Name = "string",
                                                        Namespace = "string",
                                                        Server = "string",
                                                    },
                                                    IgnoreDifferences = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecIgnoreDifferenceArgs
                                                        {
                                                            Group = "string",
                                                            JqPathExpressions = new[]
                                                            {
                                                                "string",
                                                            },
                                                            JsonPointers = new[]
                                                            {
                                                                "string",
                                                            },
                                                            Kind = "string",
                                                            ManagedFieldsManagers = new[]
                                                            {
                                                                "string",
                                                            },
                                                            Name = "string",
                                                            Namespace = "string",
                                                        },
                                                    },
                                                    Infos = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecInfoArgs
                                                        {
                                                            Name = "string",
                                                            Value = "string",
                                                        },
                                                    },
                                                    Project = "string",
                                                    RevisionHistoryLimit = 0,
                                                    Sources = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceArgs
                                                        {
                                                            Chart = "string",
                                                            Directory = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryArgs
                                                            {
                                                                Exclude = "string",
                                                                Include = "string",
                                                                Jsonnet = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnetArgs
                                                                {
                                                                    ExtVars = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnetExtVarArgs
                                                                        {
                                                                            Code = false,
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                    Libs = new[]
                                                                    {
                                                                        "string",
                                                                    },
                                                                    Tlas = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnetTlaArgs
                                                                        {
                                                                            Code = false,
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                },
                                                                Recurse = false,
                                                            },
                                                            Helm = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceHelmArgs
                                                            {
                                                                FileParameters = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceHelmFileParameterArgs
                                                                    {
                                                                        Name = "string",
                                                                        Path = "string",
                                                                    },
                                                                },
                                                                IgnoreMissingValueFiles = false,
                                                                Parameters = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceHelmParameterArgs
                                                                    {
                                                                        ForceString = false,
                                                                        Name = "string",
                                                                        Value = "string",
                                                                    },
                                                                },
                                                                PassCredentials = false,
                                                                ReleaseName = "string",
                                                                SkipCrds = false,
                                                                ValueFiles = new[]
                                                                {
                                                                    "string",
                                                                },
                                                                Values = "string",
                                                                Version = "string",
                                                            },
                                                            Kustomize = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceKustomizeArgs
                                                            {
                                                                CommonAnnotations = 
                                                                {
                                                                    { "string", "string" },
                                                                },
                                                                CommonLabels = 
                                                                {
                                                                    { "string", "string" },
                                                                },
                                                                Images = new[]
                                                                {
                                                                    "string",
                                                                },
                                                                NamePrefix = "string",
                                                                NameSuffix = "string",
                                                                Patches = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceKustomizePatchArgs
                                                                    {
                                                                        Target = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceKustomizePatchTargetArgs
                                                                        {
                                                                            AnnotationSelector = "string",
                                                                            Group = "string",
                                                                            Kind = "string",
                                                                            LabelSelector = "string",
                                                                            Name = "string",
                                                                            Namespace = "string",
                                                                            Version = "string",
                                                                        },
                                                                        Options = 
                                                                        {
                                                                            { "string", false },
                                                                        },
                                                                        Patch = "string",
                                                                        Path = "string",
                                                                    },
                                                                },
                                                                Version = "string",
                                                            },
                                                            Path = "string",
                                                            Plugin = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourcePluginArgs
                                                            {
                                                                Envs = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourcePluginEnvArgs
                                                                    {
                                                                        Name = "string",
                                                                        Value = "string",
                                                                    },
                                                                },
                                                                Name = "string",
                                                            },
                                                            Ref = "string",
                                                            RepoUrl = "string",
                                                            TargetRevision = "string",
                                                        },
                                                    },
                                                    SyncPolicy = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicyArgs
                                                    {
                                                        Automated = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicyAutomatedArgs
                                                        {
                                                            AllowEmpty = false,
                                                            Prune = false,
                                                            SelfHeal = false,
                                                        },
                                                        ManagedNamespaceMetadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadataArgs
                                                        {
                                                            Annotations = 
                                                            {
                                                                { "string", "string" },
                                                            },
                                                            Labels = 
                                                            {
                                                                { "string", "string" },
                                                            },
                                                        },
                                                        Retry = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicyRetryArgs
                                                        {
                                                            Backoff = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicyRetryBackoffArgs
                                                            {
                                                                Duration = "string",
                                                                Factor = "string",
                                                                MaxDuration = "string",
                                                            },
                                                            Limit = "string",
                                                        },
                                                        SyncOptions = new[]
                                                        {
                                                            "string",
                                                        },
                                                    },
                                                },
                                            },
                                            Values = 
                                            {
                                                { "string", "string" },
                                            },
                                        },
                                    },
                                    Lists = new[]
                                    {
                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorListArgs
                                        {
                                            Elements = new[]
                                            {
                                                
                                                {
                                                    { "string", "string" },
                                                },
                                            },
                                            Template = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorListTemplateArgs
                                            {
                                                Metadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorListTemplateMetadataArgs
                                                {
                                                    Annotations = 
                                                    {
                                                        { "string", "string" },
                                                    },
                                                    Finalizers = new[]
                                                    {
                                                        "string",
                                                    },
                                                    Labels = 
                                                    {
                                                        { "string", "string" },
                                                    },
                                                    Name = "string",
                                                    Namespace = "string",
                                                },
                                                Spec = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecArgs
                                                {
                                                    Destination = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecDestinationArgs
                                                    {
                                                        Name = "string",
                                                        Namespace = "string",
                                                        Server = "string",
                                                    },
                                                    IgnoreDifferences = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecIgnoreDifferenceArgs
                                                        {
                                                            Group = "string",
                                                            JqPathExpressions = new[]
                                                            {
                                                                "string",
                                                            },
                                                            JsonPointers = new[]
                                                            {
                                                                "string",
                                                            },
                                                            Kind = "string",
                                                            ManagedFieldsManagers = new[]
                                                            {
                                                                "string",
                                                            },
                                                            Name = "string",
                                                            Namespace = "string",
                                                        },
                                                    },
                                                    Infos = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecInfoArgs
                                                        {
                                                            Name = "string",
                                                            Value = "string",
                                                        },
                                                    },
                                                    Project = "string",
                                                    RevisionHistoryLimit = 0,
                                                    Sources = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceArgs
                                                        {
                                                            Chart = "string",
                                                            Directory = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceDirectoryArgs
                                                            {
                                                                Exclude = "string",
                                                                Include = "string",
                                                                Jsonnet = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnetArgs
                                                                {
                                                                    ExtVars = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnetExtVarArgs
                                                                        {
                                                                            Code = false,
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                    Libs = new[]
                                                                    {
                                                                        "string",
                                                                    },
                                                                    Tlas = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnetTlaArgs
                                                                        {
                                                                            Code = false,
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                },
                                                                Recurse = false,
                                                            },
                                                            Helm = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceHelmArgs
                                                            {
                                                                FileParameters = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceHelmFileParameterArgs
                                                                    {
                                                                        Name = "string",
                                                                        Path = "string",
                                                                    },
                                                                },
                                                                IgnoreMissingValueFiles = false,
                                                                Parameters = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceHelmParameterArgs
                                                                    {
                                                                        ForceString = false,
                                                                        Name = "string",
                                                                        Value = "string",
                                                                    },
                                                                },
                                                                PassCredentials = false,
                                                                ReleaseName = "string",
                                                                SkipCrds = false,
                                                                ValueFiles = new[]
                                                                {
                                                                    "string",
                                                                },
                                                                Values = "string",
                                                                Version = "string",
                                                            },
                                                            Kustomize = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceKustomizeArgs
                                                            {
                                                                CommonAnnotations = 
                                                                {
                                                                    { "string", "string" },
                                                                },
                                                                CommonLabels = 
                                                                {
                                                                    { "string", "string" },
                                                                },
                                                                Images = new[]
                                                                {
                                                                    "string",
                                                                },
                                                                NamePrefix = "string",
                                                                NameSuffix = "string",
                                                                Patches = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceKustomizePatchArgs
                                                                    {
                                                                        Target = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceKustomizePatchTargetArgs
                                                                        {
                                                                            AnnotationSelector = "string",
                                                                            Group = "string",
                                                                            Kind = "string",
                                                                            LabelSelector = "string",
                                                                            Name = "string",
                                                                            Namespace = "string",
                                                                            Version = "string",
                                                                        },
                                                                        Options = 
                                                                        {
                                                                            { "string", false },
                                                                        },
                                                                        Patch = "string",
                                                                        Path = "string",
                                                                    },
                                                                },
                                                                Version = "string",
                                                            },
                                                            Path = "string",
                                                            Plugin = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourcePluginArgs
                                                            {
                                                                Envs = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourcePluginEnvArgs
                                                                    {
                                                                        Name = "string",
                                                                        Value = "string",
                                                                    },
                                                                },
                                                                Name = "string",
                                                            },
                                                            Ref = "string",
                                                            RepoUrl = "string",
                                                            TargetRevision = "string",
                                                        },
                                                    },
                                                    SyncPolicy = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicyArgs
                                                    {
                                                        Automated = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicyAutomatedArgs
                                                        {
                                                            AllowEmpty = false,
                                                            Prune = false,
                                                            SelfHeal = false,
                                                        },
                                                        ManagedNamespaceMetadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadataArgs
                                                        {
                                                            Annotations = 
                                                            {
                                                                { "string", "string" },
                                                            },
                                                            Labels = 
                                                            {
                                                                { "string", "string" },
                                                            },
                                                        },
                                                        Retry = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicyRetryArgs
                                                        {
                                                            Backoff = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicyRetryBackoffArgs
                                                            {
                                                                Duration = "string",
                                                                Factor = "string",
                                                                MaxDuration = "string",
                                                            },
                                                            Limit = "string",
                                                        },
                                                        SyncOptions = new[]
                                                        {
                                                            "string",
                                                        },
                                                    },
                                                },
                                            },
                                        },
                                    },
                                    Matrices = new[]
                                    {
                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixArgs
                                        {
                                            Generators = new[]
                                            {
                                                new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorArgs
                                                {
                                                    ClusterDecisionResources = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceArgs
                                                        {
                                                            ConfigMapRef = "string",
                                                            LabelSelector = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceLabelSelectorArgs
                                                            {
                                                                MatchExpressions = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceLabelSelectorMatchExpressionArgs
                                                                    {
                                                                        Key = "string",
                                                                        Operator = "string",
                                                                        Values = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                                MatchLabels = 
                                                                {
                                                                    { "string", "string" },
                                                                },
                                                            },
                                                            Name = "string",
                                                            RequeueAfterSeconds = "string",
                                                            Template = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateArgs
                                                            {
                                                                Metadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateMetadataArgs
                                                                {
                                                                    Annotations = 
                                                                    {
                                                                        { "string", "string" },
                                                                    },
                                                                    Finalizers = new[]
                                                                    {
                                                                        "string",
                                                                    },
                                                                    Labels = 
                                                                    {
                                                                        { "string", "string" },
                                                                    },
                                                                    Name = "string",
                                                                    Namespace = "string",
                                                                },
                                                                Spec = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecArgs
                                                                {
                                                                    Destination = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecDestinationArgs
                                                                    {
                                                                        Name = "string",
                                                                        Namespace = "string",
                                                                        Server = "string",
                                                                    },
                                                                    IgnoreDifferences = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecIgnoreDifferenceArgs
                                                                        {
                                                                            Group = "string",
                                                                            JqPathExpressions = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            JsonPointers = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            Kind = "string",
                                                                            ManagedFieldsManagers = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            Name = "string",
                                                                            Namespace = "string",
                                                                        },
                                                                    },
                                                                    Infos = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecInfoArgs
                                                                        {
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                    Project = "string",
                                                                    RevisionHistoryLimit = 0,
                                                                    Sources = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceArgs
                                                                        {
                                                                            Chart = "string",
                                                                            Directory = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryArgs
                                                                            {
                                                                                Exclude = "string",
                                                                                Include = "string",
                                                                                Jsonnet = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetArgs
                                                                                {
                                                                                    ExtVars = new[]
                                                                                    {
                                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetExtVarArgs
                                                                                        {
                                                                                            Code = false,
                                                                                            Name = "string",
                                                                                            Value = "string",
                                                                                        },
                                                                                    },
                                                                                    Libs = new[]
                                                                                    {
                                                                                        "string",
                                                                                    },
                                                                                    Tlas = new[]
                                                                                    {
                                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetTlaArgs
                                                                                        {
                                                                                            Code = false,
                                                                                            Name = "string",
                                                                                            Value = "string",
                                                                                        },
                                                                                    },
                                                                                },
                                                                                Recurse = false,
                                                                            },
                                                                            Helm = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmArgs
                                                                            {
                                                                                FileParameters = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameterArgs
                                                                                    {
                                                                                        Name = "string",
                                                                                        Path = "string",
                                                                                    },
                                                                                },
                                                                                IgnoreMissingValueFiles = false,
                                                                                Parameters = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameterArgs
                                                                                    {
                                                                                        ForceString = false,
                                                                                        Name = "string",
                                                                                        Value = "string",
                                                                                    },
                                                                                },
                                                                                PassCredentials = false,
                                                                                ReleaseName = "string",
                                                                                SkipCrds = false,
                                                                                ValueFiles = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                                Values = "string",
                                                                                Version = "string",
                                                                            },
                                                                            Kustomize = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizeArgs
                                                                            {
                                                                                CommonAnnotations = 
                                                                                {
                                                                                    { "string", "string" },
                                                                                },
                                                                                CommonLabels = 
                                                                                {
                                                                                    { "string", "string" },
                                                                                },
                                                                                Images = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                                NamePrefix = "string",
                                                                                NameSuffix = "string",
                                                                                Patches = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchArgs
                                                                                    {
                                                                                        Target = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTargetArgs
                                                                                        {
                                                                                            AnnotationSelector = "string",
                                                                                            Group = "string",
                                                                                            Kind = "string",
                                                                                            LabelSelector = "string",
                                                                                            Name = "string",
                                                                                            Namespace = "string",
                                                                                            Version = "string",
                                                                                        },
                                                                                        Options = 
                                                                                        {
                                                                                            { "string", false },
                                                                                        },
                                                                                        Patch = "string",
                                                                                        Path = "string",
                                                                                    },
                                                                                },
                                                                                Version = "string",
                                                                            },
                                                                            Path = "string",
                                                                            Plugin = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePluginArgs
                                                                            {
                                                                                Envs = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnvArgs
                                                                                    {
                                                                                        Name = "string",
                                                                                        Value = "string",
                                                                                    },
                                                                                },
                                                                                Name = "string",
                                                                            },
                                                                            Ref = "string",
                                                                            RepoUrl = "string",
                                                                            TargetRevision = "string",
                                                                        },
                                                                    },
                                                                    SyncPolicy = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyArgs
                                                                    {
                                                                        Automated = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomatedArgs
                                                                        {
                                                                            AllowEmpty = false,
                                                                            Prune = false,
                                                                            SelfHeal = false,
                                                                        },
                                                                        ManagedNamespaceMetadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadataArgs
                                                                        {
                                                                            Annotations = 
                                                                            {
                                                                                { "string", "string" },
                                                                            },
                                                                            Labels = 
                                                                            {
                                                                                { "string", "string" },
                                                                            },
                                                                        },
                                                                        Retry = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryArgs
                                                                        {
                                                                            Backoff = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoffArgs
                                                                            {
                                                                                Duration = "string",
                                                                                Factor = "string",
                                                                                MaxDuration = "string",
                                                                            },
                                                                            Limit = "string",
                                                                        },
                                                                        SyncOptions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                            Values = 
                                                            {
                                                                { "string", "string" },
                                                            },
                                                        },
                                                    },
                                                    Clusters = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterArgs
                                                        {
                                                            Enabled = false,
                                                            Selector = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterSelectorArgs
                                                            {
                                                                MatchExpressions = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterSelectorMatchExpressionArgs
                                                                    {
                                                                        Key = "string",
                                                                        Operator = "string",
                                                                        Values = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                                MatchLabels = 
                                                                {
                                                                    { "string", "string" },
                                                                },
                                                            },
                                                            Template = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateArgs
                                                            {
                                                                Metadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateMetadataArgs
                                                                {
                                                                    Annotations = 
                                                                    {
                                                                        { "string", "string" },
                                                                    },
                                                                    Finalizers = new[]
                                                                    {
                                                                        "string",
                                                                    },
                                                                    Labels = 
                                                                    {
                                                                        { "string", "string" },
                                                                    },
                                                                    Name = "string",
                                                                    Namespace = "string",
                                                                },
                                                                Spec = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecArgs
                                                                {
                                                                    Destination = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecDestinationArgs
                                                                    {
                                                                        Name = "string",
                                                                        Namespace = "string",
                                                                        Server = "string",
                                                                    },
                                                                    IgnoreDifferences = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecIgnoreDifferenceArgs
                                                                        {
                                                                            Group = "string",
                                                                            JqPathExpressions = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            JsonPointers = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            Kind = "string",
                                                                            ManagedFieldsManagers = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            Name = "string",
                                                                            Namespace = "string",
                                                                        },
                                                                    },
                                                                    Infos = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecInfoArgs
                                                                        {
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                    Project = "string",
                                                                    RevisionHistoryLimit = 0,
                                                                    Sources = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceArgs
                                                                        {
                                                                            Chart = "string",
                                                                            Directory = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryArgs
                                                                            {
                                                                                Exclude = "string",
                                                                                Include = "string",
                                                                                Jsonnet = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnetArgs
                                                                                {
                                                                                    ExtVars = new[]
                                                                                    {
                                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnetExtVarArgs
                                                                                        {
                                                                                            Code = false,
                                                                                            Name = "string",
                                                                                            Value = "string",
                                                                                        },
                                                                                    },
                                                                                    Libs = new[]
                                                                                    {
                                                                                        "string",
                                                                                    },
                                                                                    Tlas = new[]
                                                                                    {
                                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnetTlaArgs
                                                                                        {
                                                                                            Code = false,
                                                                                            Name = "string",
                                                                                            Value = "string",
                                                                                        },
                                                                                    },
                                                                                },
                                                                                Recurse = false,
                                                                            },
                                                                            Helm = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmArgs
                                                                            {
                                                                                FileParameters = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmFileParameterArgs
                                                                                    {
                                                                                        Name = "string",
                                                                                        Path = "string",
                                                                                    },
                                                                                },
                                                                                IgnoreMissingValueFiles = false,
                                                                                Parameters = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmParameterArgs
                                                                                    {
                                                                                        ForceString = false,
                                                                                        Name = "string",
                                                                                        Value = "string",
                                                                                    },
                                                                                },
                                                                                PassCredentials = false,
                                                                                ReleaseName = "string",
                                                                                SkipCrds = false,
                                                                                ValueFiles = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                                Values = "string",
                                                                                Version = "string",
                                                                            },
                                                                            Kustomize = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizeArgs
                                                                            {
                                                                                CommonAnnotations = 
                                                                                {
                                                                                    { "string", "string" },
                                                                                },
                                                                                CommonLabels = 
                                                                                {
                                                                                    { "string", "string" },
                                                                                },
                                                                                Images = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                                NamePrefix = "string",
                                                                                NameSuffix = "string",
                                                                                Patches = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatchArgs
                                                                                    {
                                                                                        Target = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatchTargetArgs
                                                                                        {
                                                                                            AnnotationSelector = "string",
                                                                                            Group = "string",
                                                                                            Kind = "string",
                                                                                            LabelSelector = "string",
                                                                                            Name = "string",
                                                                                            Namespace = "string",
                                                                                            Version = "string",
                                                                                        },
                                                                                        Options = 
                                                                                        {
                                                                                            { "string", false },
                                                                                        },
                                                                                        Patch = "string",
                                                                                        Path = "string",
                                                                                    },
                                                                                },
                                                                                Version = "string",
                                                                            },
                                                                            Path = "string",
                                                                            Plugin = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourcePluginArgs
                                                                            {
                                                                                Envs = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourcePluginEnvArgs
                                                                                    {
                                                                                        Name = "string",
                                                                                        Value = "string",
                                                                                    },
                                                                                },
                                                                                Name = "string",
                                                                            },
                                                                            Ref = "string",
                                                                            RepoUrl = "string",
                                                                            TargetRevision = "string",
                                                                        },
                                                                    },
                                                                    SyncPolicy = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyArgs
                                                                    {
                                                                        Automated = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyAutomatedArgs
                                                                        {
                                                                            AllowEmpty = false,
                                                                            Prune = false,
                                                                            SelfHeal = false,
                                                                        },
                                                                        ManagedNamespaceMetadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadataArgs
                                                                        {
                                                                            Annotations = 
                                                                            {
                                                                                { "string", "string" },
                                                                            },
                                                                            Labels = 
                                                                            {
                                                                                { "string", "string" },
                                                                            },
                                                                        },
                                                                        Retry = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetryArgs
                                                                        {
                                                                            Backoff = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetryBackoffArgs
                                                                            {
                                                                                Duration = "string",
                                                                                Factor = "string",
                                                                                MaxDuration = "string",
                                                                            },
                                                                            Limit = "string",
                                                                        },
                                                                        SyncOptions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                            Values = 
                                                            {
                                                                { "string", "string" },
                                                            },
                                                        },
                                                    },
                                                    Gits = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitArgs
                                                        {
                                                            RepoUrl = "string",
                                                            Directories = new[]
                                                            {
                                                                new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitDirectoryArgs
                                                                {
                                                                    Path = "string",
                                                                    Exclude = false,
                                                                },
                                                            },
                                                            Files = new[]
                                                            {
                                                                new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitFileArgs
                                                                {
                                                                    Path = "string",
                                                                },
                                                            },
                                                            PathParamPrefix = "string",
                                                            Revision = "string",
                                                            Template = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateArgs
                                                            {
                                                                Metadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateMetadataArgs
                                                                {
                                                                    Annotations = 
                                                                    {
                                                                        { "string", "string" },
                                                                    },
                                                                    Finalizers = new[]
                                                                    {
                                                                        "string",
                                                                    },
                                                                    Labels = 
                                                                    {
                                                                        { "string", "string" },
                                                                    },
                                                                    Name = "string",
                                                                    Namespace = "string",
                                                                },
                                                                Spec = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecArgs
                                                                {
                                                                    Destination = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecDestinationArgs
                                                                    {
                                                                        Name = "string",
                                                                        Namespace = "string",
                                                                        Server = "string",
                                                                    },
                                                                    IgnoreDifferences = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecIgnoreDifferenceArgs
                                                                        {
                                                                            Group = "string",
                                                                            JqPathExpressions = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            JsonPointers = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            Kind = "string",
                                                                            ManagedFieldsManagers = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            Name = "string",
                                                                            Namespace = "string",
                                                                        },
                                                                    },
                                                                    Infos = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecInfoArgs
                                                                        {
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                    Project = "string",
                                                                    RevisionHistoryLimit = 0,
                                                                    Sources = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceArgs
                                                                        {
                                                                            Chart = "string",
                                                                            Directory = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryArgs
                                                                            {
                                                                                Exclude = "string",
                                                                                Include = "string",
                                                                                Jsonnet = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnetArgs
                                                                                {
                                                                                    ExtVars = new[]
                                                                                    {
                                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnetExtVarArgs
                                                                                        {
                                                                                            Code = false,
                                                                                            Name = "string",
                                                                                            Value = "string",
                                                                                        },
                                                                                    },
                                                                                    Libs = new[]
                                                                                    {
                                                                                        "string",
                                                                                    },
                                                                                    Tlas = new[]
                                                                                    {
                                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnetTlaArgs
                                                                                        {
                                                                                            Code = false,
                                                                                            Name = "string",
                                                                                            Value = "string",
                                                                                        },
                                                                                    },
                                                                                },
                                                                                Recurse = false,
                                                                            },
                                                                            Helm = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceHelmArgs
                                                                            {
                                                                                FileParameters = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceHelmFileParameterArgs
                                                                                    {
                                                                                        Name = "string",
                                                                                        Path = "string",
                                                                                    },
                                                                                },
                                                                                IgnoreMissingValueFiles = false,
                                                                                Parameters = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceHelmParameterArgs
                                                                                    {
                                                                                        ForceString = false,
                                                                                        Name = "string",
                                                                                        Value = "string",
                                                                                    },
                                                                                },
                                                                                PassCredentials = false,
                                                                                ReleaseName = "string",
                                                                                SkipCrds = false,
                                                                                ValueFiles = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                                Values = "string",
                                                                                Version = "string",
                                                                            },
                                                                            Kustomize = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizeArgs
                                                                            {
                                                                                CommonAnnotations = 
                                                                                {
                                                                                    { "string", "string" },
                                                                                },
                                                                                CommonLabels = 
                                                                                {
                                                                                    { "string", "string" },
                                                                                },
                                                                                Images = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                                NamePrefix = "string",
                                                                                NameSuffix = "string",
                                                                                Patches = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatchArgs
                                                                                    {
                                                                                        Target = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatchTargetArgs
                                                                                        {
                                                                                            AnnotationSelector = "string",
                                                                                            Group = "string",
                                                                                            Kind = "string",
                                                                                            LabelSelector = "string",
                                                                                            Name = "string",
                                                                                            Namespace = "string",
                                                                                            Version = "string",
                                                                                        },
                                                                                        Options = 
                                                                                        {
                                                                                            { "string", false },
                                                                                        },
                                                                                        Patch = "string",
                                                                                        Path = "string",
                                                                                    },
                                                                                },
                                                                                Version = "string",
                                                                            },
                                                                            Path = "string",
                                                                            Plugin = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourcePluginArgs
                                                                            {
                                                                                Envs = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourcePluginEnvArgs
                                                                                    {
                                                                                        Name = "string",
                                                                                        Value = "string",
                                                                                    },
                                                                                },
                                                                                Name = "string",
                                                                            },
                                                                            Ref = "string",
                                                                            RepoUrl = "string",
                                                                            TargetRevision = "string",
                                                                        },
                                                                    },
                                                                    SyncPolicy = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyArgs
                                                                    {
                                                                        Automated = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyAutomatedArgs
                                                                        {
                                                                            AllowEmpty = false,
                                                                            Prune = false,
                                                                            SelfHeal = false,
                                                                        },
                                                                        ManagedNamespaceMetadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadataArgs
                                                                        {
                                                                            Annotations = 
                                                                            {
                                                                                { "string", "string" },
                                                                            },
                                                                            Labels = 
                                                                            {
                                                                                { "string", "string" },
                                                                            },
                                                                        },
                                                                        Retry = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetryArgs
                                                                        {
                                                                            Backoff = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetryBackoffArgs
                                                                            {
                                                                                Duration = "string",
                                                                                Factor = "string",
                                                                                MaxDuration = "string",
                                                                            },
                                                                            Limit = "string",
                                                                        },
                                                                        SyncOptions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                            Values = 
                                                            {
                                                                { "string", "string" },
                                                            },
                                                        },
                                                    },
                                                    Lists = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListArgs
                                                        {
                                                            Elements = new[]
                                                            {
                                                                
                                                                {
                                                                    { "string", "string" },
                                                                },
                                                            },
                                                            Template = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateArgs
                                                            {
                                                                Metadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateMetadataArgs
                                                                {
                                                                    Annotations = 
                                                                    {
                                                                        { "string", "string" },
                                                                    },
                                                                    Finalizers = new[]
                                                                    {
                                                                        "string",
                                                                    },
                                                                    Labels = 
                                                                    {
                                                                        { "string", "string" },
                                                                    },
                                                                    Name = "string",
                                                                    Namespace = "string",
                                                                },
                                                                Spec = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecArgs
                                                                {
                                                                    Destination = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecDestinationArgs
                                                                    {
                                                                        Name = "string",
                                                                        Namespace = "string",
                                                                        Server = "string",
                                                                    },
                                                                    IgnoreDifferences = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecIgnoreDifferenceArgs
                                                                        {
                                                                            Group = "string",
                                                                            JqPathExpressions = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            JsonPointers = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            Kind = "string",
                                                                            ManagedFieldsManagers = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            Name = "string",
                                                                            Namespace = "string",
                                                                        },
                                                                    },
                                                                    Infos = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecInfoArgs
                                                                        {
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                    Project = "string",
                                                                    RevisionHistoryLimit = 0,
                                                                    Sources = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceArgs
                                                                        {
                                                                            Chart = "string",
                                                                            Directory = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryArgs
                                                                            {
                                                                                Exclude = "string",
                                                                                Include = "string",
                                                                                Jsonnet = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnetArgs
                                                                                {
                                                                                    ExtVars = new[]
                                                                                    {
                                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnetExtVarArgs
                                                                                        {
                                                                                            Code = false,
                                                                                            Name = "string",
                                                                                            Value = "string",
                                                                                        },
                                                                                    },
                                                                                    Libs = new[]
                                                                                    {
                                                                                        "string",
                                                                                    },
                                                                                    Tlas = new[]
                                                                                    {
                                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnetTlaArgs
                                                                                        {
                                                                                            Code = false,
                                                                                            Name = "string",
                                                                                            Value = "string",
                                                                                        },
                                                                                    },
                                                                                },
                                                                                Recurse = false,
                                                                            },
                                                                            Helm = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceHelmArgs
                                                                            {
                                                                                FileParameters = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceHelmFileParameterArgs
                                                                                    {
                                                                                        Name = "string",
                                                                                        Path = "string",
                                                                                    },
                                                                                },
                                                                                IgnoreMissingValueFiles = false,
                                                                                Parameters = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceHelmParameterArgs
                                                                                    {
                                                                                        ForceString = false,
                                                                                        Name = "string",
                                                                                        Value = "string",
                                                                                    },
                                                                                },
                                                                                PassCredentials = false,
                                                                                ReleaseName = "string",
                                                                                SkipCrds = false,
                                                                                ValueFiles = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                                Values = "string",
                                                                                Version = "string",
                                                                            },
                                                                            Kustomize = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceKustomizeArgs
                                                                            {
                                                                                CommonAnnotations = 
                                                                                {
                                                                                    { "string", "string" },
                                                                                },
                                                                                CommonLabels = 
                                                                                {
                                                                                    { "string", "string" },
                                                                                },
                                                                                Images = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                                NamePrefix = "string",
                                                                                NameSuffix = "string",
                                                                                Patches = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatchArgs
                                                                                    {
                                                                                        Target = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatchTargetArgs
                                                                                        {
                                                                                            AnnotationSelector = "string",
                                                                                            Group = "string",
                                                                                            Kind = "string",
                                                                                            LabelSelector = "string",
                                                                                            Name = "string",
                                                                                            Namespace = "string",
                                                                                            Version = "string",
                                                                                        },
                                                                                        Options = 
                                                                                        {
                                                                                            { "string", false },
                                                                                        },
                                                                                        Patch = "string",
                                                                                        Path = "string",
                                                                                    },
                                                                                },
                                                                                Version = "string",
                                                                            },
                                                                            Path = "string",
                                                                            Plugin = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourcePluginArgs
                                                                            {
                                                                                Envs = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourcePluginEnvArgs
                                                                                    {
                                                                                        Name = "string",
                                                                                        Value = "string",
                                                                                    },
                                                                                },
                                                                                Name = "string",
                                                                            },
                                                                            Ref = "string",
                                                                            RepoUrl = "string",
                                                                            TargetRevision = "string",
                                                                        },
                                                                    },
                                                                    SyncPolicy = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicyArgs
                                                                    {
                                                                        Automated = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicyAutomatedArgs
                                                                        {
                                                                            AllowEmpty = false,
                                                                            Prune = false,
                                                                            SelfHeal = false,
                                                                        },
                                                                        ManagedNamespaceMetadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadataArgs
                                                                        {
                                                                            Annotations = 
                                                                            {
                                                                                { "string", "string" },
                                                                            },
                                                                            Labels = 
                                                                            {
                                                                                { "string", "string" },
                                                                            },
                                                                        },
                                                                        Retry = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetryArgs
                                                                        {
                                                                            Backoff = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetryBackoffArgs
                                                                            {
                                                                                Duration = "string",
                                                                                Factor = "string",
                                                                                MaxDuration = "string",
                                                                            },
                                                                            Limit = "string",
                                                                        },
                                                                        SyncOptions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                        },
                                                    },
                                                    PullRequests = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestArgs
                                                        {
                                                            BitbucketServer = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestBitbucketServerArgs
                                                            {
                                                                Api = "string",
                                                                Project = "string",
                                                                Repo = "string",
                                                                BasicAuth = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestBitbucketServerBasicAuthArgs
                                                                {
                                                                    PasswordRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestBitbucketServerBasicAuthPasswordRefArgs
                                                                    {
                                                                        Key = "string",
                                                                        SecretName = "string",
                                                                    },
                                                                    Username = "string",
                                                                },
                                                            },
                                                            Filters = new[]
                                                            {
                                                                new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestFilterArgs
                                                                {
                                                                    BranchMatch = "string",
                                                                },
                                                            },
                                                            Gitea = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGiteaArgs
                                                            {
                                                                Api = "string",
                                                                Owner = "string",
                                                                Repo = "string",
                                                                Insecure = false,
                                                                TokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGiteaTokenRefArgs
                                                                {
                                                                    Key = "string",
                                                                    SecretName = "string",
                                                                },
                                                            },
                                                            Github = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGithubArgs
                                                            {
                                                                Owner = "string",
                                                                Repo = "string",
                                                                Api = "string",
                                                                AppSecretName = "string",
                                                                Labels = new[]
                                                                {
                                                                    "string",
                                                                },
                                                                TokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGithubTokenRefArgs
                                                                {
                                                                    Key = "string",
                                                                    SecretName = "string",
                                                                },
                                                            },
                                                            Gitlab = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGitlabArgs
                                                            {
                                                                Project = "string",
                                                                Api = "string",
                                                                Labels = new[]
                                                                {
                                                                    "string",
                                                                },
                                                                PullRequestState = "string",
                                                                TokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGitlabTokenRefArgs
                                                                {
                                                                    Key = "string",
                                                                    SecretName = "string",
                                                                },
                                                            },
                                                            RequeueAfterSeconds = "string",
                                                            Template = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateArgs
                                                            {
                                                                Metadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateMetadataArgs
                                                                {
                                                                    Annotations = 
                                                                    {
                                                                        { "string", "string" },
                                                                    },
                                                                    Finalizers = new[]
                                                                    {
                                                                        "string",
                                                                    },
                                                                    Labels = 
                                                                    {
                                                                        { "string", "string" },
                                                                    },
                                                                    Name = "string",
                                                                    Namespace = "string",
                                                                },
                                                                Spec = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecArgs
                                                                {
                                                                    Destination = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecDestinationArgs
                                                                    {
                                                                        Name = "string",
                                                                        Namespace = "string",
                                                                        Server = "string",
                                                                    },
                                                                    IgnoreDifferences = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecIgnoreDifferenceArgs
                                                                        {
                                                                            Group = "string",
                                                                            JqPathExpressions = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            JsonPointers = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            Kind = "string",
                                                                            ManagedFieldsManagers = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            Name = "string",
                                                                            Namespace = "string",
                                                                        },
                                                                    },
                                                                    Infos = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecInfoArgs
                                                                        {
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                    Project = "string",
                                                                    RevisionHistoryLimit = 0,
                                                                    Sources = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceArgs
                                                                        {
                                                                            Chart = "string",
                                                                            Directory = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryArgs
                                                                            {
                                                                                Exclude = "string",
                                                                                Include = "string",
                                                                                Jsonnet = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetArgs
                                                                                {
                                                                                    ExtVars = new[]
                                                                                    {
                                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetExtVarArgs
                                                                                        {
                                                                                            Code = false,
                                                                                            Name = "string",
                                                                                            Value = "string",
                                                                                        },
                                                                                    },
                                                                                    Libs = new[]
                                                                                    {
                                                                                        "string",
                                                                                    },
                                                                                    Tlas = new[]
                                                                                    {
                                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetTlaArgs
                                                                                        {
                                                                                            Code = false,
                                                                                            Name = "string",
                                                                                            Value = "string",
                                                                                        },
                                                                                    },
                                                                                },
                                                                                Recurse = false,
                                                                            },
                                                                            Helm = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmArgs
                                                                            {
                                                                                FileParameters = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmFileParameterArgs
                                                                                    {
                                                                                        Name = "string",
                                                                                        Path = "string",
                                                                                    },
                                                                                },
                                                                                IgnoreMissingValueFiles = false,
                                                                                Parameters = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmParameterArgs
                                                                                    {
                                                                                        ForceString = false,
                                                                                        Name = "string",
                                                                                        Value = "string",
                                                                                    },
                                                                                },
                                                                                PassCredentials = false,
                                                                                ReleaseName = "string",
                                                                                SkipCrds = false,
                                                                                ValueFiles = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                                Values = "string",
                                                                                Version = "string",
                                                                            },
                                                                            Kustomize = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizeArgs
                                                                            {
                                                                                CommonAnnotations = 
                                                                                {
                                                                                    { "string", "string" },
                                                                                },
                                                                                CommonLabels = 
                                                                                {
                                                                                    { "string", "string" },
                                                                                },
                                                                                Images = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                                NamePrefix = "string",
                                                                                NameSuffix = "string",
                                                                                Patches = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatchArgs
                                                                                    {
                                                                                        Target = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatchTargetArgs
                                                                                        {
                                                                                            AnnotationSelector = "string",
                                                                                            Group = "string",
                                                                                            Kind = "string",
                                                                                            LabelSelector = "string",
                                                                                            Name = "string",
                                                                                            Namespace = "string",
                                                                                            Version = "string",
                                                                                        },
                                                                                        Options = 
                                                                                        {
                                                                                            { "string", false },
                                                                                        },
                                                                                        Patch = "string",
                                                                                        Path = "string",
                                                                                    },
                                                                                },
                                                                                Version = "string",
                                                                            },
                                                                            Path = "string",
                                                                            Plugin = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePluginArgs
                                                                            {
                                                                                Envs = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePluginEnvArgs
                                                                                    {
                                                                                        Name = "string",
                                                                                        Value = "string",
                                                                                    },
                                                                                },
                                                                                Name = "string",
                                                                            },
                                                                            Ref = "string",
                                                                            RepoUrl = "string",
                                                                            TargetRevision = "string",
                                                                        },
                                                                    },
                                                                    SyncPolicy = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyArgs
                                                                    {
                                                                        Automated = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyAutomatedArgs
                                                                        {
                                                                            AllowEmpty = false,
                                                                            Prune = false,
                                                                            SelfHeal = false,
                                                                        },
                                                                        ManagedNamespaceMetadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyManagedNamespaceMetadataArgs
                                                                        {
                                                                            Annotations = 
                                                                            {
                                                                                { "string", "string" },
                                                                            },
                                                                            Labels = 
                                                                            {
                                                                                { "string", "string" },
                                                                            },
                                                                        },
                                                                        Retry = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetryArgs
                                                                        {
                                                                            Backoff = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetryBackoffArgs
                                                                            {
                                                                                Duration = "string",
                                                                                Factor = "string",
                                                                                MaxDuration = "string",
                                                                            },
                                                                            Limit = "string",
                                                                        },
                                                                        SyncOptions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                        },
                                                    },
                                                    ScmProviders = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderArgs
                                                        {
                                                            AzureDevops = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderAzureDevopsArgs
                                                            {
                                                                Organization = "string",
                                                                TeamProject = "string",
                                                                AccessTokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderAzureDevopsAccessTokenRefArgs
                                                                {
                                                                    Key = "string",
                                                                    SecretName = "string",
                                                                },
                                                                AllBranches = false,
                                                                Api = "string",
                                                            },
                                                            BitbucketCloud = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderBitbucketCloudArgs
                                                            {
                                                                Owner = "string",
                                                                User = "string",
                                                                AllBranches = false,
                                                                AppPasswordRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderBitbucketCloudAppPasswordRefArgs
                                                                {
                                                                    Key = "string",
                                                                    SecretName = "string",
                                                                },
                                                            },
                                                            BitbucketServer = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderBitbucketServerArgs
                                                            {
                                                                Api = "string",
                                                                Project = "string",
                                                                AllBranches = false,
                                                                BasicAuth = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderBitbucketServerBasicAuthArgs
                                                                {
                                                                    PasswordRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderBitbucketServerBasicAuthPasswordRefArgs
                                                                    {
                                                                        Key = "string",
                                                                        SecretName = "string",
                                                                    },
                                                                    Username = "string",
                                                                },
                                                            },
                                                            CloneProtocol = "string",
                                                            Filters = new[]
                                                            {
                                                                new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderFilterArgs
                                                                {
                                                                    BranchMatch = "string",
                                                                    LabelMatch = "string",
                                                                    PathsDoNotExists = new[]
                                                                    {
                                                                        "string",
                                                                    },
                                                                    PathsExists = new[]
                                                                    {
                                                                        "string",
                                                                    },
                                                                    RepositoryMatch = "string",
                                                                },
                                                            },
                                                            Gitea = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGiteaArgs
                                                            {
                                                                Owner = "string",
                                                                AllBranches = false,
                                                                Api = "string",
                                                                Insecure = false,
                                                                TokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGiteaTokenRefArgs
                                                                {
                                                                    Key = "string",
                                                                    SecretName = "string",
                                                                },
                                                            },
                                                            Github = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGithubArgs
                                                            {
                                                                Organization = "string",
                                                                AllBranches = false,
                                                                Api = "string",
                                                                AppSecretName = "string",
                                                                TokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGithubTokenRefArgs
                                                                {
                                                                    Key = "string",
                                                                    SecretName = "string",
                                                                },
                                                            },
                                                            Gitlab = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGitlabArgs
                                                            {
                                                                Group = "string",
                                                                AllBranches = false,
                                                                Api = "string",
                                                                IncludeSubgroups = false,
                                                                TokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGitlabTokenRefArgs
                                                                {
                                                                    Key = "string",
                                                                    SecretName = "string",
                                                                },
                                                            },
                                                            RequeueAfterSeconds = "string",
                                                            Template = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateArgs
                                                            {
                                                                Metadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateMetadataArgs
                                                                {
                                                                    Annotations = 
                                                                    {
                                                                        { "string", "string" },
                                                                    },
                                                                    Finalizers = new[]
                                                                    {
                                                                        "string",
                                                                    },
                                                                    Labels = 
                                                                    {
                                                                        { "string", "string" },
                                                                    },
                                                                    Name = "string",
                                                                    Namespace = "string",
                                                                },
                                                                Spec = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecArgs
                                                                {
                                                                    Destination = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecDestinationArgs
                                                                    {
                                                                        Name = "string",
                                                                        Namespace = "string",
                                                                        Server = "string",
                                                                    },
                                                                    IgnoreDifferences = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecIgnoreDifferenceArgs
                                                                        {
                                                                            Group = "string",
                                                                            JqPathExpressions = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            JsonPointers = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            Kind = "string",
                                                                            ManagedFieldsManagers = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            Name = "string",
                                                                            Namespace = "string",
                                                                        },
                                                                    },
                                                                    Infos = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecInfoArgs
                                                                        {
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                    Project = "string",
                                                                    RevisionHistoryLimit = 0,
                                                                    Sources = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSourceArgs
                                                                        {
                                                                            Chart = "string",
                                                                            Directory = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryArgs
                                                                            {
                                                                                Exclude = "string",
                                                                                Include = "string",
                                                                                Jsonnet = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetArgs
                                                                                {
                                                                                    ExtVars = new[]
                                                                                    {
                                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetExtVarArgs
                                                                                        {
                                                                                            Code = false,
                                                                                            Name = "string",
                                                                                            Value = "string",
                                                                                        },
                                                                                    },
                                                                                    Libs = new[]
                                                                                    {
                                                                                        "string",
                                                                                    },
                                                                                    Tlas = new[]
                                                                                    {
                                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetTlaArgs
                                                                                        {
                                                                                            Code = false,
                                                                                            Name = "string",
                                                                                            Value = "string",
                                                                                        },
                                                                                    },
                                                                                },
                                                                                Recurse = false,
                                                                            },
                                                                            Helm = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmArgs
                                                                            {
                                                                                FileParameters = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmFileParameterArgs
                                                                                    {
                                                                                        Name = "string",
                                                                                        Path = "string",
                                                                                    },
                                                                                },
                                                                                IgnoreMissingValueFiles = false,
                                                                                Parameters = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmParameterArgs
                                                                                    {
                                                                                        ForceString = false,
                                                                                        Name = "string",
                                                                                        Value = "string",
                                                                                    },
                                                                                },
                                                                                PassCredentials = false,
                                                                                ReleaseName = "string",
                                                                                SkipCrds = false,
                                                                                ValueFiles = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                                Values = "string",
                                                                                Version = "string",
                                                                            },
                                                                            Kustomize = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizeArgs
                                                                            {
                                                                                CommonAnnotations = 
                                                                                {
                                                                                    { "string", "string" },
                                                                                },
                                                                                CommonLabels = 
                                                                                {
                                                                                    { "string", "string" },
                                                                                },
                                                                                Images = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                                NamePrefix = "string",
                                                                                NameSuffix = "string",
                                                                                Patches = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizePatchArgs
                                                                                    {
                                                                                        Target = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizePatchTargetArgs
                                                                                        {
                                                                                            AnnotationSelector = "string",
                                                                                            Group = "string",
                                                                                            Kind = "string",
                                                                                            LabelSelector = "string",
                                                                                            Name = "string",
                                                                                            Namespace = "string",
                                                                                            Version = "string",
                                                                                        },
                                                                                        Options = 
                                                                                        {
                                                                                            { "string", false },
                                                                                        },
                                                                                        Patch = "string",
                                                                                        Path = "string",
                                                                                    },
                                                                                },
                                                                                Version = "string",
                                                                            },
                                                                            Path = "string",
                                                                            Plugin = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSourcePluginArgs
                                                                            {
                                                                                Envs = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSourcePluginEnvArgs
                                                                                    {
                                                                                        Name = "string",
                                                                                        Value = "string",
                                                                                    },
                                                                                },
                                                                                Name = "string",
                                                                            },
                                                                            Ref = "string",
                                                                            RepoUrl = "string",
                                                                            TargetRevision = "string",
                                                                        },
                                                                    },
                                                                    SyncPolicy = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyArgs
                                                                    {
                                                                        Automated = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyAutomatedArgs
                                                                        {
                                                                            AllowEmpty = false,
                                                                            Prune = false,
                                                                            SelfHeal = false,
                                                                        },
                                                                        ManagedNamespaceMetadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyManagedNamespaceMetadataArgs
                                                                        {
                                                                            Annotations = 
                                                                            {
                                                                                { "string", "string" },
                                                                            },
                                                                            Labels = 
                                                                            {
                                                                                { "string", "string" },
                                                                            },
                                                                        },
                                                                        Retry = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyRetryArgs
                                                                        {
                                                                            Backoff = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyRetryBackoffArgs
                                                                            {
                                                                                Duration = "string",
                                                                                Factor = "string",
                                                                                MaxDuration = "string",
                                                                            },
                                                                            Limit = "string",
                                                                        },
                                                                        SyncOptions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                        },
                                                    },
                                                    Selector = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorSelectorArgs
                                                    {
                                                        MatchExpressions = new[]
                                                        {
                                                            new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorSelectorMatchExpressionArgs
                                                            {
                                                                Key = "string",
                                                                Operator = "string",
                                                                Values = new[]
                                                                {
                                                                    "string",
                                                                },
                                                            },
                                                        },
                                                        MatchLabels = 
                                                        {
                                                            { "string", "string" },
                                                        },
                                                    },
                                                },
                                            },
                                            Template = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateArgs
                                            {
                                                Metadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateMetadataArgs
                                                {
                                                    Annotations = 
                                                    {
                                                        { "string", "string" },
                                                    },
                                                    Finalizers = new[]
                                                    {
                                                        "string",
                                                    },
                                                    Labels = 
                                                    {
                                                        { "string", "string" },
                                                    },
                                                    Name = "string",
                                                    Namespace = "string",
                                                },
                                                Spec = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecArgs
                                                {
                                                    Destination = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecDestinationArgs
                                                    {
                                                        Name = "string",
                                                        Namespace = "string",
                                                        Server = "string",
                                                    },
                                                    IgnoreDifferences = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecIgnoreDifferenceArgs
                                                        {
                                                            Group = "string",
                                                            JqPathExpressions = new[]
                                                            {
                                                                "string",
                                                            },
                                                            JsonPointers = new[]
                                                            {
                                                                "string",
                                                            },
                                                            Kind = "string",
                                                            ManagedFieldsManagers = new[]
                                                            {
                                                                "string",
                                                            },
                                                            Name = "string",
                                                            Namespace = "string",
                                                        },
                                                    },
                                                    Infos = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecInfoArgs
                                                        {
                                                            Name = "string",
                                                            Value = "string",
                                                        },
                                                    },
                                                    Project = "string",
                                                    RevisionHistoryLimit = 0,
                                                    Sources = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSourceArgs
                                                        {
                                                            Chart = "string",
                                                            Directory = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSourceDirectoryArgs
                                                            {
                                                                Exclude = "string",
                                                                Include = "string",
                                                                Jsonnet = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSourceDirectoryJsonnetArgs
                                                                {
                                                                    ExtVars = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSourceDirectoryJsonnetExtVarArgs
                                                                        {
                                                                            Code = false,
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                    Libs = new[]
                                                                    {
                                                                        "string",
                                                                    },
                                                                    Tlas = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSourceDirectoryJsonnetTlaArgs
                                                                        {
                                                                            Code = false,
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                },
                                                                Recurse = false,
                                                            },
                                                            Helm = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSourceHelmArgs
                                                            {
                                                                FileParameters = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSourceHelmFileParameterArgs
                                                                    {
                                                                        Name = "string",
                                                                        Path = "string",
                                                                    },
                                                                },
                                                                IgnoreMissingValueFiles = false,
                                                                Parameters = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSourceHelmParameterArgs
                                                                    {
                                                                        ForceString = false,
                                                                        Name = "string",
                                                                        Value = "string",
                                                                    },
                                                                },
                                                                PassCredentials = false,
                                                                ReleaseName = "string",
                                                                SkipCrds = false,
                                                                ValueFiles = new[]
                                                                {
                                                                    "string",
                                                                },
                                                                Values = "string",
                                                                Version = "string",
                                                            },
                                                            Kustomize = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSourceKustomizeArgs
                                                            {
                                                                CommonAnnotations = 
                                                                {
                                                                    { "string", "string" },
                                                                },
                                                                CommonLabels = 
                                                                {
                                                                    { "string", "string" },
                                                                },
                                                                Images = new[]
                                                                {
                                                                    "string",
                                                                },
                                                                NamePrefix = "string",
                                                                NameSuffix = "string",
                                                                Patches = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSourceKustomizePatchArgs
                                                                    {
                                                                        Target = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSourceKustomizePatchTargetArgs
                                                                        {
                                                                            AnnotationSelector = "string",
                                                                            Group = "string",
                                                                            Kind = "string",
                                                                            LabelSelector = "string",
                                                                            Name = "string",
                                                                            Namespace = "string",
                                                                            Version = "string",
                                                                        },
                                                                        Options = 
                                                                        {
                                                                            { "string", false },
                                                                        },
                                                                        Patch = "string",
                                                                        Path = "string",
                                                                    },
                                                                },
                                                                Version = "string",
                                                            },
                                                            Path = "string",
                                                            Plugin = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSourcePluginArgs
                                                            {
                                                                Envs = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSourcePluginEnvArgs
                                                                    {
                                                                        Name = "string",
                                                                        Value = "string",
                                                                    },
                                                                },
                                                                Name = "string",
                                                            },
                                                            Ref = "string",
                                                            RepoUrl = "string",
                                                            TargetRevision = "string",
                                                        },
                                                    },
                                                    SyncPolicy = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSyncPolicyArgs
                                                    {
                                                        Automated = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSyncPolicyAutomatedArgs
                                                        {
                                                            AllowEmpty = false,
                                                            Prune = false,
                                                            SelfHeal = false,
                                                        },
                                                        ManagedNamespaceMetadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSyncPolicyManagedNamespaceMetadataArgs
                                                        {
                                                            Annotations = 
                                                            {
                                                                { "string", "string" },
                                                            },
                                                            Labels = 
                                                            {
                                                                { "string", "string" },
                                                            },
                                                        },
                                                        Retry = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSyncPolicyRetryArgs
                                                        {
                                                            Backoff = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSyncPolicyRetryBackoffArgs
                                                            {
                                                                Duration = "string",
                                                                Factor = "string",
                                                                MaxDuration = "string",
                                                            },
                                                            Limit = "string",
                                                        },
                                                        SyncOptions = new[]
                                                        {
                                                            "string",
                                                        },
                                                    },
                                                },
                                            },
                                        },
                                    },
                                    Merges = new[]
                                    {
                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeArgs
                                        {
                                            Generators = new[]
                                            {
                                                new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorArgs
                                                {
                                                    ClusterDecisionResources = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceArgs
                                                        {
                                                            ConfigMapRef = "string",
                                                            LabelSelector = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceLabelSelectorArgs
                                                            {
                                                                MatchExpressions = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceLabelSelectorMatchExpressionArgs
                                                                    {
                                                                        Key = "string",
                                                                        Operator = "string",
                                                                        Values = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                                MatchLabels = 
                                                                {
                                                                    { "string", "string" },
                                                                },
                                                            },
                                                            Name = "string",
                                                            RequeueAfterSeconds = "string",
                                                            Template = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateArgs
                                                            {
                                                                Metadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateMetadataArgs
                                                                {
                                                                    Annotations = 
                                                                    {
                                                                        { "string", "string" },
                                                                    },
                                                                    Finalizers = new[]
                                                                    {
                                                                        "string",
                                                                    },
                                                                    Labels = 
                                                                    {
                                                                        { "string", "string" },
                                                                    },
                                                                    Name = "string",
                                                                    Namespace = "string",
                                                                },
                                                                Spec = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecArgs
                                                                {
                                                                    Destination = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecDestinationArgs
                                                                    {
                                                                        Name = "string",
                                                                        Namespace = "string",
                                                                        Server = "string",
                                                                    },
                                                                    IgnoreDifferences = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecIgnoreDifferenceArgs
                                                                        {
                                                                            Group = "string",
                                                                            JqPathExpressions = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            JsonPointers = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            Kind = "string",
                                                                            ManagedFieldsManagers = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            Name = "string",
                                                                            Namespace = "string",
                                                                        },
                                                                    },
                                                                    Infos = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecInfoArgs
                                                                        {
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                    Project = "string",
                                                                    RevisionHistoryLimit = 0,
                                                                    Sources = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceArgs
                                                                        {
                                                                            Chart = "string",
                                                                            Directory = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryArgs
                                                                            {
                                                                                Exclude = "string",
                                                                                Include = "string",
                                                                                Jsonnet = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetArgs
                                                                                {
                                                                                    ExtVars = new[]
                                                                                    {
                                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetExtVarArgs
                                                                                        {
                                                                                            Code = false,
                                                                                            Name = "string",
                                                                                            Value = "string",
                                                                                        },
                                                                                    },
                                                                                    Libs = new[]
                                                                                    {
                                                                                        "string",
                                                                                    },
                                                                                    Tlas = new[]
                                                                                    {
                                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetTlaArgs
                                                                                        {
                                                                                            Code = false,
                                                                                            Name = "string",
                                                                                            Value = "string",
                                                                                        },
                                                                                    },
                                                                                },
                                                                                Recurse = false,
                                                                            },
                                                                            Helm = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmArgs
                                                                            {
                                                                                FileParameters = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameterArgs
                                                                                    {
                                                                                        Name = "string",
                                                                                        Path = "string",
                                                                                    },
                                                                                },
                                                                                IgnoreMissingValueFiles = false,
                                                                                Parameters = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameterArgs
                                                                                    {
                                                                                        ForceString = false,
                                                                                        Name = "string",
                                                                                        Value = "string",
                                                                                    },
                                                                                },
                                                                                PassCredentials = false,
                                                                                ReleaseName = "string",
                                                                                SkipCrds = false,
                                                                                ValueFiles = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                                Values = "string",
                                                                                Version = "string",
                                                                            },
                                                                            Kustomize = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizeArgs
                                                                            {
                                                                                CommonAnnotations = 
                                                                                {
                                                                                    { "string", "string" },
                                                                                },
                                                                                CommonLabels = 
                                                                                {
                                                                                    { "string", "string" },
                                                                                },
                                                                                Images = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                                NamePrefix = "string",
                                                                                NameSuffix = "string",
                                                                                Patches = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchArgs
                                                                                    {
                                                                                        Target = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTargetArgs
                                                                                        {
                                                                                            AnnotationSelector = "string",
                                                                                            Group = "string",
                                                                                            Kind = "string",
                                                                                            LabelSelector = "string",
                                                                                            Name = "string",
                                                                                            Namespace = "string",
                                                                                            Version = "string",
                                                                                        },
                                                                                        Options = 
                                                                                        {
                                                                                            { "string", false },
                                                                                        },
                                                                                        Patch = "string",
                                                                                        Path = "string",
                                                                                    },
                                                                                },
                                                                                Version = "string",
                                                                            },
                                                                            Path = "string",
                                                                            Plugin = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourcePluginArgs
                                                                            {
                                                                                Envs = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnvArgs
                                                                                    {
                                                                                        Name = "string",
                                                                                        Value = "string",
                                                                                    },
                                                                                },
                                                                                Name = "string",
                                                                            },
                                                                            Ref = "string",
                                                                            RepoUrl = "string",
                                                                            TargetRevision = "string",
                                                                        },
                                                                    },
                                                                    SyncPolicy = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyArgs
                                                                    {
                                                                        Automated = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomatedArgs
                                                                        {
                                                                            AllowEmpty = false,
                                                                            Prune = false,
                                                                            SelfHeal = false,
                                                                        },
                                                                        ManagedNamespaceMetadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadataArgs
                                                                        {
                                                                            Annotations = 
                                                                            {
                                                                                { "string", "string" },
                                                                            },
                                                                            Labels = 
                                                                            {
                                                                                { "string", "string" },
                                                                            },
                                                                        },
                                                                        Retry = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryArgs
                                                                        {
                                                                            Backoff = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoffArgs
                                                                            {
                                                                                Duration = "string",
                                                                                Factor = "string",
                                                                                MaxDuration = "string",
                                                                            },
                                                                            Limit = "string",
                                                                        },
                                                                        SyncOptions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                            Values = 
                                                            {
                                                                { "string", "string" },
                                                            },
                                                        },
                                                    },
                                                    Clusters = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterArgs
                                                        {
                                                            Enabled = false,
                                                            Selector = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterSelectorArgs
                                                            {
                                                                MatchExpressions = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterSelectorMatchExpressionArgs
                                                                    {
                                                                        Key = "string",
                                                                        Operator = "string",
                                                                        Values = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                                MatchLabels = 
                                                                {
                                                                    { "string", "string" },
                                                                },
                                                            },
                                                            Template = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateArgs
                                                            {
                                                                Metadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateMetadataArgs
                                                                {
                                                                    Annotations = 
                                                                    {
                                                                        { "string", "string" },
                                                                    },
                                                                    Finalizers = new[]
                                                                    {
                                                                        "string",
                                                                    },
                                                                    Labels = 
                                                                    {
                                                                        { "string", "string" },
                                                                    },
                                                                    Name = "string",
                                                                    Namespace = "string",
                                                                },
                                                                Spec = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecArgs
                                                                {
                                                                    Destination = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecDestinationArgs
                                                                    {
                                                                        Name = "string",
                                                                        Namespace = "string",
                                                                        Server = "string",
                                                                    },
                                                                    IgnoreDifferences = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecIgnoreDifferenceArgs
                                                                        {
                                                                            Group = "string",
                                                                            JqPathExpressions = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            JsonPointers = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            Kind = "string",
                                                                            ManagedFieldsManagers = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            Name = "string",
                                                                            Namespace = "string",
                                                                        },
                                                                    },
                                                                    Infos = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecInfoArgs
                                                                        {
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                    Project = "string",
                                                                    RevisionHistoryLimit = 0,
                                                                    Sources = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSourceArgs
                                                                        {
                                                                            Chart = "string",
                                                                            Directory = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryArgs
                                                                            {
                                                                                Exclude = "string",
                                                                                Include = "string",
                                                                                Jsonnet = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnetArgs
                                                                                {
                                                                                    ExtVars = new[]
                                                                                    {
                                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnetExtVarArgs
                                                                                        {
                                                                                            Code = false,
                                                                                            Name = "string",
                                                                                            Value = "string",
                                                                                        },
                                                                                    },
                                                                                    Libs = new[]
                                                                                    {
                                                                                        "string",
                                                                                    },
                                                                                    Tlas = new[]
                                                                                    {
                                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnetTlaArgs
                                                                                        {
                                                                                            Code = false,
                                                                                            Name = "string",
                                                                                            Value = "string",
                                                                                        },
                                                                                    },
                                                                                },
                                                                                Recurse = false,
                                                                            },
                                                                            Helm = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSourceHelmArgs
                                                                            {
                                                                                FileParameters = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSourceHelmFileParameterArgs
                                                                                    {
                                                                                        Name = "string",
                                                                                        Path = "string",
                                                                                    },
                                                                                },
                                                                                IgnoreMissingValueFiles = false,
                                                                                Parameters = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSourceHelmParameterArgs
                                                                                    {
                                                                                        ForceString = false,
                                                                                        Name = "string",
                                                                                        Value = "string",
                                                                                    },
                                                                                },
                                                                                PassCredentials = false,
                                                                                ReleaseName = "string",
                                                                                SkipCrds = false,
                                                                                ValueFiles = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                                Values = "string",
                                                                                Version = "string",
                                                                            },
                                                                            Kustomize = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizeArgs
                                                                            {
                                                                                CommonAnnotations = 
                                                                                {
                                                                                    { "string", "string" },
                                                                                },
                                                                                CommonLabels = 
                                                                                {
                                                                                    { "string", "string" },
                                                                                },
                                                                                Images = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                                NamePrefix = "string",
                                                                                NameSuffix = "string",
                                                                                Patches = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizePatchArgs
                                                                                    {
                                                                                        Target = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizePatchTargetArgs
                                                                                        {
                                                                                            AnnotationSelector = "string",
                                                                                            Group = "string",
                                                                                            Kind = "string",
                                                                                            LabelSelector = "string",
                                                                                            Name = "string",
                                                                                            Namespace = "string",
                                                                                            Version = "string",
                                                                                        },
                                                                                        Options = 
                                                                                        {
                                                                                            { "string", false },
                                                                                        },
                                                                                        Patch = "string",
                                                                                        Path = "string",
                                                                                    },
                                                                                },
                                                                                Version = "string",
                                                                            },
                                                                            Path = "string",
                                                                            Plugin = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSourcePluginArgs
                                                                            {
                                                                                Envs = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSourcePluginEnvArgs
                                                                                    {
                                                                                        Name = "string",
                                                                                        Value = "string",
                                                                                    },
                                                                                },
                                                                                Name = "string",
                                                                            },
                                                                            Ref = "string",
                                                                            RepoUrl = "string",
                                                                            TargetRevision = "string",
                                                                        },
                                                                    },
                                                                    SyncPolicy = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyArgs
                                                                    {
                                                                        Automated = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyAutomatedArgs
                                                                        {
                                                                            AllowEmpty = false,
                                                                            Prune = false,
                                                                            SelfHeal = false,
                                                                        },
                                                                        ManagedNamespaceMetadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadataArgs
                                                                        {
                                                                            Annotations = 
                                                                            {
                                                                                { "string", "string" },
                                                                            },
                                                                            Labels = 
                                                                            {
                                                                                { "string", "string" },
                                                                            },
                                                                        },
                                                                        Retry = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyRetryArgs
                                                                        {
                                                                            Backoff = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyRetryBackoffArgs
                                                                            {
                                                                                Duration = "string",
                                                                                Factor = "string",
                                                                                MaxDuration = "string",
                                                                            },
                                                                            Limit = "string",
                                                                        },
                                                                        SyncOptions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                            Values = 
                                                            {
                                                                { "string", "string" },
                                                            },
                                                        },
                                                    },
                                                    Gits = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitArgs
                                                        {
                                                            RepoUrl = "string",
                                                            Directories = new[]
                                                            {
                                                                new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitDirectoryArgs
                                                                {
                                                                    Path = "string",
                                                                    Exclude = false,
                                                                },
                                                            },
                                                            Files = new[]
                                                            {
                                                                new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitFileArgs
                                                                {
                                                                    Path = "string",
                                                                },
                                                            },
                                                            PathParamPrefix = "string",
                                                            Revision = "string",
                                                            Template = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateArgs
                                                            {
                                                                Metadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateMetadataArgs
                                                                {
                                                                    Annotations = 
                                                                    {
                                                                        { "string", "string" },
                                                                    },
                                                                    Finalizers = new[]
                                                                    {
                                                                        "string",
                                                                    },
                                                                    Labels = 
                                                                    {
                                                                        { "string", "string" },
                                                                    },
                                                                    Name = "string",
                                                                    Namespace = "string",
                                                                },
                                                                Spec = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecArgs
                                                                {
                                                                    Destination = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecDestinationArgs
                                                                    {
                                                                        Name = "string",
                                                                        Namespace = "string",
                                                                        Server = "string",
                                                                    },
                                                                    IgnoreDifferences = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecIgnoreDifferenceArgs
                                                                        {
                                                                            Group = "string",
                                                                            JqPathExpressions = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            JsonPointers = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            Kind = "string",
                                                                            ManagedFieldsManagers = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            Name = "string",
                                                                            Namespace = "string",
                                                                        },
                                                                    },
                                                                    Infos = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecInfoArgs
                                                                        {
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                    Project = "string",
                                                                    RevisionHistoryLimit = 0,
                                                                    Sources = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSourceArgs
                                                                        {
                                                                            Chart = "string",
                                                                            Directory = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryArgs
                                                                            {
                                                                                Exclude = "string",
                                                                                Include = "string",
                                                                                Jsonnet = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnetArgs
                                                                                {
                                                                                    ExtVars = new[]
                                                                                    {
                                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnetExtVarArgs
                                                                                        {
                                                                                            Code = false,
                                                                                            Name = "string",
                                                                                            Value = "string",
                                                                                        },
                                                                                    },
                                                                                    Libs = new[]
                                                                                    {
                                                                                        "string",
                                                                                    },
                                                                                    Tlas = new[]
                                                                                    {
                                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnetTlaArgs
                                                                                        {
                                                                                            Code = false,
                                                                                            Name = "string",
                                                                                            Value = "string",
                                                                                        },
                                                                                    },
                                                                                },
                                                                                Recurse = false,
                                                                            },
                                                                            Helm = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSourceHelmArgs
                                                                            {
                                                                                FileParameters = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSourceHelmFileParameterArgs
                                                                                    {
                                                                                        Name = "string",
                                                                                        Path = "string",
                                                                                    },
                                                                                },
                                                                                IgnoreMissingValueFiles = false,
                                                                                Parameters = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSourceHelmParameterArgs
                                                                                    {
                                                                                        ForceString = false,
                                                                                        Name = "string",
                                                                                        Value = "string",
                                                                                    },
                                                                                },
                                                                                PassCredentials = false,
                                                                                ReleaseName = "string",
                                                                                SkipCrds = false,
                                                                                ValueFiles = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                                Values = "string",
                                                                                Version = "string",
                                                                            },
                                                                            Kustomize = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSourceKustomizeArgs
                                                                            {
                                                                                CommonAnnotations = 
                                                                                {
                                                                                    { "string", "string" },
                                                                                },
                                                                                CommonLabels = 
                                                                                {
                                                                                    { "string", "string" },
                                                                                },
                                                                                Images = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                                NamePrefix = "string",
                                                                                NameSuffix = "string",
                                                                                Patches = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSourceKustomizePatchArgs
                                                                                    {
                                                                                        Target = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSourceKustomizePatchTargetArgs
                                                                                        {
                                                                                            AnnotationSelector = "string",
                                                                                            Group = "string",
                                                                                            Kind = "string",
                                                                                            LabelSelector = "string",
                                                                                            Name = "string",
                                                                                            Namespace = "string",
                                                                                            Version = "string",
                                                                                        },
                                                                                        Options = 
                                                                                        {
                                                                                            { "string", false },
                                                                                        },
                                                                                        Patch = "string",
                                                                                        Path = "string",
                                                                                    },
                                                                                },
                                                                                Version = "string",
                                                                            },
                                                                            Path = "string",
                                                                            Plugin = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSourcePluginArgs
                                                                            {
                                                                                Envs = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSourcePluginEnvArgs
                                                                                    {
                                                                                        Name = "string",
                                                                                        Value = "string",
                                                                                    },
                                                                                },
                                                                                Name = "string",
                                                                            },
                                                                            Ref = "string",
                                                                            RepoUrl = "string",
                                                                            TargetRevision = "string",
                                                                        },
                                                                    },
                                                                    SyncPolicy = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSyncPolicyArgs
                                                                    {
                                                                        Automated = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSyncPolicyAutomatedArgs
                                                                        {
                                                                            AllowEmpty = false,
                                                                            Prune = false,
                                                                            SelfHeal = false,
                                                                        },
                                                                        ManagedNamespaceMetadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadataArgs
                                                                        {
                                                                            Annotations = 
                                                                            {
                                                                                { "string", "string" },
                                                                            },
                                                                            Labels = 
                                                                            {
                                                                                { "string", "string" },
                                                                            },
                                                                        },
                                                                        Retry = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSyncPolicyRetryArgs
                                                                        {
                                                                            Backoff = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSyncPolicyRetryBackoffArgs
                                                                            {
                                                                                Duration = "string",
                                                                                Factor = "string",
                                                                                MaxDuration = "string",
                                                                            },
                                                                            Limit = "string",
                                                                        },
                                                                        SyncOptions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                            Values = 
                                                            {
                                                                { "string", "string" },
                                                            },
                                                        },
                                                    },
                                                    Lists = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListArgs
                                                        {
                                                            Elements = new[]
                                                            {
                                                                
                                                                {
                                                                    { "string", "string" },
                                                                },
                                                            },
                                                            Template = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateArgs
                                                            {
                                                                Metadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateMetadataArgs
                                                                {
                                                                    Annotations = 
                                                                    {
                                                                        { "string", "string" },
                                                                    },
                                                                    Finalizers = new[]
                                                                    {
                                                                        "string",
                                                                    },
                                                                    Labels = 
                                                                    {
                                                                        { "string", "string" },
                                                                    },
                                                                    Name = "string",
                                                                    Namespace = "string",
                                                                },
                                                                Spec = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecArgs
                                                                {
                                                                    Destination = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecDestinationArgs
                                                                    {
                                                                        Name = "string",
                                                                        Namespace = "string",
                                                                        Server = "string",
                                                                    },
                                                                    IgnoreDifferences = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecIgnoreDifferenceArgs
                                                                        {
                                                                            Group = "string",
                                                                            JqPathExpressions = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            JsonPointers = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            Kind = "string",
                                                                            ManagedFieldsManagers = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            Name = "string",
                                                                            Namespace = "string",
                                                                        },
                                                                    },
                                                                    Infos = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecInfoArgs
                                                                        {
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                    Project = "string",
                                                                    RevisionHistoryLimit = 0,
                                                                    Sources = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSourceArgs
                                                                        {
                                                                            Chart = "string",
                                                                            Directory = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSourceDirectoryArgs
                                                                            {
                                                                                Exclude = "string",
                                                                                Include = "string",
                                                                                Jsonnet = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnetArgs
                                                                                {
                                                                                    ExtVars = new[]
                                                                                    {
                                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnetExtVarArgs
                                                                                        {
                                                                                            Code = false,
                                                                                            Name = "string",
                                                                                            Value = "string",
                                                                                        },
                                                                                    },
                                                                                    Libs = new[]
                                                                                    {
                                                                                        "string",
                                                                                    },
                                                                                    Tlas = new[]
                                                                                    {
                                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnetTlaArgs
                                                                                        {
                                                                                            Code = false,
                                                                                            Name = "string",
                                                                                            Value = "string",
                                                                                        },
                                                                                    },
                                                                                },
                                                                                Recurse = false,
                                                                            },
                                                                            Helm = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSourceHelmArgs
                                                                            {
                                                                                FileParameters = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSourceHelmFileParameterArgs
                                                                                    {
                                                                                        Name = "string",
                                                                                        Path = "string",
                                                                                    },
                                                                                },
                                                                                IgnoreMissingValueFiles = false,
                                                                                Parameters = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSourceHelmParameterArgs
                                                                                    {
                                                                                        ForceString = false,
                                                                                        Name = "string",
                                                                                        Value = "string",
                                                                                    },
                                                                                },
                                                                                PassCredentials = false,
                                                                                ReleaseName = "string",
                                                                                SkipCrds = false,
                                                                                ValueFiles = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                                Values = "string",
                                                                                Version = "string",
                                                                            },
                                                                            Kustomize = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSourceKustomizeArgs
                                                                            {
                                                                                CommonAnnotations = 
                                                                                {
                                                                                    { "string", "string" },
                                                                                },
                                                                                CommonLabels = 
                                                                                {
                                                                                    { "string", "string" },
                                                                                },
                                                                                Images = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                                NamePrefix = "string",
                                                                                NameSuffix = "string",
                                                                                Patches = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSourceKustomizePatchArgs
                                                                                    {
                                                                                        Target = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSourceKustomizePatchTargetArgs
                                                                                        {
                                                                                            AnnotationSelector = "string",
                                                                                            Group = "string",
                                                                                            Kind = "string",
                                                                                            LabelSelector = "string",
                                                                                            Name = "string",
                                                                                            Namespace = "string",
                                                                                            Version = "string",
                                                                                        },
                                                                                        Options = 
                                                                                        {
                                                                                            { "string", false },
                                                                                        },
                                                                                        Patch = "string",
                                                                                        Path = "string",
                                                                                    },
                                                                                },
                                                                                Version = "string",
                                                                            },
                                                                            Path = "string",
                                                                            Plugin = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSourcePluginArgs
                                                                            {
                                                                                Envs = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSourcePluginEnvArgs
                                                                                    {
                                                                                        Name = "string",
                                                                                        Value = "string",
                                                                                    },
                                                                                },
                                                                                Name = "string",
                                                                            },
                                                                            Ref = "string",
                                                                            RepoUrl = "string",
                                                                            TargetRevision = "string",
                                                                        },
                                                                    },
                                                                    SyncPolicy = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSyncPolicyArgs
                                                                    {
                                                                        Automated = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSyncPolicyAutomatedArgs
                                                                        {
                                                                            AllowEmpty = false,
                                                                            Prune = false,
                                                                            SelfHeal = false,
                                                                        },
                                                                        ManagedNamespaceMetadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadataArgs
                                                                        {
                                                                            Annotations = 
                                                                            {
                                                                                { "string", "string" },
                                                                            },
                                                                            Labels = 
                                                                            {
                                                                                { "string", "string" },
                                                                            },
                                                                        },
                                                                        Retry = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSyncPolicyRetryArgs
                                                                        {
                                                                            Backoff = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSyncPolicyRetryBackoffArgs
                                                                            {
                                                                                Duration = "string",
                                                                                Factor = "string",
                                                                                MaxDuration = "string",
                                                                            },
                                                                            Limit = "string",
                                                                        },
                                                                        SyncOptions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                        },
                                                    },
                                                    PullRequests = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestArgs
                                                        {
                                                            BitbucketServer = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestBitbucketServerArgs
                                                            {
                                                                Api = "string",
                                                                Project = "string",
                                                                Repo = "string",
                                                                BasicAuth = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestBitbucketServerBasicAuthArgs
                                                                {
                                                                    PasswordRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestBitbucketServerBasicAuthPasswordRefArgs
                                                                    {
                                                                        Key = "string",
                                                                        SecretName = "string",
                                                                    },
                                                                    Username = "string",
                                                                },
                                                            },
                                                            Filters = new[]
                                                            {
                                                                new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestFilterArgs
                                                                {
                                                                    BranchMatch = "string",
                                                                },
                                                            },
                                                            Gitea = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestGiteaArgs
                                                            {
                                                                Api = "string",
                                                                Owner = "string",
                                                                Repo = "string",
                                                                Insecure = false,
                                                                TokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestGiteaTokenRefArgs
                                                                {
                                                                    Key = "string",
                                                                    SecretName = "string",
                                                                },
                                                            },
                                                            Github = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestGithubArgs
                                                            {
                                                                Owner = "string",
                                                                Repo = "string",
                                                                Api = "string",
                                                                AppSecretName = "string",
                                                                Labels = new[]
                                                                {
                                                                    "string",
                                                                },
                                                                TokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestGithubTokenRefArgs
                                                                {
                                                                    Key = "string",
                                                                    SecretName = "string",
                                                                },
                                                            },
                                                            Gitlab = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestGitlabArgs
                                                            {
                                                                Project = "string",
                                                                Api = "string",
                                                                Labels = new[]
                                                                {
                                                                    "string",
                                                                },
                                                                PullRequestState = "string",
                                                                TokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestGitlabTokenRefArgs
                                                                {
                                                                    Key = "string",
                                                                    SecretName = "string",
                                                                },
                                                            },
                                                            RequeueAfterSeconds = "string",
                                                            Template = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateArgs
                                                            {
                                                                Metadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateMetadataArgs
                                                                {
                                                                    Annotations = 
                                                                    {
                                                                        { "string", "string" },
                                                                    },
                                                                    Finalizers = new[]
                                                                    {
                                                                        "string",
                                                                    },
                                                                    Labels = 
                                                                    {
                                                                        { "string", "string" },
                                                                    },
                                                                    Name = "string",
                                                                    Namespace = "string",
                                                                },
                                                                Spec = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecArgs
                                                                {
                                                                    Destination = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecDestinationArgs
                                                                    {
                                                                        Name = "string",
                                                                        Namespace = "string",
                                                                        Server = "string",
                                                                    },
                                                                    IgnoreDifferences = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecIgnoreDifferenceArgs
                                                                        {
                                                                            Group = "string",
                                                                            JqPathExpressions = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            JsonPointers = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            Kind = "string",
                                                                            ManagedFieldsManagers = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            Name = "string",
                                                                            Namespace = "string",
                                                                        },
                                                                    },
                                                                    Infos = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecInfoArgs
                                                                        {
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                    Project = "string",
                                                                    RevisionHistoryLimit = 0,
                                                                    Sources = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSourceArgs
                                                                        {
                                                                            Chart = "string",
                                                                            Directory = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryArgs
                                                                            {
                                                                                Exclude = "string",
                                                                                Include = "string",
                                                                                Jsonnet = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetArgs
                                                                                {
                                                                                    ExtVars = new[]
                                                                                    {
                                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetExtVarArgs
                                                                                        {
                                                                                            Code = false,
                                                                                            Name = "string",
                                                                                            Value = "string",
                                                                                        },
                                                                                    },
                                                                                    Libs = new[]
                                                                                    {
                                                                                        "string",
                                                                                    },
                                                                                    Tlas = new[]
                                                                                    {
                                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetTlaArgs
                                                                                        {
                                                                                            Code = false,
                                                                                            Name = "string",
                                                                                            Value = "string",
                                                                                        },
                                                                                    },
                                                                                },
                                                                                Recurse = false,
                                                                            },
                                                                            Helm = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmArgs
                                                                            {
                                                                                FileParameters = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmFileParameterArgs
                                                                                    {
                                                                                        Name = "string",
                                                                                        Path = "string",
                                                                                    },
                                                                                },
                                                                                IgnoreMissingValueFiles = false,
                                                                                Parameters = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmParameterArgs
                                                                                    {
                                                                                        ForceString = false,
                                                                                        Name = "string",
                                                                                        Value = "string",
                                                                                    },
                                                                                },
                                                                                PassCredentials = false,
                                                                                ReleaseName = "string",
                                                                                SkipCrds = false,
                                                                                ValueFiles = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                                Values = "string",
                                                                                Version = "string",
                                                                            },
                                                                            Kustomize = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomizeArgs
                                                                            {
                                                                                CommonAnnotations = 
                                                                                {
                                                                                    { "string", "string" },
                                                                                },
                                                                                CommonLabels = 
                                                                                {
                                                                                    { "string", "string" },
                                                                                },
                                                                                Images = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                                NamePrefix = "string",
                                                                                NameSuffix = "string",
                                                                                Patches = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomizePatchArgs
                                                                                    {
                                                                                        Target = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomizePatchTargetArgs
                                                                                        {
                                                                                            AnnotationSelector = "string",
                                                                                            Group = "string",
                                                                                            Kind = "string",
                                                                                            LabelSelector = "string",
                                                                                            Name = "string",
                                                                                            Namespace = "string",
                                                                                            Version = "string",
                                                                                        },
                                                                                        Options = 
                                                                                        {
                                                                                            { "string", false },
                                                                                        },
                                                                                        Patch = "string",
                                                                                        Path = "string",
                                                                                    },
                                                                                },
                                                                                Version = "string",
                                                                            },
                                                                            Path = "string",
                                                                            Plugin = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSourcePluginArgs
                                                                            {
                                                                                Envs = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSourcePluginEnvArgs
                                                                                    {
                                                                                        Name = "string",
                                                                                        Value = "string",
                                                                                    },
                                                                                },
                                                                                Name = "string",
                                                                            },
                                                                            Ref = "string",
                                                                            RepoUrl = "string",
                                                                            TargetRevision = "string",
                                                                        },
                                                                    },
                                                                    SyncPolicy = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyArgs
                                                                    {
                                                                        Automated = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyAutomatedArgs
                                                                        {
                                                                            AllowEmpty = false,
                                                                            Prune = false,
                                                                            SelfHeal = false,
                                                                        },
                                                                        ManagedNamespaceMetadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyManagedNamespaceMetadataArgs
                                                                        {
                                                                            Annotations = 
                                                                            {
                                                                                { "string", "string" },
                                                                            },
                                                                            Labels = 
                                                                            {
                                                                                { "string", "string" },
                                                                            },
                                                                        },
                                                                        Retry = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyRetryArgs
                                                                        {
                                                                            Backoff = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyRetryBackoffArgs
                                                                            {
                                                                                Duration = "string",
                                                                                Factor = "string",
                                                                                MaxDuration = "string",
                                                                            },
                                                                            Limit = "string",
                                                                        },
                                                                        SyncOptions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                        },
                                                    },
                                                    ScmProviders = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderArgs
                                                        {
                                                            AzureDevops = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderAzureDevopsArgs
                                                            {
                                                                Organization = "string",
                                                                TeamProject = "string",
                                                                AccessTokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderAzureDevopsAccessTokenRefArgs
                                                                {
                                                                    Key = "string",
                                                                    SecretName = "string",
                                                                },
                                                                AllBranches = false,
                                                                Api = "string",
                                                            },
                                                            BitbucketCloud = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderBitbucketCloudArgs
                                                            {
                                                                Owner = "string",
                                                                User = "string",
                                                                AllBranches = false,
                                                                AppPasswordRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderBitbucketCloudAppPasswordRefArgs
                                                                {
                                                                    Key = "string",
                                                                    SecretName = "string",
                                                                },
                                                            },
                                                            BitbucketServer = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderBitbucketServerArgs
                                                            {
                                                                Api = "string",
                                                                Project = "string",
                                                                AllBranches = false,
                                                                BasicAuth = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderBitbucketServerBasicAuthArgs
                                                                {
                                                                    PasswordRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderBitbucketServerBasicAuthPasswordRefArgs
                                                                    {
                                                                        Key = "string",
                                                                        SecretName = "string",
                                                                    },
                                                                    Username = "string",
                                                                },
                                                            },
                                                            CloneProtocol = "string",
                                                            Filters = new[]
                                                            {
                                                                new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderFilterArgs
                                                                {
                                                                    BranchMatch = "string",
                                                                    LabelMatch = "string",
                                                                    PathsDoNotExists = new[]
                                                                    {
                                                                        "string",
                                                                    },
                                                                    PathsExists = new[]
                                                                    {
                                                                        "string",
                                                                    },
                                                                    RepositoryMatch = "string",
                                                                },
                                                            },
                                                            Gitea = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderGiteaArgs
                                                            {
                                                                Owner = "string",
                                                                AllBranches = false,
                                                                Api = "string",
                                                                Insecure = false,
                                                                TokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderGiteaTokenRefArgs
                                                                {
                                                                    Key = "string",
                                                                    SecretName = "string",
                                                                },
                                                            },
                                                            Github = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderGithubArgs
                                                            {
                                                                Organization = "string",
                                                                AllBranches = false,
                                                                Api = "string",
                                                                AppSecretName = "string",
                                                                TokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderGithubTokenRefArgs
                                                                {
                                                                    Key = "string",
                                                                    SecretName = "string",
                                                                },
                                                            },
                                                            Gitlab = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderGitlabArgs
                                                            {
                                                                Group = "string",
                                                                AllBranches = false,
                                                                Api = "string",
                                                                IncludeSubgroups = false,
                                                                TokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderGitlabTokenRefArgs
                                                                {
                                                                    Key = "string",
                                                                    SecretName = "string",
                                                                },
                                                            },
                                                            RequeueAfterSeconds = "string",
                                                            Template = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateArgs
                                                            {
                                                                Metadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateMetadataArgs
                                                                {
                                                                    Annotations = 
                                                                    {
                                                                        { "string", "string" },
                                                                    },
                                                                    Finalizers = new[]
                                                                    {
                                                                        "string",
                                                                    },
                                                                    Labels = 
                                                                    {
                                                                        { "string", "string" },
                                                                    },
                                                                    Name = "string",
                                                                    Namespace = "string",
                                                                },
                                                                Spec = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecArgs
                                                                {
                                                                    Destination = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecDestinationArgs
                                                                    {
                                                                        Name = "string",
                                                                        Namespace = "string",
                                                                        Server = "string",
                                                                    },
                                                                    IgnoreDifferences = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecIgnoreDifferenceArgs
                                                                        {
                                                                            Group = "string",
                                                                            JqPathExpressions = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            JsonPointers = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            Kind = "string",
                                                                            ManagedFieldsManagers = new[]
                                                                            {
                                                                                "string",
                                                                            },
                                                                            Name = "string",
                                                                            Namespace = "string",
                                                                        },
                                                                    },
                                                                    Infos = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecInfoArgs
                                                                        {
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                    Project = "string",
                                                                    RevisionHistoryLimit = 0,
                                                                    Sources = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSourceArgs
                                                                        {
                                                                            Chart = "string",
                                                                            Directory = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryArgs
                                                                            {
                                                                                Exclude = "string",
                                                                                Include = "string",
                                                                                Jsonnet = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetArgs
                                                                                {
                                                                                    ExtVars = new[]
                                                                                    {
                                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetExtVarArgs
                                                                                        {
                                                                                            Code = false,
                                                                                            Name = "string",
                                                                                            Value = "string",
                                                                                        },
                                                                                    },
                                                                                    Libs = new[]
                                                                                    {
                                                                                        "string",
                                                                                    },
                                                                                    Tlas = new[]
                                                                                    {
                                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetTlaArgs
                                                                                        {
                                                                                            Code = false,
                                                                                            Name = "string",
                                                                                            Value = "string",
                                                                                        },
                                                                                    },
                                                                                },
                                                                                Recurse = false,
                                                                            },
                                                                            Helm = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmArgs
                                                                            {
                                                                                FileParameters = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmFileParameterArgs
                                                                                    {
                                                                                        Name = "string",
                                                                                        Path = "string",
                                                                                    },
                                                                                },
                                                                                IgnoreMissingValueFiles = false,
                                                                                Parameters = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmParameterArgs
                                                                                    {
                                                                                        ForceString = false,
                                                                                        Name = "string",
                                                                                        Value = "string",
                                                                                    },
                                                                                },
                                                                                PassCredentials = false,
                                                                                ReleaseName = "string",
                                                                                SkipCrds = false,
                                                                                ValueFiles = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                                Values = "string",
                                                                                Version = "string",
                                                                            },
                                                                            Kustomize = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomizeArgs
                                                                            {
                                                                                CommonAnnotations = 
                                                                                {
                                                                                    { "string", "string" },
                                                                                },
                                                                                CommonLabels = 
                                                                                {
                                                                                    { "string", "string" },
                                                                                },
                                                                                Images = new[]
                                                                                {
                                                                                    "string",
                                                                                },
                                                                                NamePrefix = "string",
                                                                                NameSuffix = "string",
                                                                                Patches = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomizePatchArgs
                                                                                    {
                                                                                        Target = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomizePatchTargetArgs
                                                                                        {
                                                                                            AnnotationSelector = "string",
                                                                                            Group = "string",
                                                                                            Kind = "string",
                                                                                            LabelSelector = "string",
                                                                                            Name = "string",
                                                                                            Namespace = "string",
                                                                                            Version = "string",
                                                                                        },
                                                                                        Options = 
                                                                                        {
                                                                                            { "string", false },
                                                                                        },
                                                                                        Patch = "string",
                                                                                        Path = "string",
                                                                                    },
                                                                                },
                                                                                Version = "string",
                                                                            },
                                                                            Path = "string",
                                                                            Plugin = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSourcePluginArgs
                                                                            {
                                                                                Envs = new[]
                                                                                {
                                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSourcePluginEnvArgs
                                                                                    {
                                                                                        Name = "string",
                                                                                        Value = "string",
                                                                                    },
                                                                                },
                                                                                Name = "string",
                                                                            },
                                                                            Ref = "string",
                                                                            RepoUrl = "string",
                                                                            TargetRevision = "string",
                                                                        },
                                                                    },
                                                                    SyncPolicy = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyArgs
                                                                    {
                                                                        Automated = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyAutomatedArgs
                                                                        {
                                                                            AllowEmpty = false,
                                                                            Prune = false,
                                                                            SelfHeal = false,
                                                                        },
                                                                        ManagedNamespaceMetadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyManagedNamespaceMetadataArgs
                                                                        {
                                                                            Annotations = 
                                                                            {
                                                                                { "string", "string" },
                                                                            },
                                                                            Labels = 
                                                                            {
                                                                                { "string", "string" },
                                                                            },
                                                                        },
                                                                        Retry = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyRetryArgs
                                                                        {
                                                                            Backoff = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyRetryBackoffArgs
                                                                            {
                                                                                Duration = "string",
                                                                                Factor = "string",
                                                                                MaxDuration = "string",
                                                                            },
                                                                            Limit = "string",
                                                                        },
                                                                        SyncOptions = new[]
                                                                        {
                                                                            "string",
                                                                        },
                                                                    },
                                                                },
                                                            },
                                                        },
                                                    },
                                                    Selector = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorSelectorArgs
                                                    {
                                                        MatchExpressions = new[]
                                                        {
                                                            new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorSelectorMatchExpressionArgs
                                                            {
                                                                Key = "string",
                                                                Operator = "string",
                                                                Values = new[]
                                                                {
                                                                    "string",
                                                                },
                                                            },
                                                        },
                                                        MatchLabels = 
                                                        {
                                                            { "string", "string" },
                                                        },
                                                    },
                                                },
                                            },
                                            MergeKeys = new[]
                                            {
                                                "string",
                                            },
                                            Template = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateArgs
                                            {
                                                Metadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateMetadataArgs
                                                {
                                                    Annotations = 
                                                    {
                                                        { "string", "string" },
                                                    },
                                                    Finalizers = new[]
                                                    {
                                                        "string",
                                                    },
                                                    Labels = 
                                                    {
                                                        { "string", "string" },
                                                    },
                                                    Name = "string",
                                                    Namespace = "string",
                                                },
                                                Spec = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecArgs
                                                {
                                                    Destination = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecDestinationArgs
                                                    {
                                                        Name = "string",
                                                        Namespace = "string",
                                                        Server = "string",
                                                    },
                                                    IgnoreDifferences = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecIgnoreDifferenceArgs
                                                        {
                                                            Group = "string",
                                                            JqPathExpressions = new[]
                                                            {
                                                                "string",
                                                            },
                                                            JsonPointers = new[]
                                                            {
                                                                "string",
                                                            },
                                                            Kind = "string",
                                                            ManagedFieldsManagers = new[]
                                                            {
                                                                "string",
                                                            },
                                                            Name = "string",
                                                            Namespace = "string",
                                                        },
                                                    },
                                                    Infos = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecInfoArgs
                                                        {
                                                            Name = "string",
                                                            Value = "string",
                                                        },
                                                    },
                                                    Project = "string",
                                                    RevisionHistoryLimit = 0,
                                                    Sources = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSourceArgs
                                                        {
                                                            Chart = "string",
                                                            Directory = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSourceDirectoryArgs
                                                            {
                                                                Exclude = "string",
                                                                Include = "string",
                                                                Jsonnet = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSourceDirectoryJsonnetArgs
                                                                {
                                                                    ExtVars = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSourceDirectoryJsonnetExtVarArgs
                                                                        {
                                                                            Code = false,
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                    Libs = new[]
                                                                    {
                                                                        "string",
                                                                    },
                                                                    Tlas = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSourceDirectoryJsonnetTlaArgs
                                                                        {
                                                                            Code = false,
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                },
                                                                Recurse = false,
                                                            },
                                                            Helm = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSourceHelmArgs
                                                            {
                                                                FileParameters = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSourceHelmFileParameterArgs
                                                                    {
                                                                        Name = "string",
                                                                        Path = "string",
                                                                    },
                                                                },
                                                                IgnoreMissingValueFiles = false,
                                                                Parameters = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSourceHelmParameterArgs
                                                                    {
                                                                        ForceString = false,
                                                                        Name = "string",
                                                                        Value = "string",
                                                                    },
                                                                },
                                                                PassCredentials = false,
                                                                ReleaseName = "string",
                                                                SkipCrds = false,
                                                                ValueFiles = new[]
                                                                {
                                                                    "string",
                                                                },
                                                                Values = "string",
                                                                Version = "string",
                                                            },
                                                            Kustomize = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSourceKustomizeArgs
                                                            {
                                                                CommonAnnotations = 
                                                                {
                                                                    { "string", "string" },
                                                                },
                                                                CommonLabels = 
                                                                {
                                                                    { "string", "string" },
                                                                },
                                                                Images = new[]
                                                                {
                                                                    "string",
                                                                },
                                                                NamePrefix = "string",
                                                                NameSuffix = "string",
                                                                Patches = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSourceKustomizePatchArgs
                                                                    {
                                                                        Target = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSourceKustomizePatchTargetArgs
                                                                        {
                                                                            AnnotationSelector = "string",
                                                                            Group = "string",
                                                                            Kind = "string",
                                                                            LabelSelector = "string",
                                                                            Name = "string",
                                                                            Namespace = "string",
                                                                            Version = "string",
                                                                        },
                                                                        Options = 
                                                                        {
                                                                            { "string", false },
                                                                        },
                                                                        Patch = "string",
                                                                        Path = "string",
                                                                    },
                                                                },
                                                                Version = "string",
                                                            },
                                                            Path = "string",
                                                            Plugin = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSourcePluginArgs
                                                            {
                                                                Envs = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSourcePluginEnvArgs
                                                                    {
                                                                        Name = "string",
                                                                        Value = "string",
                                                                    },
                                                                },
                                                                Name = "string",
                                                            },
                                                            Ref = "string",
                                                            RepoUrl = "string",
                                                            TargetRevision = "string",
                                                        },
                                                    },
                                                    SyncPolicy = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSyncPolicyArgs
                                                    {
                                                        Automated = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSyncPolicyAutomatedArgs
                                                        {
                                                            AllowEmpty = false,
                                                            Prune = false,
                                                            SelfHeal = false,
                                                        },
                                                        ManagedNamespaceMetadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSyncPolicyManagedNamespaceMetadataArgs
                                                        {
                                                            Annotations = 
                                                            {
                                                                { "string", "string" },
                                                            },
                                                            Labels = 
                                                            {
                                                                { "string", "string" },
                                                            },
                                                        },
                                                        Retry = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSyncPolicyRetryArgs
                                                        {
                                                            Backoff = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSyncPolicyRetryBackoffArgs
                                                            {
                                                                Duration = "string",
                                                                Factor = "string",
                                                                MaxDuration = "string",
                                                            },
                                                            Limit = "string",
                                                        },
                                                        SyncOptions = new[]
                                                        {
                                                            "string",
                                                        },
                                                    },
                                                },
                                            },
                                        },
                                    },
                                    PullRequests = new[]
                                    {
                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorPullRequestArgs
                                        {
                                            BitbucketServer = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorPullRequestBitbucketServerArgs
                                            {
                                                Api = "string",
                                                Project = "string",
                                                Repo = "string",
                                                BasicAuth = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorPullRequestBitbucketServerBasicAuthArgs
                                                {
                                                    PasswordRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorPullRequestBitbucketServerBasicAuthPasswordRefArgs
                                                    {
                                                        Key = "string",
                                                        SecretName = "string",
                                                    },
                                                    Username = "string",
                                                },
                                            },
                                            Filters = new[]
                                            {
                                                new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorPullRequestFilterArgs
                                                {
                                                    BranchMatch = "string",
                                                },
                                            },
                                            Gitea = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorPullRequestGiteaArgs
                                            {
                                                Api = "string",
                                                Owner = "string",
                                                Repo = "string",
                                                Insecure = false,
                                                TokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorPullRequestGiteaTokenRefArgs
                                                {
                                                    Key = "string",
                                                    SecretName = "string",
                                                },
                                            },
                                            Github = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorPullRequestGithubArgs
                                            {
                                                Owner = "string",
                                                Repo = "string",
                                                Api = "string",
                                                AppSecretName = "string",
                                                Labels = new[]
                                                {
                                                    "string",
                                                },
                                                TokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorPullRequestGithubTokenRefArgs
                                                {
                                                    Key = "string",
                                                    SecretName = "string",
                                                },
                                            },
                                            Gitlab = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorPullRequestGitlabArgs
                                            {
                                                Project = "string",
                                                Api = "string",
                                                Labels = new[]
                                                {
                                                    "string",
                                                },
                                                PullRequestState = "string",
                                                TokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorPullRequestGitlabTokenRefArgs
                                                {
                                                    Key = "string",
                                                    SecretName = "string",
                                                },
                                            },
                                            RequeueAfterSeconds = "string",
                                            Template = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateArgs
                                            {
                                                Metadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateMetadataArgs
                                                {
                                                    Annotations = 
                                                    {
                                                        { "string", "string" },
                                                    },
                                                    Finalizers = new[]
                                                    {
                                                        "string",
                                                    },
                                                    Labels = 
                                                    {
                                                        { "string", "string" },
                                                    },
                                                    Name = "string",
                                                    Namespace = "string",
                                                },
                                                Spec = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecArgs
                                                {
                                                    Destination = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecDestinationArgs
                                                    {
                                                        Name = "string",
                                                        Namespace = "string",
                                                        Server = "string",
                                                    },
                                                    IgnoreDifferences = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecIgnoreDifferenceArgs
                                                        {
                                                            Group = "string",
                                                            JqPathExpressions = new[]
                                                            {
                                                                "string",
                                                            },
                                                            JsonPointers = new[]
                                                            {
                                                                "string",
                                                            },
                                                            Kind = "string",
                                                            ManagedFieldsManagers = new[]
                                                            {
                                                                "string",
                                                            },
                                                            Name = "string",
                                                            Namespace = "string",
                                                        },
                                                    },
                                                    Infos = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecInfoArgs
                                                        {
                                                            Name = "string",
                                                            Value = "string",
                                                        },
                                                    },
                                                    Project = "string",
                                                    RevisionHistoryLimit = 0,
                                                    Sources = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSourceArgs
                                                        {
                                                            Chart = "string",
                                                            Directory = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryArgs
                                                            {
                                                                Exclude = "string",
                                                                Include = "string",
                                                                Jsonnet = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetArgs
                                                                {
                                                                    ExtVars = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetExtVarArgs
                                                                        {
                                                                            Code = false,
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                    Libs = new[]
                                                                    {
                                                                        "string",
                                                                    },
                                                                    Tlas = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetTlaArgs
                                                                        {
                                                                            Code = false,
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                },
                                                                Recurse = false,
                                                            },
                                                            Helm = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmArgs
                                                            {
                                                                FileParameters = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmFileParameterArgs
                                                                    {
                                                                        Name = "string",
                                                                        Path = "string",
                                                                    },
                                                                },
                                                                IgnoreMissingValueFiles = false,
                                                                Parameters = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmParameterArgs
                                                                    {
                                                                        ForceString = false,
                                                                        Name = "string",
                                                                        Value = "string",
                                                                    },
                                                                },
                                                                PassCredentials = false,
                                                                ReleaseName = "string",
                                                                SkipCrds = false,
                                                                ValueFiles = new[]
                                                                {
                                                                    "string",
                                                                },
                                                                Values = "string",
                                                                Version = "string",
                                                            },
                                                            Kustomize = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomizeArgs
                                                            {
                                                                CommonAnnotations = 
                                                                {
                                                                    { "string", "string" },
                                                                },
                                                                CommonLabels = 
                                                                {
                                                                    { "string", "string" },
                                                                },
                                                                Images = new[]
                                                                {
                                                                    "string",
                                                                },
                                                                NamePrefix = "string",
                                                                NameSuffix = "string",
                                                                Patches = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomizePatchArgs
                                                                    {
                                                                        Target = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomizePatchTargetArgs
                                                                        {
                                                                            AnnotationSelector = "string",
                                                                            Group = "string",
                                                                            Kind = "string",
                                                                            LabelSelector = "string",
                                                                            Name = "string",
                                                                            Namespace = "string",
                                                                            Version = "string",
                                                                        },
                                                                        Options = 
                                                                        {
                                                                            { "string", false },
                                                                        },
                                                                        Patch = "string",
                                                                        Path = "string",
                                                                    },
                                                                },
                                                                Version = "string",
                                                            },
                                                            Path = "string",
                                                            Plugin = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSourcePluginArgs
                                                            {
                                                                Envs = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSourcePluginEnvArgs
                                                                    {
                                                                        Name = "string",
                                                                        Value = "string",
                                                                    },
                                                                },
                                                                Name = "string",
                                                            },
                                                            Ref = "string",
                                                            RepoUrl = "string",
                                                            TargetRevision = "string",
                                                        },
                                                    },
                                                    SyncPolicy = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyArgs
                                                    {
                                                        Automated = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyAutomatedArgs
                                                        {
                                                            AllowEmpty = false,
                                                            Prune = false,
                                                            SelfHeal = false,
                                                        },
                                                        ManagedNamespaceMetadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyManagedNamespaceMetadataArgs
                                                        {
                                                            Annotations = 
                                                            {
                                                                { "string", "string" },
                                                            },
                                                            Labels = 
                                                            {
                                                                { "string", "string" },
                                                            },
                                                        },
                                                        Retry = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyRetryArgs
                                                        {
                                                            Backoff = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyRetryBackoffArgs
                                                            {
                                                                Duration = "string",
                                                                Factor = "string",
                                                                MaxDuration = "string",
                                                            },
                                                            Limit = "string",
                                                        },
                                                        SyncOptions = new[]
                                                        {
                                                            "string",
                                                        },
                                                    },
                                                },
                                            },
                                        },
                                    },
                                    ScmProviders = new[]
                                    {
                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorScmProviderArgs
                                        {
                                            AzureDevops = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorScmProviderAzureDevopsArgs
                                            {
                                                Organization = "string",
                                                TeamProject = "string",
                                                AccessTokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorScmProviderAzureDevopsAccessTokenRefArgs
                                                {
                                                    Key = "string",
                                                    SecretName = "string",
                                                },
                                                AllBranches = false,
                                                Api = "string",
                                            },
                                            BitbucketCloud = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorScmProviderBitbucketCloudArgs
                                            {
                                                Owner = "string",
                                                User = "string",
                                                AllBranches = false,
                                                AppPasswordRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorScmProviderBitbucketCloudAppPasswordRefArgs
                                                {
                                                    Key = "string",
                                                    SecretName = "string",
                                                },
                                            },
                                            BitbucketServer = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorScmProviderBitbucketServerArgs
                                            {
                                                Api = "string",
                                                Project = "string",
                                                AllBranches = false,
                                                BasicAuth = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorScmProviderBitbucketServerBasicAuthArgs
                                                {
                                                    PasswordRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorScmProviderBitbucketServerBasicAuthPasswordRefArgs
                                                    {
                                                        Key = "string",
                                                        SecretName = "string",
                                                    },
                                                    Username = "string",
                                                },
                                            },
                                            CloneProtocol = "string",
                                            Filters = new[]
                                            {
                                                new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorScmProviderFilterArgs
                                                {
                                                    BranchMatch = "string",
                                                    LabelMatch = "string",
                                                    PathsDoNotExists = new[]
                                                    {
                                                        "string",
                                                    },
                                                    PathsExists = new[]
                                                    {
                                                        "string",
                                                    },
                                                    RepositoryMatch = "string",
                                                },
                                            },
                                            Gitea = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorScmProviderGiteaArgs
                                            {
                                                Owner = "string",
                                                AllBranches = false,
                                                Api = "string",
                                                Insecure = false,
                                                TokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorScmProviderGiteaTokenRefArgs
                                                {
                                                    Key = "string",
                                                    SecretName = "string",
                                                },
                                            },
                                            Github = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorScmProviderGithubArgs
                                            {
                                                Organization = "string",
                                                AllBranches = false,
                                                Api = "string",
                                                AppSecretName = "string",
                                                TokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorScmProviderGithubTokenRefArgs
                                                {
                                                    Key = "string",
                                                    SecretName = "string",
                                                },
                                            },
                                            Gitlab = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorScmProviderGitlabArgs
                                            {
                                                Group = "string",
                                                AllBranches = false,
                                                Api = "string",
                                                IncludeSubgroups = false,
                                                TokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorScmProviderGitlabTokenRefArgs
                                                {
                                                    Key = "string",
                                                    SecretName = "string",
                                                },
                                            },
                                            RequeueAfterSeconds = "string",
                                            Template = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateArgs
                                            {
                                                Metadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateMetadataArgs
                                                {
                                                    Annotations = 
                                                    {
                                                        { "string", "string" },
                                                    },
                                                    Finalizers = new[]
                                                    {
                                                        "string",
                                                    },
                                                    Labels = 
                                                    {
                                                        { "string", "string" },
                                                    },
                                                    Name = "string",
                                                    Namespace = "string",
                                                },
                                                Spec = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecArgs
                                                {
                                                    Destination = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecDestinationArgs
                                                    {
                                                        Name = "string",
                                                        Namespace = "string",
                                                        Server = "string",
                                                    },
                                                    IgnoreDifferences = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecIgnoreDifferenceArgs
                                                        {
                                                            Group = "string",
                                                            JqPathExpressions = new[]
                                                            {
                                                                "string",
                                                            },
                                                            JsonPointers = new[]
                                                            {
                                                                "string",
                                                            },
                                                            Kind = "string",
                                                            ManagedFieldsManagers = new[]
                                                            {
                                                                "string",
                                                            },
                                                            Name = "string",
                                                            Namespace = "string",
                                                        },
                                                    },
                                                    Infos = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecInfoArgs
                                                        {
                                                            Name = "string",
                                                            Value = "string",
                                                        },
                                                    },
                                                    Project = "string",
                                                    RevisionHistoryLimit = 0,
                                                    Sources = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSourceArgs
                                                        {
                                                            Chart = "string",
                                                            Directory = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryArgs
                                                            {
                                                                Exclude = "string",
                                                                Include = "string",
                                                                Jsonnet = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetArgs
                                                                {
                                                                    ExtVars = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetExtVarArgs
                                                                        {
                                                                            Code = false,
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                    Libs = new[]
                                                                    {
                                                                        "string",
                                                                    },
                                                                    Tlas = new[]
                                                                    {
                                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetTlaArgs
                                                                        {
                                                                            Code = false,
                                                                            Name = "string",
                                                                            Value = "string",
                                                                        },
                                                                    },
                                                                },
                                                                Recurse = false,
                                                            },
                                                            Helm = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmArgs
                                                            {
                                                                FileParameters = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmFileParameterArgs
                                                                    {
                                                                        Name = "string",
                                                                        Path = "string",
                                                                    },
                                                                },
                                                                IgnoreMissingValueFiles = false,
                                                                Parameters = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmParameterArgs
                                                                    {
                                                                        ForceString = false,
                                                                        Name = "string",
                                                                        Value = "string",
                                                                    },
                                                                },
                                                                PassCredentials = false,
                                                                ReleaseName = "string",
                                                                SkipCrds = false,
                                                                ValueFiles = new[]
                                                                {
                                                                    "string",
                                                                },
                                                                Values = "string",
                                                                Version = "string",
                                                            },
                                                            Kustomize = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomizeArgs
                                                            {
                                                                CommonAnnotations = 
                                                                {
                                                                    { "string", "string" },
                                                                },
                                                                CommonLabels = 
                                                                {
                                                                    { "string", "string" },
                                                                },
                                                                Images = new[]
                                                                {
                                                                    "string",
                                                                },
                                                                NamePrefix = "string",
                                                                NameSuffix = "string",
                                                                Patches = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomizePatchArgs
                                                                    {
                                                                        Target = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomizePatchTargetArgs
                                                                        {
                                                                            AnnotationSelector = "string",
                                                                            Group = "string",
                                                                            Kind = "string",
                                                                            LabelSelector = "string",
                                                                            Name = "string",
                                                                            Namespace = "string",
                                                                            Version = "string",
                                                                        },
                                                                        Options = 
                                                                        {
                                                                            { "string", false },
                                                                        },
                                                                        Patch = "string",
                                                                        Path = "string",
                                                                    },
                                                                },
                                                                Version = "string",
                                                            },
                                                            Path = "string",
                                                            Plugin = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSourcePluginArgs
                                                            {
                                                                Envs = new[]
                                                                {
                                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSourcePluginEnvArgs
                                                                    {
                                                                        Name = "string",
                                                                        Value = "string",
                                                                    },
                                                                },
                                                                Name = "string",
                                                            },
                                                            Ref = "string",
                                                            RepoUrl = "string",
                                                            TargetRevision = "string",
                                                        },
                                                    },
                                                    SyncPolicy = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyArgs
                                                    {
                                                        Automated = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyAutomatedArgs
                                                        {
                                                            AllowEmpty = false,
                                                            Prune = false,
                                                            SelfHeal = false,
                                                        },
                                                        ManagedNamespaceMetadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyManagedNamespaceMetadataArgs
                                                        {
                                                            Annotations = 
                                                            {
                                                                { "string", "string" },
                                                            },
                                                            Labels = 
                                                            {
                                                                { "string", "string" },
                                                            },
                                                        },
                                                        Retry = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyRetryArgs
                                                        {
                                                            Backoff = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyRetryBackoffArgs
                                                            {
                                                                Duration = "string",
                                                                Factor = "string",
                                                                MaxDuration = "string",
                                                            },
                                                            Limit = "string",
                                                        },
                                                        SyncOptions = new[]
                                                        {
                                                            "string",
                                                        },
                                                    },
                                                },
                                            },
                                        },
                                    },
                                    Selector = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorSelectorArgs
                                    {
                                        MatchExpressions = new[]
                                        {
                                            new Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorSelectorMatchExpressionArgs
                                            {
                                                Key = "string",
                                                Operator = "string",
                                                Values = new[]
                                                {
                                                    "string",
                                                },
                                            },
                                        },
                                        MatchLabels = 
                                        {
                                            { "string", "string" },
                                        },
                                    },
                                },
                            },
                            MergeKeys = new[]
                            {
                                "string",
                            },
                            Template = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeTemplateArgs
                            {
                                Metadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeTemplateMetadataArgs
                                {
                                    Annotations = 
                                    {
                                        { "string", "string" },
                                    },
                                    Finalizers = new[]
                                    {
                                        "string",
                                    },
                                    Labels = 
                                    {
                                        { "string", "string" },
                                    },
                                    Name = "string",
                                    Namespace = "string",
                                },
                                Spec = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeTemplateSpecArgs
                                {
                                    Destination = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeTemplateSpecDestinationArgs
                                    {
                                        Name = "string",
                                        Namespace = "string",
                                        Server = "string",
                                    },
                                    IgnoreDifferences = new[]
                                    {
                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeTemplateSpecIgnoreDifferenceArgs
                                        {
                                            Group = "string",
                                            JqPathExpressions = new[]
                                            {
                                                "string",
                                            },
                                            JsonPointers = new[]
                                            {
                                                "string",
                                            },
                                            Kind = "string",
                                            ManagedFieldsManagers = new[]
                                            {
                                                "string",
                                            },
                                            Name = "string",
                                            Namespace = "string",
                                        },
                                    },
                                    Infos = new[]
                                    {
                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeTemplateSpecInfoArgs
                                        {
                                            Name = "string",
                                            Value = "string",
                                        },
                                    },
                                    Project = "string",
                                    RevisionHistoryLimit = 0,
                                    Sources = new[]
                                    {
                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeTemplateSpecSourceArgs
                                        {
                                            Chart = "string",
                                            Directory = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeTemplateSpecSourceDirectoryArgs
                                            {
                                                Exclude = "string",
                                                Include = "string",
                                                Jsonnet = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeTemplateSpecSourceDirectoryJsonnetArgs
                                                {
                                                    ExtVars = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeTemplateSpecSourceDirectoryJsonnetExtVarArgs
                                                        {
                                                            Code = false,
                                                            Name = "string",
                                                            Value = "string",
                                                        },
                                                    },
                                                    Libs = new[]
                                                    {
                                                        "string",
                                                    },
                                                    Tlas = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorMergeTemplateSpecSourceDirectoryJsonnetTlaArgs
                                                        {
                                                            Code = false,
                                                            Name = "string",
                                                            Value = "string",
                                                        },
                                                    },
                                                },
                                                Recurse = false,
                                            },
                                            Helm = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeTemplateSpecSourceHelmArgs
                                            {
                                                FileParameters = new[]
                                                {
                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeTemplateSpecSourceHelmFileParameterArgs
                                                    {
                                                        Name = "string",
                                                        Path = "string",
                                                    },
                                                },
                                                IgnoreMissingValueFiles = false,
                                                Parameters = new[]
                                                {
                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeTemplateSpecSourceHelmParameterArgs
                                                    {
                                                        ForceString = false,
                                                        Name = "string",
                                                        Value = "string",
                                                    },
                                                },
                                                PassCredentials = false,
                                                ReleaseName = "string",
                                                SkipCrds = false,
                                                ValueFiles = new[]
                                                {
                                                    "string",
                                                },
                                                Values = "string",
                                                Version = "string",
                                            },
                                            Kustomize = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeTemplateSpecSourceKustomizeArgs
                                            {
                                                CommonAnnotations = 
                                                {
                                                    { "string", "string" },
                                                },
                                                CommonLabels = 
                                                {
                                                    { "string", "string" },
                                                },
                                                Images = new[]
                                                {
                                                    "string",
                                                },
                                                NamePrefix = "string",
                                                NameSuffix = "string",
                                                Patches = new[]
                                                {
                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeTemplateSpecSourceKustomizePatchArgs
                                                    {
                                                        Target = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeTemplateSpecSourceKustomizePatchTargetArgs
                                                        {
                                                            AnnotationSelector = "string",
                                                            Group = "string",
                                                            Kind = "string",
                                                            LabelSelector = "string",
                                                            Name = "string",
                                                            Namespace = "string",
                                                            Version = "string",
                                                        },
                                                        Options = 
                                                        {
                                                            { "string", false },
                                                        },
                                                        Patch = "string",
                                                        Path = "string",
                                                    },
                                                },
                                                Version = "string",
                                            },
                                            Path = "string",
                                            Plugin = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeTemplateSpecSourcePluginArgs
                                            {
                                                Envs = new[]
                                                {
                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorMergeTemplateSpecSourcePluginEnvArgs
                                                    {
                                                        Name = "string",
                                                        Value = "string",
                                                    },
                                                },
                                                Name = "string",
                                            },
                                            Ref = "string",
                                            RepoUrl = "string",
                                            TargetRevision = "string",
                                        },
                                    },
                                    SyncPolicy = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeTemplateSpecSyncPolicyArgs
                                    {
                                        Automated = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeTemplateSpecSyncPolicyAutomatedArgs
                                        {
                                            AllowEmpty = false,
                                            Prune = false,
                                            SelfHeal = false,
                                        },
                                        ManagedNamespaceMetadata = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeTemplateSpecSyncPolicyManagedNamespaceMetadataArgs
                                        {
                                            Annotations = 
                                            {
                                                { "string", "string" },
                                            },
                                            Labels = 
                                            {
                                                { "string", "string" },
                                            },
                                        },
                                        Retry = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeTemplateSpecSyncPolicyRetryArgs
                                        {
                                            Backoff = new Argocd.Inputs.ApplicationSetSpecGeneratorMergeTemplateSpecSyncPolicyRetryBackoffArgs
                                            {
                                                Duration = "string",
                                                Factor = "string",
                                                MaxDuration = "string",
                                            },
                                            Limit = "string",
                                        },
                                        SyncOptions = new[]
                                        {
                                            "string",
                                        },
                                    },
                                },
                            },
                        },
                    },
                    PullRequests = new[]
                    {
                        new Argocd.Inputs.ApplicationSetSpecGeneratorPullRequestArgs
                        {
                            BitbucketServer = new Argocd.Inputs.ApplicationSetSpecGeneratorPullRequestBitbucketServerArgs
                            {
                                Api = "string",
                                Project = "string",
                                Repo = "string",
                                BasicAuth = new Argocd.Inputs.ApplicationSetSpecGeneratorPullRequestBitbucketServerBasicAuthArgs
                                {
                                    PasswordRef = new Argocd.Inputs.ApplicationSetSpecGeneratorPullRequestBitbucketServerBasicAuthPasswordRefArgs
                                    {
                                        Key = "string",
                                        SecretName = "string",
                                    },
                                    Username = "string",
                                },
                            },
                            Filters = new[]
                            {
                                new Argocd.Inputs.ApplicationSetSpecGeneratorPullRequestFilterArgs
                                {
                                    BranchMatch = "string",
                                },
                            },
                            Gitea = new Argocd.Inputs.ApplicationSetSpecGeneratorPullRequestGiteaArgs
                            {
                                Api = "string",
                                Owner = "string",
                                Repo = "string",
                                Insecure = false,
                                TokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorPullRequestGiteaTokenRefArgs
                                {
                                    Key = "string",
                                    SecretName = "string",
                                },
                            },
                            Github = new Argocd.Inputs.ApplicationSetSpecGeneratorPullRequestGithubArgs
                            {
                                Owner = "string",
                                Repo = "string",
                                Api = "string",
                                AppSecretName = "string",
                                Labels = new[]
                                {
                                    "string",
                                },
                                TokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorPullRequestGithubTokenRefArgs
                                {
                                    Key = "string",
                                    SecretName = "string",
                                },
                            },
                            Gitlab = new Argocd.Inputs.ApplicationSetSpecGeneratorPullRequestGitlabArgs
                            {
                                Project = "string",
                                Api = "string",
                                Labels = new[]
                                {
                                    "string",
                                },
                                PullRequestState = "string",
                                TokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorPullRequestGitlabTokenRefArgs
                                {
                                    Key = "string",
                                    SecretName = "string",
                                },
                            },
                            RequeueAfterSeconds = "string",
                            Template = new Argocd.Inputs.ApplicationSetSpecGeneratorPullRequestTemplateArgs
                            {
                                Metadata = new Argocd.Inputs.ApplicationSetSpecGeneratorPullRequestTemplateMetadataArgs
                                {
                                    Annotations = 
                                    {
                                        { "string", "string" },
                                    },
                                    Finalizers = new[]
                                    {
                                        "string",
                                    },
                                    Labels = 
                                    {
                                        { "string", "string" },
                                    },
                                    Name = "string",
                                    Namespace = "string",
                                },
                                Spec = new Argocd.Inputs.ApplicationSetSpecGeneratorPullRequestTemplateSpecArgs
                                {
                                    Destination = new Argocd.Inputs.ApplicationSetSpecGeneratorPullRequestTemplateSpecDestinationArgs
                                    {
                                        Name = "string",
                                        Namespace = "string",
                                        Server = "string",
                                    },
                                    IgnoreDifferences = new[]
                                    {
                                        new Argocd.Inputs.ApplicationSetSpecGeneratorPullRequestTemplateSpecIgnoreDifferenceArgs
                                        {
                                            Group = "string",
                                            JqPathExpressions = new[]
                                            {
                                                "string",
                                            },
                                            JsonPointers = new[]
                                            {
                                                "string",
                                            },
                                            Kind = "string",
                                            ManagedFieldsManagers = new[]
                                            {
                                                "string",
                                            },
                                            Name = "string",
                                            Namespace = "string",
                                        },
                                    },
                                    Infos = new[]
                                    {
                                        new Argocd.Inputs.ApplicationSetSpecGeneratorPullRequestTemplateSpecInfoArgs
                                        {
                                            Name = "string",
                                            Value = "string",
                                        },
                                    },
                                    Project = "string",
                                    RevisionHistoryLimit = 0,
                                    Sources = new[]
                                    {
                                        new Argocd.Inputs.ApplicationSetSpecGeneratorPullRequestTemplateSpecSourceArgs
                                        {
                                            Chart = "string",
                                            Directory = new Argocd.Inputs.ApplicationSetSpecGeneratorPullRequestTemplateSpecSourceDirectoryArgs
                                            {
                                                Exclude = "string",
                                                Include = "string",
                                                Jsonnet = new Argocd.Inputs.ApplicationSetSpecGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetArgs
                                                {
                                                    ExtVars = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetExtVarArgs
                                                        {
                                                            Code = false,
                                                            Name = "string",
                                                            Value = "string",
                                                        },
                                                    },
                                                    Libs = new[]
                                                    {
                                                        "string",
                                                    },
                                                    Tlas = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetTlaArgs
                                                        {
                                                            Code = false,
                                                            Name = "string",
                                                            Value = "string",
                                                        },
                                                    },
                                                },
                                                Recurse = false,
                                            },
                                            Helm = new Argocd.Inputs.ApplicationSetSpecGeneratorPullRequestTemplateSpecSourceHelmArgs
                                            {
                                                FileParameters = new[]
                                                {
                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorPullRequestTemplateSpecSourceHelmFileParameterArgs
                                                    {
                                                        Name = "string",
                                                        Path = "string",
                                                    },
                                                },
                                                IgnoreMissingValueFiles = false,
                                                Parameters = new[]
                                                {
                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorPullRequestTemplateSpecSourceHelmParameterArgs
                                                    {
                                                        ForceString = false,
                                                        Name = "string",
                                                        Value = "string",
                                                    },
                                                },
                                                PassCredentials = false,
                                                ReleaseName = "string",
                                                SkipCrds = false,
                                                ValueFiles = new[]
                                                {
                                                    "string",
                                                },
                                                Values = "string",
                                                Version = "string",
                                            },
                                            Kustomize = new Argocd.Inputs.ApplicationSetSpecGeneratorPullRequestTemplateSpecSourceKustomizeArgs
                                            {
                                                CommonAnnotations = 
                                                {
                                                    { "string", "string" },
                                                },
                                                CommonLabels = 
                                                {
                                                    { "string", "string" },
                                                },
                                                Images = new[]
                                                {
                                                    "string",
                                                },
                                                NamePrefix = "string",
                                                NameSuffix = "string",
                                                Patches = new[]
                                                {
                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorPullRequestTemplateSpecSourceKustomizePatchArgs
                                                    {
                                                        Target = new Argocd.Inputs.ApplicationSetSpecGeneratorPullRequestTemplateSpecSourceKustomizePatchTargetArgs
                                                        {
                                                            AnnotationSelector = "string",
                                                            Group = "string",
                                                            Kind = "string",
                                                            LabelSelector = "string",
                                                            Name = "string",
                                                            Namespace = "string",
                                                            Version = "string",
                                                        },
                                                        Options = 
                                                        {
                                                            { "string", false },
                                                        },
                                                        Patch = "string",
                                                        Path = "string",
                                                    },
                                                },
                                                Version = "string",
                                            },
                                            Path = "string",
                                            Plugin = new Argocd.Inputs.ApplicationSetSpecGeneratorPullRequestTemplateSpecSourcePluginArgs
                                            {
                                                Envs = new[]
                                                {
                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorPullRequestTemplateSpecSourcePluginEnvArgs
                                                    {
                                                        Name = "string",
                                                        Value = "string",
                                                    },
                                                },
                                                Name = "string",
                                            },
                                            Ref = "string",
                                            RepoUrl = "string",
                                            TargetRevision = "string",
                                        },
                                    },
                                    SyncPolicy = new Argocd.Inputs.ApplicationSetSpecGeneratorPullRequestTemplateSpecSyncPolicyArgs
                                    {
                                        Automated = new Argocd.Inputs.ApplicationSetSpecGeneratorPullRequestTemplateSpecSyncPolicyAutomatedArgs
                                        {
                                            AllowEmpty = false,
                                            Prune = false,
                                            SelfHeal = false,
                                        },
                                        ManagedNamespaceMetadata = new Argocd.Inputs.ApplicationSetSpecGeneratorPullRequestTemplateSpecSyncPolicyManagedNamespaceMetadataArgs
                                        {
                                            Annotations = 
                                            {
                                                { "string", "string" },
                                            },
                                            Labels = 
                                            {
                                                { "string", "string" },
                                            },
                                        },
                                        Retry = new Argocd.Inputs.ApplicationSetSpecGeneratorPullRequestTemplateSpecSyncPolicyRetryArgs
                                        {
                                            Backoff = new Argocd.Inputs.ApplicationSetSpecGeneratorPullRequestTemplateSpecSyncPolicyRetryBackoffArgs
                                            {
                                                Duration = "string",
                                                Factor = "string",
                                                MaxDuration = "string",
                                            },
                                            Limit = "string",
                                        },
                                        SyncOptions = new[]
                                        {
                                            "string",
                                        },
                                    },
                                },
                            },
                        },
                    },
                    ScmProviders = new[]
                    {
                        new Argocd.Inputs.ApplicationSetSpecGeneratorScmProviderArgs
                        {
                            AzureDevops = new Argocd.Inputs.ApplicationSetSpecGeneratorScmProviderAzureDevopsArgs
                            {
                                Organization = "string",
                                TeamProject = "string",
                                AccessTokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorScmProviderAzureDevopsAccessTokenRefArgs
                                {
                                    Key = "string",
                                    SecretName = "string",
                                },
                                AllBranches = false,
                                Api = "string",
                            },
                            BitbucketCloud = new Argocd.Inputs.ApplicationSetSpecGeneratorScmProviderBitbucketCloudArgs
                            {
                                Owner = "string",
                                User = "string",
                                AllBranches = false,
                                AppPasswordRef = new Argocd.Inputs.ApplicationSetSpecGeneratorScmProviderBitbucketCloudAppPasswordRefArgs
                                {
                                    Key = "string",
                                    SecretName = "string",
                                },
                            },
                            BitbucketServer = new Argocd.Inputs.ApplicationSetSpecGeneratorScmProviderBitbucketServerArgs
                            {
                                Api = "string",
                                Project = "string",
                                AllBranches = false,
                                BasicAuth = new Argocd.Inputs.ApplicationSetSpecGeneratorScmProviderBitbucketServerBasicAuthArgs
                                {
                                    PasswordRef = new Argocd.Inputs.ApplicationSetSpecGeneratorScmProviderBitbucketServerBasicAuthPasswordRefArgs
                                    {
                                        Key = "string",
                                        SecretName = "string",
                                    },
                                    Username = "string",
                                },
                            },
                            CloneProtocol = "string",
                            Filters = new[]
                            {
                                new Argocd.Inputs.ApplicationSetSpecGeneratorScmProviderFilterArgs
                                {
                                    BranchMatch = "string",
                                    LabelMatch = "string",
                                    PathsDoNotExists = new[]
                                    {
                                        "string",
                                    },
                                    PathsExists = new[]
                                    {
                                        "string",
                                    },
                                    RepositoryMatch = "string",
                                },
                            },
                            Gitea = new Argocd.Inputs.ApplicationSetSpecGeneratorScmProviderGiteaArgs
                            {
                                Owner = "string",
                                AllBranches = false,
                                Api = "string",
                                Insecure = false,
                                TokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorScmProviderGiteaTokenRefArgs
                                {
                                    Key = "string",
                                    SecretName = "string",
                                },
                            },
                            Github = new Argocd.Inputs.ApplicationSetSpecGeneratorScmProviderGithubArgs
                            {
                                Organization = "string",
                                AllBranches = false,
                                Api = "string",
                                AppSecretName = "string",
                                TokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorScmProviderGithubTokenRefArgs
                                {
                                    Key = "string",
                                    SecretName = "string",
                                },
                            },
                            Gitlab = new Argocd.Inputs.ApplicationSetSpecGeneratorScmProviderGitlabArgs
                            {
                                Group = "string",
                                AllBranches = false,
                                Api = "string",
                                IncludeSubgroups = false,
                                TokenRef = new Argocd.Inputs.ApplicationSetSpecGeneratorScmProviderGitlabTokenRefArgs
                                {
                                    Key = "string",
                                    SecretName = "string",
                                },
                            },
                            RequeueAfterSeconds = "string",
                            Template = new Argocd.Inputs.ApplicationSetSpecGeneratorScmProviderTemplateArgs
                            {
                                Metadata = new Argocd.Inputs.ApplicationSetSpecGeneratorScmProviderTemplateMetadataArgs
                                {
                                    Annotations = 
                                    {
                                        { "string", "string" },
                                    },
                                    Finalizers = new[]
                                    {
                                        "string",
                                    },
                                    Labels = 
                                    {
                                        { "string", "string" },
                                    },
                                    Name = "string",
                                    Namespace = "string",
                                },
                                Spec = new Argocd.Inputs.ApplicationSetSpecGeneratorScmProviderTemplateSpecArgs
                                {
                                    Destination = new Argocd.Inputs.ApplicationSetSpecGeneratorScmProviderTemplateSpecDestinationArgs
                                    {
                                        Name = "string",
                                        Namespace = "string",
                                        Server = "string",
                                    },
                                    IgnoreDifferences = new[]
                                    {
                                        new Argocd.Inputs.ApplicationSetSpecGeneratorScmProviderTemplateSpecIgnoreDifferenceArgs
                                        {
                                            Group = "string",
                                            JqPathExpressions = new[]
                                            {
                                                "string",
                                            },
                                            JsonPointers = new[]
                                            {
                                                "string",
                                            },
                                            Kind = "string",
                                            ManagedFieldsManagers = new[]
                                            {
                                                "string",
                                            },
                                            Name = "string",
                                            Namespace = "string",
                                        },
                                    },
                                    Infos = new[]
                                    {
                                        new Argocd.Inputs.ApplicationSetSpecGeneratorScmProviderTemplateSpecInfoArgs
                                        {
                                            Name = "string",
                                            Value = "string",
                                        },
                                    },
                                    Project = "string",
                                    RevisionHistoryLimit = 0,
                                    Sources = new[]
                                    {
                                        new Argocd.Inputs.ApplicationSetSpecGeneratorScmProviderTemplateSpecSourceArgs
                                        {
                                            Chart = "string",
                                            Directory = new Argocd.Inputs.ApplicationSetSpecGeneratorScmProviderTemplateSpecSourceDirectoryArgs
                                            {
                                                Exclude = "string",
                                                Include = "string",
                                                Jsonnet = new Argocd.Inputs.ApplicationSetSpecGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetArgs
                                                {
                                                    ExtVars = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetExtVarArgs
                                                        {
                                                            Code = false,
                                                            Name = "string",
                                                            Value = "string",
                                                        },
                                                    },
                                                    Libs = new[]
                                                    {
                                                        "string",
                                                    },
                                                    Tlas = new[]
                                                    {
                                                        new Argocd.Inputs.ApplicationSetSpecGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetTlaArgs
                                                        {
                                                            Code = false,
                                                            Name = "string",
                                                            Value = "string",
                                                        },
                                                    },
                                                },
                                                Recurse = false,
                                            },
                                            Helm = new Argocd.Inputs.ApplicationSetSpecGeneratorScmProviderTemplateSpecSourceHelmArgs
                                            {
                                                FileParameters = new[]
                                                {
                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorScmProviderTemplateSpecSourceHelmFileParameterArgs
                                                    {
                                                        Name = "string",
                                                        Path = "string",
                                                    },
                                                },
                                                IgnoreMissingValueFiles = false,
                                                Parameters = new[]
                                                {
                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorScmProviderTemplateSpecSourceHelmParameterArgs
                                                    {
                                                        ForceString = false,
                                                        Name = "string",
                                                        Value = "string",
                                                    },
                                                },
                                                PassCredentials = false,
                                                ReleaseName = "string",
                                                SkipCrds = false,
                                                ValueFiles = new[]
                                                {
                                                    "string",
                                                },
                                                Values = "string",
                                                Version = "string",
                                            },
                                            Kustomize = new Argocd.Inputs.ApplicationSetSpecGeneratorScmProviderTemplateSpecSourceKustomizeArgs
                                            {
                                                CommonAnnotations = 
                                                {
                                                    { "string", "string" },
                                                },
                                                CommonLabels = 
                                                {
                                                    { "string", "string" },
                                                },
                                                Images = new[]
                                                {
                                                    "string",
                                                },
                                                NamePrefix = "string",
                                                NameSuffix = "string",
                                                Patches = new[]
                                                {
                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorScmProviderTemplateSpecSourceKustomizePatchArgs
                                                    {
                                                        Target = new Argocd.Inputs.ApplicationSetSpecGeneratorScmProviderTemplateSpecSourceKustomizePatchTargetArgs
                                                        {
                                                            AnnotationSelector = "string",
                                                            Group = "string",
                                                            Kind = "string",
                                                            LabelSelector = "string",
                                                            Name = "string",
                                                            Namespace = "string",
                                                            Version = "string",
                                                        },
                                                        Options = 
                                                        {
                                                            { "string", false },
                                                        },
                                                        Patch = "string",
                                                        Path = "string",
                                                    },
                                                },
                                                Version = "string",
                                            },
                                            Path = "string",
                                            Plugin = new Argocd.Inputs.ApplicationSetSpecGeneratorScmProviderTemplateSpecSourcePluginArgs
                                            {
                                                Envs = new[]
                                                {
                                                    new Argocd.Inputs.ApplicationSetSpecGeneratorScmProviderTemplateSpecSourcePluginEnvArgs
                                                    {
                                                        Name = "string",
                                                        Value = "string",
                                                    },
                                                },
                                                Name = "string",
                                            },
                                            Ref = "string",
                                            RepoUrl = "string",
                                            TargetRevision = "string",
                                        },
                                    },
                                    SyncPolicy = new Argocd.Inputs.ApplicationSetSpecGeneratorScmProviderTemplateSpecSyncPolicyArgs
                                    {
                                        Automated = new Argocd.Inputs.ApplicationSetSpecGeneratorScmProviderTemplateSpecSyncPolicyAutomatedArgs
                                        {
                                            AllowEmpty = false,
                                            Prune = false,
                                            SelfHeal = false,
                                        },
                                        ManagedNamespaceMetadata = new Argocd.Inputs.ApplicationSetSpecGeneratorScmProviderTemplateSpecSyncPolicyManagedNamespaceMetadataArgs
                                        {
                                            Annotations = 
                                            {
                                                { "string", "string" },
                                            },
                                            Labels = 
                                            {
                                                { "string", "string" },
                                            },
                                        },
                                        Retry = new Argocd.Inputs.ApplicationSetSpecGeneratorScmProviderTemplateSpecSyncPolicyRetryArgs
                                        {
                                            Backoff = new Argocd.Inputs.ApplicationSetSpecGeneratorScmProviderTemplateSpecSyncPolicyRetryBackoffArgs
                                            {
                                                Duration = "string",
                                                Factor = "string",
                                                MaxDuration = "string",
                                            },
                                            Limit = "string",
                                        },
                                        SyncOptions = new[]
                                        {
                                            "string",
                                        },
                                    },
                                },
                            },
                        },
                    },
                    Selector = new Argocd.Inputs.ApplicationSetSpecGeneratorSelectorArgs
                    {
                        MatchExpressions = new[]
                        {
                            new Argocd.Inputs.ApplicationSetSpecGeneratorSelectorMatchExpressionArgs
                            {
                                Key = "string",
                                Operator = "string",
                                Values = new[]
                                {
                                    "string",
                                },
                            },
                        },
                        MatchLabels = 
                        {
                            { "string", "string" },
                        },
                    },
                },
            },
            Template = new Argocd.Inputs.ApplicationSetSpecTemplateArgs
            {
                Metadata = new Argocd.Inputs.ApplicationSetSpecTemplateMetadataArgs
                {
                    Name = "string",
                    Annotations = 
                    {
                        { "string", "string" },
                    },
                    Finalizers = new[]
                    {
                        "string",
                    },
                    Labels = 
                    {
                        { "string", "string" },
                    },
                    Namespace = "string",
                },
                Spec = new Argocd.Inputs.ApplicationSetSpecTemplateSpecArgs
                {
                    Destination = new Argocd.Inputs.ApplicationSetSpecTemplateSpecDestinationArgs
                    {
                        Name = "string",
                        Namespace = "string",
                        Server = "string",
                    },
                    Sources = new[]
                    {
                        new Argocd.Inputs.ApplicationSetSpecTemplateSpecSourceArgs
                        {
                            RepoUrl = "string",
                            Chart = "string",
                            Directory = new Argocd.Inputs.ApplicationSetSpecTemplateSpecSourceDirectoryArgs
                            {
                                Exclude = "string",
                                Include = "string",
                                Jsonnet = new Argocd.Inputs.ApplicationSetSpecTemplateSpecSourceDirectoryJsonnetArgs
                                {
                                    ExtVars = new[]
                                    {
                                        new Argocd.Inputs.ApplicationSetSpecTemplateSpecSourceDirectoryJsonnetExtVarArgs
                                        {
                                            Code = false,
                                            Name = "string",
                                            Value = "string",
                                        },
                                    },
                                    Libs = new[]
                                    {
                                        "string",
                                    },
                                    Tlas = new[]
                                    {
                                        new Argocd.Inputs.ApplicationSetSpecTemplateSpecSourceDirectoryJsonnetTlaArgs
                                        {
                                            Code = false,
                                            Name = "string",
                                            Value = "string",
                                        },
                                    },
                                },
                                Recurse = false,
                            },
                            Helm = new Argocd.Inputs.ApplicationSetSpecTemplateSpecSourceHelmArgs
                            {
                                FileParameters = new[]
                                {
                                    new Argocd.Inputs.ApplicationSetSpecTemplateSpecSourceHelmFileParameterArgs
                                    {
                                        Name = "string",
                                        Path = "string",
                                    },
                                },
                                IgnoreMissingValueFiles = false,
                                Parameters = new[]
                                {
                                    new Argocd.Inputs.ApplicationSetSpecTemplateSpecSourceHelmParameterArgs
                                    {
                                        ForceString = false,
                                        Name = "string",
                                        Value = "string",
                                    },
                                },
                                PassCredentials = false,
                                ReleaseName = "string",
                                SkipCrds = false,
                                ValueFiles = new[]
                                {
                                    "string",
                                },
                                Values = "string",
                                Version = "string",
                            },
                            Kustomize = new Argocd.Inputs.ApplicationSetSpecTemplateSpecSourceKustomizeArgs
                            {
                                CommonAnnotations = 
                                {
                                    { "string", "string" },
                                },
                                CommonLabels = 
                                {
                                    { "string", "string" },
                                },
                                Images = new[]
                                {
                                    "string",
                                },
                                NamePrefix = "string",
                                NameSuffix = "string",
                                Patches = new[]
                                {
                                    new Argocd.Inputs.ApplicationSetSpecTemplateSpecSourceKustomizePatchArgs
                                    {
                                        Target = new Argocd.Inputs.ApplicationSetSpecTemplateSpecSourceKustomizePatchTargetArgs
                                        {
                                            AnnotationSelector = "string",
                                            Group = "string",
                                            Kind = "string",
                                            LabelSelector = "string",
                                            Name = "string",
                                            Namespace = "string",
                                            Version = "string",
                                        },
                                        Options = 
                                        {
                                            { "string", false },
                                        },
                                        Patch = "string",
                                        Path = "string",
                                    },
                                },
                                Version = "string",
                            },
                            Path = "string",
                            Plugin = new Argocd.Inputs.ApplicationSetSpecTemplateSpecSourcePluginArgs
                            {
                                Envs = new[]
                                {
                                    new Argocd.Inputs.ApplicationSetSpecTemplateSpecSourcePluginEnvArgs
                                    {
                                        Name = "string",
                                        Value = "string",
                                    },
                                },
                                Name = "string",
                            },
                            Ref = "string",
                            TargetRevision = "string",
                        },
                    },
                    IgnoreDifferences = new[]
                    {
                        new Argocd.Inputs.ApplicationSetSpecTemplateSpecIgnoreDifferenceArgs
                        {
                            Group = "string",
                            JqPathExpressions = new[]
                            {
                                "string",
                            },
                            JsonPointers = new[]
                            {
                                "string",
                            },
                            Kind = "string",
                            ManagedFieldsManagers = new[]
                            {
                                "string",
                            },
                            Name = "string",
                            Namespace = "string",
                        },
                    },
                    Infos = new[]
                    {
                        new Argocd.Inputs.ApplicationSetSpecTemplateSpecInfoArgs
                        {
                            Name = "string",
                            Value = "string",
                        },
                    },
                    Project = "string",
                    RevisionHistoryLimit = 0,
                    SyncPolicy = new Argocd.Inputs.ApplicationSetSpecTemplateSpecSyncPolicyArgs
                    {
                        Automated = new Argocd.Inputs.ApplicationSetSpecTemplateSpecSyncPolicyAutomatedArgs
                        {
                            AllowEmpty = false,
                            Prune = false,
                            SelfHeal = false,
                        },
                        ManagedNamespaceMetadata = new Argocd.Inputs.ApplicationSetSpecTemplateSpecSyncPolicyManagedNamespaceMetadataArgs
                        {
                            Annotations = 
                            {
                                { "string", "string" },
                            },
                            Labels = 
                            {
                                { "string", "string" },
                            },
                        },
                        Retry = new Argocd.Inputs.ApplicationSetSpecTemplateSpecSyncPolicyRetryArgs
                        {
                            Backoff = new Argocd.Inputs.ApplicationSetSpecTemplateSpecSyncPolicyRetryBackoffArgs
                            {
                                Duration = "string",
                                Factor = "string",
                                MaxDuration = "string",
                            },
                            Limit = "string",
                        },
                        SyncOptions = new[]
                        {
                            "string",
                        },
                    },
                },
            },
            GoTemplate = false,
            GoTemplateOptions = new[]
            {
                "string",
            },
            IgnoreApplicationDifferences = new[]
            {
                new Argocd.Inputs.ApplicationSetSpecIgnoreApplicationDifferenceArgs
                {
                    JqPathExpressions = new[]
                    {
                        "string",
                    },
                    JsonPointers = new[]
                    {
                        "string",
                    },
                    Name = "string",
                },
            },
            Strategy = new Argocd.Inputs.ApplicationSetSpecStrategyArgs
            {
                Type = "string",
                RollingSyncs = new[]
                {
                    new Argocd.Inputs.ApplicationSetSpecStrategyRollingSyncArgs
                    {
                        Steps = new[]
                        {
                            new Argocd.Inputs.ApplicationSetSpecStrategyRollingSyncStepArgs
                            {
                                MatchExpressions = new[]
                                {
                                    new Argocd.Inputs.ApplicationSetSpecStrategyRollingSyncStepMatchExpressionArgs
                                    {
                                        Key = "string",
                                        Operator = "string",
                                        Values = new[]
                                        {
                                            "string",
                                        },
                                    },
                                },
                                MaxUpdate = "string",
                            },
                        },
                    },
                },
            },
            SyncPolicy = new Argocd.Inputs.ApplicationSetSpecSyncPolicyArgs
            {
                ApplicationsSync = "string",
                PreserveResourcesOnDeletion = false,
            },
            TemplatePatch = "string",
        },
    });
    
    example, err := argocd.NewApplicationSet(ctx, "applicationSetResource", &argocd.ApplicationSetArgs{
    	Metadata: &argocd.ApplicationSetMetadataArgs{
    		Annotations: pulumi.StringMap{
    			"string": pulumi.String("string"),
    		},
    		Generation: pulumi.Int(0),
    		Labels: pulumi.StringMap{
    			"string": pulumi.String("string"),
    		},
    		Name:            pulumi.String("string"),
    		Namespace:       pulumi.String("string"),
    		ResourceVersion: pulumi.String("string"),
    		Uid:             pulumi.String("string"),
    	},
    	Spec: &argocd.ApplicationSetSpecArgs{
    		Generators: argocd.ApplicationSetSpecGeneratorArray{
    			&argocd.ApplicationSetSpecGeneratorArgs{
    				ClusterDecisionResources: argocd.ApplicationSetSpecGeneratorClusterDecisionResourceArray{
    					&argocd.ApplicationSetSpecGeneratorClusterDecisionResourceArgs{
    						ConfigMapRef: pulumi.String("string"),
    						LabelSelector: &argocd.ApplicationSetSpecGeneratorClusterDecisionResourceLabelSelectorArgs{
    							MatchExpressions: argocd.ApplicationSetSpecGeneratorClusterDecisionResourceLabelSelectorMatchExpressionArray{
    								&argocd.ApplicationSetSpecGeneratorClusterDecisionResourceLabelSelectorMatchExpressionArgs{
    									Key:      pulumi.String("string"),
    									Operator: pulumi.String("string"),
    									Values: pulumi.StringArray{
    										pulumi.String("string"),
    									},
    								},
    							},
    							MatchLabels: pulumi.StringMap{
    								"string": pulumi.String("string"),
    							},
    						},
    						Name:                pulumi.String("string"),
    						RequeueAfterSeconds: pulumi.String("string"),
    						Template: &argocd.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateArgs{
    							Metadata: &argocd.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateMetadataArgs{
    								Annotations: pulumi.StringMap{
    									"string": pulumi.String("string"),
    								},
    								Finalizers: pulumi.StringArray{
    									pulumi.String("string"),
    								},
    								Labels: pulumi.StringMap{
    									"string": pulumi.String("string"),
    								},
    								Name:      pulumi.String("string"),
    								Namespace: pulumi.String("string"),
    							},
    							Spec: &argocd.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecArgs{
    								Destination: &argocd.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecDestinationArgs{
    									Name:      pulumi.String("string"),
    									Namespace: pulumi.String("string"),
    									Server:    pulumi.String("string"),
    								},
    								IgnoreDifferences: argocd.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecIgnoreDifferenceArray{
    									&argocd.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecIgnoreDifferenceArgs{
    										Group: pulumi.String("string"),
    										JqPathExpressions: pulumi.StringArray{
    											pulumi.String("string"),
    										},
    										JsonPointers: pulumi.StringArray{
    											pulumi.String("string"),
    										},
    										Kind: pulumi.String("string"),
    										ManagedFieldsManagers: pulumi.StringArray{
    											pulumi.String("string"),
    										},
    										Name:      pulumi.String("string"),
    										Namespace: pulumi.String("string"),
    									},
    								},
    								Infos: argocd.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecInfoArray{
    									&argocd.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecInfoArgs{
    										Name:  pulumi.String("string"),
    										Value: pulumi.String("string"),
    									},
    								},
    								Project:              pulumi.String("string"),
    								RevisionHistoryLimit: pulumi.Int(0),
    								Sources: argocd.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceArray{
    									&argocd.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceArgs{
    										Chart: pulumi.String("string"),
    										Directory: &argocd.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryArgs{
    											Exclude: pulumi.String("string"),
    											Include: pulumi.String("string"),
    											Jsonnet: &argocd.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetArgs{
    												ExtVars: argocd.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetExtVarArray{
    													&argocd.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetExtVarArgs{
    														Code:  pulumi.Bool(false),
    														Name:  pulumi.String("string"),
    														Value: pulumi.String("string"),
    													},
    												},
    												Libs: pulumi.StringArray{
    													pulumi.String("string"),
    												},
    												Tlas: argocd.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetTlaArray{
    													&argocd.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetTlaArgs{
    														Code:  pulumi.Bool(false),
    														Name:  pulumi.String("string"),
    														Value: pulumi.String("string"),
    													},
    												},
    											},
    											Recurse: pulumi.Bool(false),
    										},
    										Helm: &argocd.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceHelmArgs{
    											FileParameters: argocd.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameterArray{
    												&argocd.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameterArgs{
    													Name: pulumi.String("string"),
    													Path: pulumi.String("string"),
    												},
    											},
    											IgnoreMissingValueFiles: pulumi.Bool(false),
    											Parameters: argocd.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameterArray{
    												&argocd.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameterArgs{
    													ForceString: pulumi.Bool(false),
    													Name:        pulumi.String("string"),
    													Value:       pulumi.String("string"),
    												},
    											},
    											PassCredentials: pulumi.Bool(false),
    											ReleaseName:     pulumi.String("string"),
    											SkipCrds:        pulumi.Bool(false),
    											ValueFiles: pulumi.StringArray{
    												pulumi.String("string"),
    											},
    											Values:  pulumi.String("string"),
    											Version: pulumi.String("string"),
    										},
    										Kustomize: &argocd.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceKustomizeArgs{
    											CommonAnnotations: pulumi.StringMap{
    												"string": pulumi.String("string"),
    											},
    											CommonLabels: pulumi.StringMap{
    												"string": pulumi.String("string"),
    											},
    											Images: pulumi.StringArray{
    												pulumi.String("string"),
    											},
    											NamePrefix: pulumi.String("string"),
    											NameSuffix: pulumi.String("string"),
    											Patches: argocd.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchArray{
    												&argocd.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchArgs{
    													Target: &argocd.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTargetArgs{
    														AnnotationSelector: pulumi.String("string"),
    														Group:              pulumi.String("string"),
    														Kind:               pulumi.String("string"),
    														LabelSelector:      pulumi.String("string"),
    														Name:               pulumi.String("string"),
    														Namespace:          pulumi.String("string"),
    														Version:            pulumi.String("string"),
    													},
    													Options: pulumi.BoolMap{
    														"string": pulumi.Bool(false),
    													},
    													Patch: pulumi.String("string"),
    													Path:  pulumi.String("string"),
    												},
    											},
    											Version: pulumi.String("string"),
    										},
    										Path: pulumi.String("string"),
    										Plugin: &argocd.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourcePluginArgs{
    											Envs: argocd.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnvArray{
    												&argocd.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnvArgs{
    													Name:  pulumi.String("string"),
    													Value: pulumi.String("string"),
    												},
    											},
    											Name: pulumi.String("string"),
    										},
    										Ref:            pulumi.String("string"),
    										RepoUrl:        pulumi.String("string"),
    										TargetRevision: pulumi.String("string"),
    									},
    								},
    								SyncPolicy: &argocd.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicyArgs{
    									Automated: &argocd.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomatedArgs{
    										AllowEmpty: pulumi.Bool(false),
    										Prune:      pulumi.Bool(false),
    										SelfHeal:   pulumi.Bool(false),
    									},
    									ManagedNamespaceMetadata: &argocd.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadataArgs{
    										Annotations: pulumi.StringMap{
    											"string": pulumi.String("string"),
    										},
    										Labels: pulumi.StringMap{
    											"string": pulumi.String("string"),
    										},
    									},
    									Retry: &argocd.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryArgs{
    										Backoff: &argocd.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoffArgs{
    											Duration:    pulumi.String("string"),
    											Factor:      pulumi.String("string"),
    											MaxDuration: pulumi.String("string"),
    										},
    										Limit: pulumi.String("string"),
    									},
    									SyncOptions: pulumi.StringArray{
    										pulumi.String("string"),
    									},
    								},
    							},
    						},
    						Values: pulumi.StringMap{
    							"string": pulumi.String("string"),
    						},
    					},
    				},
    				Clusters: argocd.ApplicationSetSpecGeneratorClusterArray{
    					&argocd.ApplicationSetSpecGeneratorClusterArgs{
    						Enabled: pulumi.Bool(false),
    						Selector: &argocd.ApplicationSetSpecGeneratorClusterSelectorArgs{
    							MatchExpressions: argocd.ApplicationSetSpecGeneratorClusterSelectorMatchExpressionArray{
    								&argocd.ApplicationSetSpecGeneratorClusterSelectorMatchExpressionArgs{
    									Key:      pulumi.String("string"),
    									Operator: pulumi.String("string"),
    									Values: pulumi.StringArray{
    										pulumi.String("string"),
    									},
    								},
    							},
    							MatchLabels: pulumi.StringMap{
    								"string": pulumi.String("string"),
    							},
    						},
    						Template: &argocd.ApplicationSetSpecGeneratorClusterTemplateArgs{
    							Metadata: &argocd.ApplicationSetSpecGeneratorClusterTemplateMetadataArgs{
    								Annotations: pulumi.StringMap{
    									"string": pulumi.String("string"),
    								},
    								Finalizers: pulumi.StringArray{
    									pulumi.String("string"),
    								},
    								Labels: pulumi.StringMap{
    									"string": pulumi.String("string"),
    								},
    								Name:      pulumi.String("string"),
    								Namespace: pulumi.String("string"),
    							},
    							Spec: &argocd.ApplicationSetSpecGeneratorClusterTemplateSpecArgs{
    								Destination: &argocd.ApplicationSetSpecGeneratorClusterTemplateSpecDestinationArgs{
    									Name:      pulumi.String("string"),
    									Namespace: pulumi.String("string"),
    									Server:    pulumi.String("string"),
    								},
    								IgnoreDifferences: argocd.ApplicationSetSpecGeneratorClusterTemplateSpecIgnoreDifferenceArray{
    									&argocd.ApplicationSetSpecGeneratorClusterTemplateSpecIgnoreDifferenceArgs{
    										Group: pulumi.String("string"),
    										JqPathExpressions: pulumi.StringArray{
    											pulumi.String("string"),
    										},
    										JsonPointers: pulumi.StringArray{
    											pulumi.String("string"),
    										},
    										Kind: pulumi.String("string"),
    										ManagedFieldsManagers: pulumi.StringArray{
    											pulumi.String("string"),
    										},
    										Name:      pulumi.String("string"),
    										Namespace: pulumi.String("string"),
    									},
    								},
    								Infos: argocd.ApplicationSetSpecGeneratorClusterTemplateSpecInfoArray{
    									&argocd.ApplicationSetSpecGeneratorClusterTemplateSpecInfoArgs{
    										Name:  pulumi.String("string"),
    										Value: pulumi.String("string"),
    									},
    								},
    								Project:              pulumi.String("string"),
    								RevisionHistoryLimit: pulumi.Int(0),
    								Sources: argocd.ApplicationSetSpecGeneratorClusterTemplateSpecSourceArray{
    									&argocd.ApplicationSetSpecGeneratorClusterTemplateSpecSourceArgs{
    										Chart: pulumi.String("string"),
    										Directory: &argocd.ApplicationSetSpecGeneratorClusterTemplateSpecSourceDirectoryArgs{
    											Exclude: pulumi.String("string"),
    											Include: pulumi.String("string"),
    											Jsonnet: &argocd.ApplicationSetSpecGeneratorClusterTemplateSpecSourceDirectoryJsonnetArgs{
    												ExtVars: argocd.ApplicationSetSpecGeneratorClusterTemplateSpecSourceDirectoryJsonnetExtVarArray{
    													&argocd.ApplicationSetSpecGeneratorClusterTemplateSpecSourceDirectoryJsonnetExtVarArgs{
    														Code:  pulumi.Bool(false),
    														Name:  pulumi.String("string"),
    														Value: pulumi.String("string"),
    													},
    												},
    												Libs: pulumi.StringArray{
    													pulumi.String("string"),
    												},
    												Tlas: argocd.ApplicationSetSpecGeneratorClusterTemplateSpecSourceDirectoryJsonnetTlaArray{
    													&argocd.ApplicationSetSpecGeneratorClusterTemplateSpecSourceDirectoryJsonnetTlaArgs{
    														Code:  pulumi.Bool(false),
    														Name:  pulumi.String("string"),
    														Value: pulumi.String("string"),
    													},
    												},
    											},
    											Recurse: pulumi.Bool(false),
    										},
    										Helm: &argocd.ApplicationSetSpecGeneratorClusterTemplateSpecSourceHelmArgs{
    											FileParameters: argocd.ApplicationSetSpecGeneratorClusterTemplateSpecSourceHelmFileParameterArray{
    												&argocd.ApplicationSetSpecGeneratorClusterTemplateSpecSourceHelmFileParameterArgs{
    													Name: pulumi.String("string"),
    													Path: pulumi.String("string"),
    												},
    											},
    											IgnoreMissingValueFiles: pulumi.Bool(false),
    											Parameters: argocd.ApplicationSetSpecGeneratorClusterTemplateSpecSourceHelmParameterArray{
    												&argocd.ApplicationSetSpecGeneratorClusterTemplateSpecSourceHelmParameterArgs{
    													ForceString: pulumi.Bool(false),
    													Name:        pulumi.String("string"),
    													Value:       pulumi.String("string"),
    												},
    											},
    											PassCredentials: pulumi.Bool(false),
    											ReleaseName:     pulumi.String("string"),
    											SkipCrds:        pulumi.Bool(false),
    											ValueFiles: pulumi.StringArray{
    												pulumi.String("string"),
    											},
    											Values:  pulumi.String("string"),
    											Version: pulumi.String("string"),
    										},
    										Kustomize: &argocd.ApplicationSetSpecGeneratorClusterTemplateSpecSourceKustomizeArgs{
    											CommonAnnotations: pulumi.StringMap{
    												"string": pulumi.String("string"),
    											},
    											CommonLabels: pulumi.StringMap{
    												"string": pulumi.String("string"),
    											},
    											Images: pulumi.StringArray{
    												pulumi.String("string"),
    											},
    											NamePrefix: pulumi.String("string"),
    											NameSuffix: pulumi.String("string"),
    											Patches: argocd.ApplicationSetSpecGeneratorClusterTemplateSpecSourceKustomizePatchArray{
    												&argocd.ApplicationSetSpecGeneratorClusterTemplateSpecSourceKustomizePatchArgs{
    													Target: &argocd.ApplicationSetSpecGeneratorClusterTemplateSpecSourceKustomizePatchTargetArgs{
    														AnnotationSelector: pulumi.String("string"),
    														Group:              pulumi.String("string"),
    														Kind:               pulumi.String("string"),
    														LabelSelector:      pulumi.String("string"),
    														Name:               pulumi.String("string"),
    														Namespace:          pulumi.String("string"),
    														Version:            pulumi.String("string"),
    													},
    													Options: pulumi.BoolMap{
    														"string": pulumi.Bool(false),
    													},
    													Patch: pulumi.String("string"),
    													Path:  pulumi.String("string"),
    												},
    											},
    											Version: pulumi.String("string"),
    										},
    										Path: pulumi.String("string"),
    										Plugin: &argocd.ApplicationSetSpecGeneratorClusterTemplateSpecSourcePluginArgs{
    											Envs: argocd.ApplicationSetSpecGeneratorClusterTemplateSpecSourcePluginEnvArray{
    												&argocd.ApplicationSetSpecGeneratorClusterTemplateSpecSourcePluginEnvArgs{
    													Name:  pulumi.String("string"),
    													Value: pulumi.String("string"),
    												},
    											},
    											Name: pulumi.String("string"),
    										},
    										Ref:            pulumi.String("string"),
    										RepoUrl:        pulumi.String("string"),
    										TargetRevision: pulumi.String("string"),
    									},
    								},
    								SyncPolicy: &argocd.ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicyArgs{
    									Automated: &argocd.ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicyAutomatedArgs{
    										AllowEmpty: pulumi.Bool(false),
    										Prune:      pulumi.Bool(false),
    										SelfHeal:   pulumi.Bool(false),
    									},
    									ManagedNamespaceMetadata: &argocd.ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadataArgs{
    										Annotations: pulumi.StringMap{
    											"string": pulumi.String("string"),
    										},
    										Labels: pulumi.StringMap{
    											"string": pulumi.String("string"),
    										},
    									},
    									Retry: &argocd.ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicyRetryArgs{
    										Backoff: &argocd.ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicyRetryBackoffArgs{
    											Duration:    pulumi.String("string"),
    											Factor:      pulumi.String("string"),
    											MaxDuration: pulumi.String("string"),
    										},
    										Limit: pulumi.String("string"),
    									},
    									SyncOptions: pulumi.StringArray{
    										pulumi.String("string"),
    									},
    								},
    							},
    						},
    						Values: pulumi.StringMap{
    							"string": pulumi.String("string"),
    						},
    					},
    				},
    				Gits: argocd.ApplicationSetSpecGeneratorGitArray{
    					&argocd.ApplicationSetSpecGeneratorGitArgs{
    						RepoUrl: pulumi.String("string"),
    						Directories: argocd.ApplicationSetSpecGeneratorGitDirectoryArray{
    							&argocd.ApplicationSetSpecGeneratorGitDirectoryArgs{
    								Path:    pulumi.String("string"),
    								Exclude: pulumi.Bool(false),
    							},
    						},
    						Files: argocd.ApplicationSetSpecGeneratorGitFileArray{
    							&argocd.ApplicationSetSpecGeneratorGitFileArgs{
    								Path: pulumi.String("string"),
    							},
    						},
    						PathParamPrefix: pulumi.String("string"),
    						Revision:        pulumi.String("string"),
    						Template: &argocd.ApplicationSetSpecGeneratorGitTemplateArgs{
    							Metadata: &argocd.ApplicationSetSpecGeneratorGitTemplateMetadataArgs{
    								Annotations: pulumi.StringMap{
    									"string": pulumi.String("string"),
    								},
    								Finalizers: pulumi.StringArray{
    									pulumi.String("string"),
    								},
    								Labels: pulumi.StringMap{
    									"string": pulumi.String("string"),
    								},
    								Name:      pulumi.String("string"),
    								Namespace: pulumi.String("string"),
    							},
    							Spec: &argocd.ApplicationSetSpecGeneratorGitTemplateSpecArgs{
    								Destination: &argocd.ApplicationSetSpecGeneratorGitTemplateSpecDestinationArgs{
    									Name:      pulumi.String("string"),
    									Namespace: pulumi.String("string"),
    									Server:    pulumi.String("string"),
    								},
    								IgnoreDifferences: argocd.ApplicationSetSpecGeneratorGitTemplateSpecIgnoreDifferenceArray{
    									&argocd.ApplicationSetSpecGeneratorGitTemplateSpecIgnoreDifferenceArgs{
    										Group: pulumi.String("string"),
    										JqPathExpressions: pulumi.StringArray{
    											pulumi.String("string"),
    										},
    										JsonPointers: pulumi.StringArray{
    											pulumi.String("string"),
    										},
    										Kind: pulumi.String("string"),
    										ManagedFieldsManagers: pulumi.StringArray{
    											pulumi.String("string"),
    										},
    										Name:      pulumi.String("string"),
    										Namespace: pulumi.String("string"),
    									},
    								},
    								Infos: argocd.ApplicationSetSpecGeneratorGitTemplateSpecInfoArray{
    									&argocd.ApplicationSetSpecGeneratorGitTemplateSpecInfoArgs{
    										Name:  pulumi.String("string"),
    										Value: pulumi.String("string"),
    									},
    								},
    								Project:              pulumi.String("string"),
    								RevisionHistoryLimit: pulumi.Int(0),
    								Sources: argocd.ApplicationSetSpecGeneratorGitTemplateSpecSourceArray{
    									&argocd.ApplicationSetSpecGeneratorGitTemplateSpecSourceArgs{
    										Chart: pulumi.String("string"),
    										Directory: &argocd.ApplicationSetSpecGeneratorGitTemplateSpecSourceDirectoryArgs{
    											Exclude: pulumi.String("string"),
    											Include: pulumi.String("string"),
    											Jsonnet: &argocd.ApplicationSetSpecGeneratorGitTemplateSpecSourceDirectoryJsonnetArgs{
    												ExtVars: argocd.ApplicationSetSpecGeneratorGitTemplateSpecSourceDirectoryJsonnetExtVarArray{
    													&argocd.ApplicationSetSpecGeneratorGitTemplateSpecSourceDirectoryJsonnetExtVarArgs{
    														Code:  pulumi.Bool(false),
    														Name:  pulumi.String("string"),
    														Value: pulumi.String("string"),
    													},
    												},
    												Libs: pulumi.StringArray{
    													pulumi.String("string"),
    												},
    												Tlas: argocd.ApplicationSetSpecGeneratorGitTemplateSpecSourceDirectoryJsonnetTlaArray{
    													&argocd.ApplicationSetSpecGeneratorGitTemplateSpecSourceDirectoryJsonnetTlaArgs{
    														Code:  pulumi.Bool(false),
    														Name:  pulumi.String("string"),
    														Value: pulumi.String("string"),
    													},
    												},
    											},
    											Recurse: pulumi.Bool(false),
    										},
    										Helm: &argocd.ApplicationSetSpecGeneratorGitTemplateSpecSourceHelmArgs{
    											FileParameters: argocd.ApplicationSetSpecGeneratorGitTemplateSpecSourceHelmFileParameterArray{
    												&argocd.ApplicationSetSpecGeneratorGitTemplateSpecSourceHelmFileParameterArgs{
    													Name: pulumi.String("string"),
    													Path: pulumi.String("string"),
    												},
    											},
    											IgnoreMissingValueFiles: pulumi.Bool(false),
    											Parameters: argocd.ApplicationSetSpecGeneratorGitTemplateSpecSourceHelmParameterArray{
    												&argocd.ApplicationSetSpecGeneratorGitTemplateSpecSourceHelmParameterArgs{
    													ForceString: pulumi.Bool(false),
    													Name:        pulumi.String("string"),
    													Value:       pulumi.String("string"),
    												},
    											},
    											PassCredentials: pulumi.Bool(false),
    											ReleaseName:     pulumi.String("string"),
    											SkipCrds:        pulumi.Bool(false),
    											ValueFiles: pulumi.StringArray{
    												pulumi.String("string"),
    											},
    											Values:  pulumi.String("string"),
    											Version: pulumi.String("string"),
    										},
    										Kustomize: &argocd.ApplicationSetSpecGeneratorGitTemplateSpecSourceKustomizeArgs{
    											CommonAnnotations: pulumi.StringMap{
    												"string": pulumi.String("string"),
    											},
    											CommonLabels: pulumi.StringMap{
    												"string": pulumi.String("string"),
    											},
    											Images: pulumi.StringArray{
    												pulumi.String("string"),
    											},
    											NamePrefix: pulumi.String("string"),
    											NameSuffix: pulumi.String("string"),
    											Patches: argocd.ApplicationSetSpecGeneratorGitTemplateSpecSourceKustomizePatchArray{
    												&argocd.ApplicationSetSpecGeneratorGitTemplateSpecSourceKustomizePatchArgs{
    													Target: &argocd.ApplicationSetSpecGeneratorGitTemplateSpecSourceKustomizePatchTargetArgs{
    														AnnotationSelector: pulumi.String("string"),
    														Group:              pulumi.String("string"),
    														Kind:               pulumi.String("string"),
    														LabelSelector:      pulumi.String("string"),
    														Name:               pulumi.String("string"),
    														Namespace:          pulumi.String("string"),
    														Version:            pulumi.String("string"),
    													},
    													Options: pulumi.BoolMap{
    														"string": pulumi.Bool(false),
    													},
    													Patch: pulumi.String("string"),
    													Path:  pulumi.String("string"),
    												},
    											},
    											Version: pulumi.String("string"),
    										},
    										Path: pulumi.String("string"),
    										Plugin: &argocd.ApplicationSetSpecGeneratorGitTemplateSpecSourcePluginArgs{
    											Envs: argocd.ApplicationSetSpecGeneratorGitTemplateSpecSourcePluginEnvArray{
    												&argocd.ApplicationSetSpecGeneratorGitTemplateSpecSourcePluginEnvArgs{
    													Name:  pulumi.String("string"),
    													Value: pulumi.String("string"),
    												},
    											},
    											Name: pulumi.String("string"),
    										},
    										Ref:            pulumi.String("string"),
    										RepoUrl:        pulumi.String("string"),
    										TargetRevision: pulumi.String("string"),
    									},
    								},
    								SyncPolicy: &argocd.ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicyArgs{
    									Automated: &argocd.ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicyAutomatedArgs{
    										AllowEmpty: pulumi.Bool(false),
    										Prune:      pulumi.Bool(false),
    										SelfHeal:   pulumi.Bool(false),
    									},
    									ManagedNamespaceMetadata: &argocd.ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadataArgs{
    										Annotations: pulumi.StringMap{
    											"string": pulumi.String("string"),
    										},
    										Labels: pulumi.StringMap{
    											"string": pulumi.String("string"),
    										},
    									},
    									Retry: &argocd.ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicyRetryArgs{
    										Backoff: &argocd.ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicyRetryBackoffArgs{
    											Duration:    pulumi.String("string"),
    											Factor:      pulumi.String("string"),
    											MaxDuration: pulumi.String("string"),
    										},
    										Limit: pulumi.String("string"),
    									},
    									SyncOptions: pulumi.StringArray{
    										pulumi.String("string"),
    									},
    								},
    							},
    						},
    						Values: pulumi.StringMap{
    							"string": pulumi.String("string"),
    						},
    					},
    				},
    				Lists: argocd.ApplicationSetSpecGeneratorListArray{
    					&argocd.ApplicationSetSpecGeneratorListArgs{
    						Elements: pulumi.StringMapArray{
    							pulumi.StringMap{
    								"string": pulumi.String("string"),
    							},
    						},
    						Template: &argocd.ApplicationSetSpecGeneratorListTemplateArgs{
    							Metadata: &argocd.ApplicationSetSpecGeneratorListTemplateMetadataArgs{
    								Annotations: pulumi.StringMap{
    									"string": pulumi.String("string"),
    								},
    								Finalizers: pulumi.StringArray{
    									pulumi.String("string"),
    								},
    								Labels: pulumi.StringMap{
    									"string": pulumi.String("string"),
    								},
    								Name:      pulumi.String("string"),
    								Namespace: pulumi.String("string"),
    							},
    							Spec: &argocd.ApplicationSetSpecGeneratorListTemplateSpecArgs{
    								Destination: &argocd.ApplicationSetSpecGeneratorListTemplateSpecDestinationArgs{
    									Name:      pulumi.String("string"),
    									Namespace: pulumi.String("string"),
    									Server:    pulumi.String("string"),
    								},
    								IgnoreDifferences: argocd.ApplicationSetSpecGeneratorListTemplateSpecIgnoreDifferenceArray{
    									&argocd.ApplicationSetSpecGeneratorListTemplateSpecIgnoreDifferenceArgs{
    										Group: pulumi.String("string"),
    										JqPathExpressions: pulumi.StringArray{
    											pulumi.String("string"),
    										},
    										JsonPointers: pulumi.StringArray{
    											pulumi.String("string"),
    										},
    										Kind: pulumi.String("string"),
    										ManagedFieldsManagers: pulumi.StringArray{
    											pulumi.String("string"),
    										},
    										Name:      pulumi.String("string"),
    										Namespace: pulumi.String("string"),
    									},
    								},
    								Infos: argocd.ApplicationSetSpecGeneratorListTemplateSpecInfoArray{
    									&argocd.ApplicationSetSpecGeneratorListTemplateSpecInfoArgs{
    										Name:  pulumi.String("string"),
    										Value: pulumi.String("string"),
    									},
    								},
    								Project:              pulumi.String("string"),
    								RevisionHistoryLimit: pulumi.Int(0),
    								Sources: argocd.ApplicationSetSpecGeneratorListTemplateSpecSourceArray{
    									&argocd.ApplicationSetSpecGeneratorListTemplateSpecSourceArgs{
    										Chart: pulumi.String("string"),
    										Directory: &argocd.ApplicationSetSpecGeneratorListTemplateSpecSourceDirectoryArgs{
    											Exclude: pulumi.String("string"),
    											Include: pulumi.String("string"),
    											Jsonnet: &argocd.ApplicationSetSpecGeneratorListTemplateSpecSourceDirectoryJsonnetArgs{
    												ExtVars: argocd.ApplicationSetSpecGeneratorListTemplateSpecSourceDirectoryJsonnetExtVarArray{
    													&argocd.ApplicationSetSpecGeneratorListTemplateSpecSourceDirectoryJsonnetExtVarArgs{
    														Code:  pulumi.Bool(false),
    														Name:  pulumi.String("string"),
    														Value: pulumi.String("string"),
    													},
    												},
    												Libs: pulumi.StringArray{
    													pulumi.String("string"),
    												},
    												Tlas: argocd.ApplicationSetSpecGeneratorListTemplateSpecSourceDirectoryJsonnetTlaArray{
    													&argocd.ApplicationSetSpecGeneratorListTemplateSpecSourceDirectoryJsonnetTlaArgs{
    														Code:  pulumi.Bool(false),
    														Name:  pulumi.String("string"),
    														Value: pulumi.String("string"),
    													},
    												},
    											},
    											Recurse: pulumi.Bool(false),
    										},
    										Helm: &argocd.ApplicationSetSpecGeneratorListTemplateSpecSourceHelmArgs{
    											FileParameters: argocd.ApplicationSetSpecGeneratorListTemplateSpecSourceHelmFileParameterArray{
    												&argocd.ApplicationSetSpecGeneratorListTemplateSpecSourceHelmFileParameterArgs{
    													Name: pulumi.String("string"),
    													Path: pulumi.String("string"),
    												},
    											},
    											IgnoreMissingValueFiles: pulumi.Bool(false),
    											Parameters: argocd.ApplicationSetSpecGeneratorListTemplateSpecSourceHelmParameterArray{
    												&argocd.ApplicationSetSpecGeneratorListTemplateSpecSourceHelmParameterArgs{
    													ForceString: pulumi.Bool(false),
    													Name:        pulumi.String("string"),
    													Value:       pulumi.String("string"),
    												},
    											},
    											PassCredentials: pulumi.Bool(false),
    											ReleaseName:     pulumi.String("string"),
    											SkipCrds:        pulumi.Bool(false),
    											ValueFiles: pulumi.StringArray{
    												pulumi.String("string"),
    											},
    											Values:  pulumi.String("string"),
    											Version: pulumi.String("string"),
    										},
    										Kustomize: &argocd.ApplicationSetSpecGeneratorListTemplateSpecSourceKustomizeArgs{
    											CommonAnnotations: pulumi.StringMap{
    												"string": pulumi.String("string"),
    											},
    											CommonLabels: pulumi.StringMap{
    												"string": pulumi.String("string"),
    											},
    											Images: pulumi.StringArray{
    												pulumi.String("string"),
    											},
    											NamePrefix: pulumi.String("string"),
    											NameSuffix: pulumi.String("string"),
    											Patches: argocd.ApplicationSetSpecGeneratorListTemplateSpecSourceKustomizePatchArray{
    												&argocd.ApplicationSetSpecGeneratorListTemplateSpecSourceKustomizePatchArgs{
    													Target: &argocd.ApplicationSetSpecGeneratorListTemplateSpecSourceKustomizePatchTargetArgs{
    														AnnotationSelector: pulumi.String("string"),
    														Group:              pulumi.String("string"),
    														Kind:               pulumi.String("string"),
    														LabelSelector:      pulumi.String("string"),
    														Name:               pulumi.String("string"),
    														Namespace:          pulumi.String("string"),
    														Version:            pulumi.String("string"),
    													},
    													Options: pulumi.BoolMap{
    														"string": pulumi.Bool(false),
    													},
    													Patch: pulumi.String("string"),
    													Path:  pulumi.String("string"),
    												},
    											},
    											Version: pulumi.String("string"),
    										},
    										Path: pulumi.String("string"),
    										Plugin: &argocd.ApplicationSetSpecGeneratorListTemplateSpecSourcePluginArgs{
    											Envs: argocd.ApplicationSetSpecGeneratorListTemplateSpecSourcePluginEnvArray{
    												&argocd.ApplicationSetSpecGeneratorListTemplateSpecSourcePluginEnvArgs{
    													Name:  pulumi.String("string"),
    													Value: pulumi.String("string"),
    												},
    											},
    											Name: pulumi.String("string"),
    										},
    										Ref:            pulumi.String("string"),
    										RepoUrl:        pulumi.String("string"),
    										TargetRevision: pulumi.String("string"),
    									},
    								},
    								SyncPolicy: &argocd.ApplicationSetSpecGeneratorListTemplateSpecSyncPolicyArgs{
    									Automated: &argocd.ApplicationSetSpecGeneratorListTemplateSpecSyncPolicyAutomatedArgs{
    										AllowEmpty: pulumi.Bool(false),
    										Prune:      pulumi.Bool(false),
    										SelfHeal:   pulumi.Bool(false),
    									},
    									ManagedNamespaceMetadata: &argocd.ApplicationSetSpecGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadataArgs{
    										Annotations: pulumi.StringMap{
    											"string": pulumi.String("string"),
    										},
    										Labels: pulumi.StringMap{
    											"string": pulumi.String("string"),
    										},
    									},
    									Retry: &argocd.ApplicationSetSpecGeneratorListTemplateSpecSyncPolicyRetryArgs{
    										Backoff: &argocd.ApplicationSetSpecGeneratorListTemplateSpecSyncPolicyRetryBackoffArgs{
    											Duration:    pulumi.String("string"),
    											Factor:      pulumi.String("string"),
    											MaxDuration: pulumi.String("string"),
    										},
    										Limit: pulumi.String("string"),
    									},
    									SyncOptions: pulumi.StringArray{
    										pulumi.String("string"),
    									},
    								},
    							},
    						},
    					},
    				},
    				Matrices: argocd.ApplicationSetSpecGeneratorMatrixArray{
    					&argocd.ApplicationSetSpecGeneratorMatrixArgs{
    						Generators: argocd.ApplicationSetSpecGeneratorMatrixGeneratorArray{
    							&argocd.ApplicationSetSpecGeneratorMatrixGeneratorArgs{
    								ClusterDecisionResources: argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceArray{
    									&argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceArgs{
    										ConfigMapRef: pulumi.String("string"),
    										LabelSelector: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceLabelSelectorArgs{
    											MatchExpressions: argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceLabelSelectorMatchExpressionArray{
    												&argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceLabelSelectorMatchExpressionArgs{
    													Key:      pulumi.String("string"),
    													Operator: pulumi.String("string"),
    													Values: pulumi.StringArray{
    														pulumi.String("string"),
    													},
    												},
    											},
    											MatchLabels: pulumi.StringMap{
    												"string": pulumi.String("string"),
    											},
    										},
    										Name:                pulumi.String("string"),
    										RequeueAfterSeconds: pulumi.String("string"),
    										Template: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateArgs{
    											Metadata: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateMetadataArgs{
    												Annotations: pulumi.StringMap{
    													"string": pulumi.String("string"),
    												},
    												Finalizers: pulumi.StringArray{
    													pulumi.String("string"),
    												},
    												Labels: pulumi.StringMap{
    													"string": pulumi.String("string"),
    												},
    												Name:      pulumi.String("string"),
    												Namespace: pulumi.String("string"),
    											},
    											Spec: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecArgs{
    												Destination: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecDestinationArgs{
    													Name:      pulumi.String("string"),
    													Namespace: pulumi.String("string"),
    													Server:    pulumi.String("string"),
    												},
    												IgnoreDifferences: argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecIgnoreDifferenceArray{
    													&argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecIgnoreDifferenceArgs{
    														Group: pulumi.String("string"),
    														JqPathExpressions: pulumi.StringArray{
    															pulumi.String("string"),
    														},
    														JsonPointers: pulumi.StringArray{
    															pulumi.String("string"),
    														},
    														Kind: pulumi.String("string"),
    														ManagedFieldsManagers: pulumi.StringArray{
    															pulumi.String("string"),
    														},
    														Name:      pulumi.String("string"),
    														Namespace: pulumi.String("string"),
    													},
    												},
    												Infos: argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecInfoArray{
    													&argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecInfoArgs{
    														Name:  pulumi.String("string"),
    														Value: pulumi.String("string"),
    													},
    												},
    												Project:              pulumi.String("string"),
    												RevisionHistoryLimit: pulumi.Int(0),
    												Sources: argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceArray{
    													&argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceArgs{
    														Chart: pulumi.String("string"),
    														Directory: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryArgs{
    															Exclude: pulumi.String("string"),
    															Include: pulumi.String("string"),
    															Jsonnet: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetArgs{
    																ExtVars: argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetExtVarArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetExtVarArgs{
    																		Code:  pulumi.Bool(false),
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    																Libs: pulumi.StringArray{
    																	pulumi.String("string"),
    																},
    																Tlas: argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetTlaArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetTlaArgs{
    																		Code:  pulumi.Bool(false),
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    															},
    															Recurse: pulumi.Bool(false),
    														},
    														Helm: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmArgs{
    															FileParameters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameterArray{
    																&argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameterArgs{
    																	Name: pulumi.String("string"),
    																	Path: pulumi.String("string"),
    																},
    															},
    															IgnoreMissingValueFiles: pulumi.Bool(false),
    															Parameters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameterArray{
    																&argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameterArgs{
    																	ForceString: pulumi.Bool(false),
    																	Name:        pulumi.String("string"),
    																	Value:       pulumi.String("string"),
    																},
    															},
    															PassCredentials: pulumi.Bool(false),
    															ReleaseName:     pulumi.String("string"),
    															SkipCrds:        pulumi.Bool(false),
    															ValueFiles: pulumi.StringArray{
    																pulumi.String("string"),
    															},
    															Values:  pulumi.String("string"),
    															Version: pulumi.String("string"),
    														},
    														Kustomize: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizeArgs{
    															CommonAnnotations: pulumi.StringMap{
    																"string": pulumi.String("string"),
    															},
    															CommonLabels: pulumi.StringMap{
    																"string": pulumi.String("string"),
    															},
    															Images: pulumi.StringArray{
    																pulumi.String("string"),
    															},
    															NamePrefix: pulumi.String("string"),
    															NameSuffix: pulumi.String("string"),
    															Patches: argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchArray{
    																&argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchArgs{
    																	Target: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTargetArgs{
    																		AnnotationSelector: pulumi.String("string"),
    																		Group:              pulumi.String("string"),
    																		Kind:               pulumi.String("string"),
    																		LabelSelector:      pulumi.String("string"),
    																		Name:               pulumi.String("string"),
    																		Namespace:          pulumi.String("string"),
    																		Version:            pulumi.String("string"),
    																	},
    																	Options: pulumi.BoolMap{
    																		"string": pulumi.Bool(false),
    																	},
    																	Patch: pulumi.String("string"),
    																	Path:  pulumi.String("string"),
    																},
    															},
    															Version: pulumi.String("string"),
    														},
    														Path: pulumi.String("string"),
    														Plugin: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePluginArgs{
    															Envs: argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnvArray{
    																&argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnvArgs{
    																	Name:  pulumi.String("string"),
    																	Value: pulumi.String("string"),
    																},
    															},
    															Name: pulumi.String("string"),
    														},
    														Ref:            pulumi.String("string"),
    														RepoUrl:        pulumi.String("string"),
    														TargetRevision: pulumi.String("string"),
    													},
    												},
    												SyncPolicy: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyArgs{
    													Automated: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomatedArgs{
    														AllowEmpty: pulumi.Bool(false),
    														Prune:      pulumi.Bool(false),
    														SelfHeal:   pulumi.Bool(false),
    													},
    													ManagedNamespaceMetadata: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadataArgs{
    														Annotations: pulumi.StringMap{
    															"string": pulumi.String("string"),
    														},
    														Labels: pulumi.StringMap{
    															"string": pulumi.String("string"),
    														},
    													},
    													Retry: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryArgs{
    														Backoff: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoffArgs{
    															Duration:    pulumi.String("string"),
    															Factor:      pulumi.String("string"),
    															MaxDuration: pulumi.String("string"),
    														},
    														Limit: pulumi.String("string"),
    													},
    													SyncOptions: pulumi.StringArray{
    														pulumi.String("string"),
    													},
    												},
    											},
    										},
    										Values: pulumi.StringMap{
    											"string": pulumi.String("string"),
    										},
    									},
    								},
    								Clusters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterArray{
    									&argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterArgs{
    										Enabled: pulumi.Bool(false),
    										Selector: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterSelectorArgs{
    											MatchExpressions: argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterSelectorMatchExpressionArray{
    												&argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterSelectorMatchExpressionArgs{
    													Key:      pulumi.String("string"),
    													Operator: pulumi.String("string"),
    													Values: pulumi.StringArray{
    														pulumi.String("string"),
    													},
    												},
    											},
    											MatchLabels: pulumi.StringMap{
    												"string": pulumi.String("string"),
    											},
    										},
    										Template: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateArgs{
    											Metadata: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateMetadataArgs{
    												Annotations: pulumi.StringMap{
    													"string": pulumi.String("string"),
    												},
    												Finalizers: pulumi.StringArray{
    													pulumi.String("string"),
    												},
    												Labels: pulumi.StringMap{
    													"string": pulumi.String("string"),
    												},
    												Name:      pulumi.String("string"),
    												Namespace: pulumi.String("string"),
    											},
    											Spec: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecArgs{
    												Destination: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecDestinationArgs{
    													Name:      pulumi.String("string"),
    													Namespace: pulumi.String("string"),
    													Server:    pulumi.String("string"),
    												},
    												IgnoreDifferences: argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecIgnoreDifferenceArray{
    													&argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecIgnoreDifferenceArgs{
    														Group: pulumi.String("string"),
    														JqPathExpressions: pulumi.StringArray{
    															pulumi.String("string"),
    														},
    														JsonPointers: pulumi.StringArray{
    															pulumi.String("string"),
    														},
    														Kind: pulumi.String("string"),
    														ManagedFieldsManagers: pulumi.StringArray{
    															pulumi.String("string"),
    														},
    														Name:      pulumi.String("string"),
    														Namespace: pulumi.String("string"),
    													},
    												},
    												Infos: argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecInfoArray{
    													&argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecInfoArgs{
    														Name:  pulumi.String("string"),
    														Value: pulumi.String("string"),
    													},
    												},
    												Project:              pulumi.String("string"),
    												RevisionHistoryLimit: pulumi.Int(0),
    												Sources: argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceArray{
    													&argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceArgs{
    														Chart: pulumi.String("string"),
    														Directory: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryArgs{
    															Exclude: pulumi.String("string"),
    															Include: pulumi.String("string"),
    															Jsonnet: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnetArgs{
    																ExtVars: argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnetExtVarArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnetExtVarArgs{
    																		Code:  pulumi.Bool(false),
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    																Libs: pulumi.StringArray{
    																	pulumi.String("string"),
    																},
    																Tlas: argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnetTlaArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnetTlaArgs{
    																		Code:  pulumi.Bool(false),
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    															},
    															Recurse: pulumi.Bool(false),
    														},
    														Helm: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmArgs{
    															FileParameters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmFileParameterArray{
    																&argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmFileParameterArgs{
    																	Name: pulumi.String("string"),
    																	Path: pulumi.String("string"),
    																},
    															},
    															IgnoreMissingValueFiles: pulumi.Bool(false),
    															Parameters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmParameterArray{
    																&argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmParameterArgs{
    																	ForceString: pulumi.Bool(false),
    																	Name:        pulumi.String("string"),
    																	Value:       pulumi.String("string"),
    																},
    															},
    															PassCredentials: pulumi.Bool(false),
    															ReleaseName:     pulumi.String("string"),
    															SkipCrds:        pulumi.Bool(false),
    															ValueFiles: pulumi.StringArray{
    																pulumi.String("string"),
    															},
    															Values:  pulumi.String("string"),
    															Version: pulumi.String("string"),
    														},
    														Kustomize: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizeArgs{
    															CommonAnnotations: pulumi.StringMap{
    																"string": pulumi.String("string"),
    															},
    															CommonLabels: pulumi.StringMap{
    																"string": pulumi.String("string"),
    															},
    															Images: pulumi.StringArray{
    																pulumi.String("string"),
    															},
    															NamePrefix: pulumi.String("string"),
    															NameSuffix: pulumi.String("string"),
    															Patches: argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatchArray{
    																&argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatchArgs{
    																	Target: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatchTargetArgs{
    																		AnnotationSelector: pulumi.String("string"),
    																		Group:              pulumi.String("string"),
    																		Kind:               pulumi.String("string"),
    																		LabelSelector:      pulumi.String("string"),
    																		Name:               pulumi.String("string"),
    																		Namespace:          pulumi.String("string"),
    																		Version:            pulumi.String("string"),
    																	},
    																	Options: pulumi.BoolMap{
    																		"string": pulumi.Bool(false),
    																	},
    																	Patch: pulumi.String("string"),
    																	Path:  pulumi.String("string"),
    																},
    															},
    															Version: pulumi.String("string"),
    														},
    														Path: pulumi.String("string"),
    														Plugin: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourcePluginArgs{
    															Envs: argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourcePluginEnvArray{
    																&argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourcePluginEnvArgs{
    																	Name:  pulumi.String("string"),
    																	Value: pulumi.String("string"),
    																},
    															},
    															Name: pulumi.String("string"),
    														},
    														Ref:            pulumi.String("string"),
    														RepoUrl:        pulumi.String("string"),
    														TargetRevision: pulumi.String("string"),
    													},
    												},
    												SyncPolicy: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyArgs{
    													Automated: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyAutomatedArgs{
    														AllowEmpty: pulumi.Bool(false),
    														Prune:      pulumi.Bool(false),
    														SelfHeal:   pulumi.Bool(false),
    													},
    													ManagedNamespaceMetadata: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadataArgs{
    														Annotations: pulumi.StringMap{
    															"string": pulumi.String("string"),
    														},
    														Labels: pulumi.StringMap{
    															"string": pulumi.String("string"),
    														},
    													},
    													Retry: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetryArgs{
    														Backoff: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetryBackoffArgs{
    															Duration:    pulumi.String("string"),
    															Factor:      pulumi.String("string"),
    															MaxDuration: pulumi.String("string"),
    														},
    														Limit: pulumi.String("string"),
    													},
    													SyncOptions: pulumi.StringArray{
    														pulumi.String("string"),
    													},
    												},
    											},
    										},
    										Values: pulumi.StringMap{
    											"string": pulumi.String("string"),
    										},
    									},
    								},
    								Gits: argocd.ApplicationSetSpecGeneratorMatrixGeneratorGitArray{
    									&argocd.ApplicationSetSpecGeneratorMatrixGeneratorGitArgs{
    										RepoUrl: pulumi.String("string"),
    										Directories: argocd.ApplicationSetSpecGeneratorMatrixGeneratorGitDirectoryArray{
    											&argocd.ApplicationSetSpecGeneratorMatrixGeneratorGitDirectoryArgs{
    												Path:    pulumi.String("string"),
    												Exclude: pulumi.Bool(false),
    											},
    										},
    										Files: argocd.ApplicationSetSpecGeneratorMatrixGeneratorGitFileArray{
    											&argocd.ApplicationSetSpecGeneratorMatrixGeneratorGitFileArgs{
    												Path: pulumi.String("string"),
    											},
    										},
    										PathParamPrefix: pulumi.String("string"),
    										Revision:        pulumi.String("string"),
    										Template: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateArgs{
    											Metadata: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateMetadataArgs{
    												Annotations: pulumi.StringMap{
    													"string": pulumi.String("string"),
    												},
    												Finalizers: pulumi.StringArray{
    													pulumi.String("string"),
    												},
    												Labels: pulumi.StringMap{
    													"string": pulumi.String("string"),
    												},
    												Name:      pulumi.String("string"),
    												Namespace: pulumi.String("string"),
    											},
    											Spec: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecArgs{
    												Destination: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecDestinationArgs{
    													Name:      pulumi.String("string"),
    													Namespace: pulumi.String("string"),
    													Server:    pulumi.String("string"),
    												},
    												IgnoreDifferences: argocd.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecIgnoreDifferenceArray{
    													&argocd.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecIgnoreDifferenceArgs{
    														Group: pulumi.String("string"),
    														JqPathExpressions: pulumi.StringArray{
    															pulumi.String("string"),
    														},
    														JsonPointers: pulumi.StringArray{
    															pulumi.String("string"),
    														},
    														Kind: pulumi.String("string"),
    														ManagedFieldsManagers: pulumi.StringArray{
    															pulumi.String("string"),
    														},
    														Name:      pulumi.String("string"),
    														Namespace: pulumi.String("string"),
    													},
    												},
    												Infos: argocd.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecInfoArray{
    													&argocd.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecInfoArgs{
    														Name:  pulumi.String("string"),
    														Value: pulumi.String("string"),
    													},
    												},
    												Project:              pulumi.String("string"),
    												RevisionHistoryLimit: pulumi.Int(0),
    												Sources: argocd.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceArray{
    													&argocd.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceArgs{
    														Chart: pulumi.String("string"),
    														Directory: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryArgs{
    															Exclude: pulumi.String("string"),
    															Include: pulumi.String("string"),
    															Jsonnet: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnetArgs{
    																ExtVars: argocd.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnetExtVarArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnetExtVarArgs{
    																		Code:  pulumi.Bool(false),
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    																Libs: pulumi.StringArray{
    																	pulumi.String("string"),
    																},
    																Tlas: argocd.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnetTlaArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnetTlaArgs{
    																		Code:  pulumi.Bool(false),
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    															},
    															Recurse: pulumi.Bool(false),
    														},
    														Helm: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceHelmArgs{
    															FileParameters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceHelmFileParameterArray{
    																&argocd.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceHelmFileParameterArgs{
    																	Name: pulumi.String("string"),
    																	Path: pulumi.String("string"),
    																},
    															},
    															IgnoreMissingValueFiles: pulumi.Bool(false),
    															Parameters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceHelmParameterArray{
    																&argocd.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceHelmParameterArgs{
    																	ForceString: pulumi.Bool(false),
    																	Name:        pulumi.String("string"),
    																	Value:       pulumi.String("string"),
    																},
    															},
    															PassCredentials: pulumi.Bool(false),
    															ReleaseName:     pulumi.String("string"),
    															SkipCrds:        pulumi.Bool(false),
    															ValueFiles: pulumi.StringArray{
    																pulumi.String("string"),
    															},
    															Values:  pulumi.String("string"),
    															Version: pulumi.String("string"),
    														},
    														Kustomize: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizeArgs{
    															CommonAnnotations: pulumi.StringMap{
    																"string": pulumi.String("string"),
    															},
    															CommonLabels: pulumi.StringMap{
    																"string": pulumi.String("string"),
    															},
    															Images: pulumi.StringArray{
    																pulumi.String("string"),
    															},
    															NamePrefix: pulumi.String("string"),
    															NameSuffix: pulumi.String("string"),
    															Patches: argocd.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatchArray{
    																&argocd.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatchArgs{
    																	Target: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatchTargetArgs{
    																		AnnotationSelector: pulumi.String("string"),
    																		Group:              pulumi.String("string"),
    																		Kind:               pulumi.String("string"),
    																		LabelSelector:      pulumi.String("string"),
    																		Name:               pulumi.String("string"),
    																		Namespace:          pulumi.String("string"),
    																		Version:            pulumi.String("string"),
    																	},
    																	Options: pulumi.BoolMap{
    																		"string": pulumi.Bool(false),
    																	},
    																	Patch: pulumi.String("string"),
    																	Path:  pulumi.String("string"),
    																},
    															},
    															Version: pulumi.String("string"),
    														},
    														Path: pulumi.String("string"),
    														Plugin: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourcePluginArgs{
    															Envs: argocd.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourcePluginEnvArray{
    																&argocd.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourcePluginEnvArgs{
    																	Name:  pulumi.String("string"),
    																	Value: pulumi.String("string"),
    																},
    															},
    															Name: pulumi.String("string"),
    														},
    														Ref:            pulumi.String("string"),
    														RepoUrl:        pulumi.String("string"),
    														TargetRevision: pulumi.String("string"),
    													},
    												},
    												SyncPolicy: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyArgs{
    													Automated: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyAutomatedArgs{
    														AllowEmpty: pulumi.Bool(false),
    														Prune:      pulumi.Bool(false),
    														SelfHeal:   pulumi.Bool(false),
    													},
    													ManagedNamespaceMetadata: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadataArgs{
    														Annotations: pulumi.StringMap{
    															"string": pulumi.String("string"),
    														},
    														Labels: pulumi.StringMap{
    															"string": pulumi.String("string"),
    														},
    													},
    													Retry: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetryArgs{
    														Backoff: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetryBackoffArgs{
    															Duration:    pulumi.String("string"),
    															Factor:      pulumi.String("string"),
    															MaxDuration: pulumi.String("string"),
    														},
    														Limit: pulumi.String("string"),
    													},
    													SyncOptions: pulumi.StringArray{
    														pulumi.String("string"),
    													},
    												},
    											},
    										},
    										Values: pulumi.StringMap{
    											"string": pulumi.String("string"),
    										},
    									},
    								},
    								Lists: argocd.ApplicationSetSpecGeneratorMatrixGeneratorListArray{
    									&argocd.ApplicationSetSpecGeneratorMatrixGeneratorListArgs{
    										Elements: pulumi.StringMapArray{
    											pulumi.StringMap{
    												"string": pulumi.String("string"),
    											},
    										},
    										Template: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateArgs{
    											Metadata: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateMetadataArgs{
    												Annotations: pulumi.StringMap{
    													"string": pulumi.String("string"),
    												},
    												Finalizers: pulumi.StringArray{
    													pulumi.String("string"),
    												},
    												Labels: pulumi.StringMap{
    													"string": pulumi.String("string"),
    												},
    												Name:      pulumi.String("string"),
    												Namespace: pulumi.String("string"),
    											},
    											Spec: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecArgs{
    												Destination: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecDestinationArgs{
    													Name:      pulumi.String("string"),
    													Namespace: pulumi.String("string"),
    													Server:    pulumi.String("string"),
    												},
    												IgnoreDifferences: argocd.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecIgnoreDifferenceArray{
    													&argocd.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecIgnoreDifferenceArgs{
    														Group: pulumi.String("string"),
    														JqPathExpressions: pulumi.StringArray{
    															pulumi.String("string"),
    														},
    														JsonPointers: pulumi.StringArray{
    															pulumi.String("string"),
    														},
    														Kind: pulumi.String("string"),
    														ManagedFieldsManagers: pulumi.StringArray{
    															pulumi.String("string"),
    														},
    														Name:      pulumi.String("string"),
    														Namespace: pulumi.String("string"),
    													},
    												},
    												Infos: argocd.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecInfoArray{
    													&argocd.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecInfoArgs{
    														Name:  pulumi.String("string"),
    														Value: pulumi.String("string"),
    													},
    												},
    												Project:              pulumi.String("string"),
    												RevisionHistoryLimit: pulumi.Int(0),
    												Sources: argocd.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceArray{
    													&argocd.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceArgs{
    														Chart: pulumi.String("string"),
    														Directory: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryArgs{
    															Exclude: pulumi.String("string"),
    															Include: pulumi.String("string"),
    															Jsonnet: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnetArgs{
    																ExtVars: argocd.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnetExtVarArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnetExtVarArgs{
    																		Code:  pulumi.Bool(false),
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    																Libs: pulumi.StringArray{
    																	pulumi.String("string"),
    																},
    																Tlas: argocd.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnetTlaArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnetTlaArgs{
    																		Code:  pulumi.Bool(false),
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    															},
    															Recurse: pulumi.Bool(false),
    														},
    														Helm: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceHelmArgs{
    															FileParameters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceHelmFileParameterArray{
    																&argocd.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceHelmFileParameterArgs{
    																	Name: pulumi.String("string"),
    																	Path: pulumi.String("string"),
    																},
    															},
    															IgnoreMissingValueFiles: pulumi.Bool(false),
    															Parameters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceHelmParameterArray{
    																&argocd.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceHelmParameterArgs{
    																	ForceString: pulumi.Bool(false),
    																	Name:        pulumi.String("string"),
    																	Value:       pulumi.String("string"),
    																},
    															},
    															PassCredentials: pulumi.Bool(false),
    															ReleaseName:     pulumi.String("string"),
    															SkipCrds:        pulumi.Bool(false),
    															ValueFiles: pulumi.StringArray{
    																pulumi.String("string"),
    															},
    															Values:  pulumi.String("string"),
    															Version: pulumi.String("string"),
    														},
    														Kustomize: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceKustomizeArgs{
    															CommonAnnotations: pulumi.StringMap{
    																"string": pulumi.String("string"),
    															},
    															CommonLabels: pulumi.StringMap{
    																"string": pulumi.String("string"),
    															},
    															Images: pulumi.StringArray{
    																pulumi.String("string"),
    															},
    															NamePrefix: pulumi.String("string"),
    															NameSuffix: pulumi.String("string"),
    															Patches: argocd.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatchArray{
    																&argocd.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatchArgs{
    																	Target: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatchTargetArgs{
    																		AnnotationSelector: pulumi.String("string"),
    																		Group:              pulumi.String("string"),
    																		Kind:               pulumi.String("string"),
    																		LabelSelector:      pulumi.String("string"),
    																		Name:               pulumi.String("string"),
    																		Namespace:          pulumi.String("string"),
    																		Version:            pulumi.String("string"),
    																	},
    																	Options: pulumi.BoolMap{
    																		"string": pulumi.Bool(false),
    																	},
    																	Patch: pulumi.String("string"),
    																	Path:  pulumi.String("string"),
    																},
    															},
    															Version: pulumi.String("string"),
    														},
    														Path: pulumi.String("string"),
    														Plugin: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourcePluginArgs{
    															Envs: argocd.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourcePluginEnvArray{
    																&argocd.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourcePluginEnvArgs{
    																	Name:  pulumi.String("string"),
    																	Value: pulumi.String("string"),
    																},
    															},
    															Name: pulumi.String("string"),
    														},
    														Ref:            pulumi.String("string"),
    														RepoUrl:        pulumi.String("string"),
    														TargetRevision: pulumi.String("string"),
    													},
    												},
    												SyncPolicy: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicyArgs{
    													Automated: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicyAutomatedArgs{
    														AllowEmpty: pulumi.Bool(false),
    														Prune:      pulumi.Bool(false),
    														SelfHeal:   pulumi.Bool(false),
    													},
    													ManagedNamespaceMetadata: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadataArgs{
    														Annotations: pulumi.StringMap{
    															"string": pulumi.String("string"),
    														},
    														Labels: pulumi.StringMap{
    															"string": pulumi.String("string"),
    														},
    													},
    													Retry: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetryArgs{
    														Backoff: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetryBackoffArgs{
    															Duration:    pulumi.String("string"),
    															Factor:      pulumi.String("string"),
    															MaxDuration: pulumi.String("string"),
    														},
    														Limit: pulumi.String("string"),
    													},
    													SyncOptions: pulumi.StringArray{
    														pulumi.String("string"),
    													},
    												},
    											},
    										},
    									},
    								},
    								Matrices: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixArray{
    									&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixArgs{
    										Generators: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorArray{
    											&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorArgs{
    												ClusterDecisionResources: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceArray{
    													&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceArgs{
    														ConfigMapRef: pulumi.String("string"),
    														LabelSelector: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceLabelSelectorArgs{
    															MatchExpressions: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceLabelSelectorMatchExpressionArray{
    																&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceLabelSelectorMatchExpressionArgs{
    																	Key:      pulumi.String("string"),
    																	Operator: pulumi.String("string"),
    																	Values: pulumi.StringArray{
    																		pulumi.String("string"),
    																	},
    																},
    															},
    															MatchLabels: pulumi.StringMap{
    																"string": pulumi.String("string"),
    															},
    														},
    														Name:                pulumi.String("string"),
    														RequeueAfterSeconds: pulumi.String("string"),
    														Template: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateArgs{
    															Metadata: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateMetadataArgs{
    																Annotations: pulumi.StringMap{
    																	"string": pulumi.String("string"),
    																},
    																Finalizers: pulumi.StringArray{
    																	pulumi.String("string"),
    																},
    																Labels: pulumi.StringMap{
    																	"string": pulumi.String("string"),
    																},
    																Name:      pulumi.String("string"),
    																Namespace: pulumi.String("string"),
    															},
    															Spec: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecArgs{
    																Destination: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecDestinationArgs{
    																	Name:      pulumi.String("string"),
    																	Namespace: pulumi.String("string"),
    																	Server:    pulumi.String("string"),
    																},
    																IgnoreDifferences: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecIgnoreDifferenceArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecIgnoreDifferenceArgs{
    																		Group: pulumi.String("string"),
    																		JqPathExpressions: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		JsonPointers: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		Kind: pulumi.String("string"),
    																		ManagedFieldsManagers: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		Name:      pulumi.String("string"),
    																		Namespace: pulumi.String("string"),
    																	},
    																},
    																Infos: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecInfoArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecInfoArgs{
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    																Project:              pulumi.String("string"),
    																RevisionHistoryLimit: pulumi.Int(0),
    																Sources: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceArgs{
    																		Chart: pulumi.String("string"),
    																		Directory: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryArgs{
    																			Exclude: pulumi.String("string"),
    																			Include: pulumi.String("string"),
    																			Jsonnet: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetArgs{
    																				ExtVars: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetExtVarArray{
    																					&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetExtVarArgs{
    																						Code:  pulumi.Bool(false),
    																						Name:  pulumi.String("string"),
    																						Value: pulumi.String("string"),
    																					},
    																				},
    																				Libs: pulumi.StringArray{
    																					pulumi.String("string"),
    																				},
    																				Tlas: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetTlaArray{
    																					&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetTlaArgs{
    																						Code:  pulumi.Bool(false),
    																						Name:  pulumi.String("string"),
    																						Value: pulumi.String("string"),
    																					},
    																				},
    																			},
    																			Recurse: pulumi.Bool(false),
    																		},
    																		Helm: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmArgs{
    																			FileParameters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameterArray{
    																				&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameterArgs{
    																					Name: pulumi.String("string"),
    																					Path: pulumi.String("string"),
    																				},
    																			},
    																			IgnoreMissingValueFiles: pulumi.Bool(false),
    																			Parameters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameterArray{
    																				&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameterArgs{
    																					ForceString: pulumi.Bool(false),
    																					Name:        pulumi.String("string"),
    																					Value:       pulumi.String("string"),
    																				},
    																			},
    																			PassCredentials: pulumi.Bool(false),
    																			ReleaseName:     pulumi.String("string"),
    																			SkipCrds:        pulumi.Bool(false),
    																			ValueFiles: pulumi.StringArray{
    																				pulumi.String("string"),
    																			},
    																			Values:  pulumi.String("string"),
    																			Version: pulumi.String("string"),
    																		},
    																		Kustomize: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizeArgs{
    																			CommonAnnotations: pulumi.StringMap{
    																				"string": pulumi.String("string"),
    																			},
    																			CommonLabels: pulumi.StringMap{
    																				"string": pulumi.String("string"),
    																			},
    																			Images: pulumi.StringArray{
    																				pulumi.String("string"),
    																			},
    																			NamePrefix: pulumi.String("string"),
    																			NameSuffix: pulumi.String("string"),
    																			Patches: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchArray{
    																				&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchArgs{
    																					Target: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTargetArgs{
    																						AnnotationSelector: pulumi.String("string"),
    																						Group:              pulumi.String("string"),
    																						Kind:               pulumi.String("string"),
    																						LabelSelector:      pulumi.String("string"),
    																						Name:               pulumi.String("string"),
    																						Namespace:          pulumi.String("string"),
    																						Version:            pulumi.String("string"),
    																					},
    																					Options: pulumi.BoolMap{
    																						"string": pulumi.Bool(false),
    																					},
    																					Patch: pulumi.String("string"),
    																					Path:  pulumi.String("string"),
    																				},
    																			},
    																			Version: pulumi.String("string"),
    																		},
    																		Path: pulumi.String("string"),
    																		Plugin: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePluginArgs{
    																			Envs: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnvArray{
    																				&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnvArgs{
    																					Name:  pulumi.String("string"),
    																					Value: pulumi.String("string"),
    																				},
    																			},
    																			Name: pulumi.String("string"),
    																		},
    																		Ref:            pulumi.String("string"),
    																		RepoUrl:        pulumi.String("string"),
    																		TargetRevision: pulumi.String("string"),
    																	},
    																},
    																SyncPolicy: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyArgs{
    																	Automated: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomatedArgs{
    																		AllowEmpty: pulumi.Bool(false),
    																		Prune:      pulumi.Bool(false),
    																		SelfHeal:   pulumi.Bool(false),
    																	},
    																	ManagedNamespaceMetadata: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadataArgs{
    																		Annotations: pulumi.StringMap{
    																			"string": pulumi.String("string"),
    																		},
    																		Labels: pulumi.StringMap{
    																			"string": pulumi.String("string"),
    																		},
    																	},
    																	Retry: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryArgs{
    																		Backoff: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoffArgs{
    																			Duration:    pulumi.String("string"),
    																			Factor:      pulumi.String("string"),
    																			MaxDuration: pulumi.String("string"),
    																		},
    																		Limit: pulumi.String("string"),
    																	},
    																	SyncOptions: pulumi.StringArray{
    																		pulumi.String("string"),
    																	},
    																},
    															},
    														},
    														Values: pulumi.StringMap{
    															"string": pulumi.String("string"),
    														},
    													},
    												},
    												Clusters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterArray{
    													&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterArgs{
    														Enabled: pulumi.Bool(false),
    														Selector: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterSelectorArgs{
    															MatchExpressions: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterSelectorMatchExpressionArray{
    																&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterSelectorMatchExpressionArgs{
    																	Key:      pulumi.String("string"),
    																	Operator: pulumi.String("string"),
    																	Values: pulumi.StringArray{
    																		pulumi.String("string"),
    																	},
    																},
    															},
    															MatchLabels: pulumi.StringMap{
    																"string": pulumi.String("string"),
    															},
    														},
    														Template: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateArgs{
    															Metadata: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateMetadataArgs{
    																Annotations: pulumi.StringMap{
    																	"string": pulumi.String("string"),
    																},
    																Finalizers: pulumi.StringArray{
    																	pulumi.String("string"),
    																},
    																Labels: pulumi.StringMap{
    																	"string": pulumi.String("string"),
    																},
    																Name:      pulumi.String("string"),
    																Namespace: pulumi.String("string"),
    															},
    															Spec: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecArgs{
    																Destination: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecDestinationArgs{
    																	Name:      pulumi.String("string"),
    																	Namespace: pulumi.String("string"),
    																	Server:    pulumi.String("string"),
    																},
    																IgnoreDifferences: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecIgnoreDifferenceArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecIgnoreDifferenceArgs{
    																		Group: pulumi.String("string"),
    																		JqPathExpressions: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		JsonPointers: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		Kind: pulumi.String("string"),
    																		ManagedFieldsManagers: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		Name:      pulumi.String("string"),
    																		Namespace: pulumi.String("string"),
    																	},
    																},
    																Infos: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecInfoArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecInfoArgs{
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    																Project:              pulumi.String("string"),
    																RevisionHistoryLimit: pulumi.Int(0),
    																Sources: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceArgs{
    																		Chart: pulumi.String("string"),
    																		Directory: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryArgs{
    																			Exclude: pulumi.String("string"),
    																			Include: pulumi.String("string"),
    																			Jsonnet: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnetArgs{
    																				ExtVars: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnetExtVarArray{
    																					&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnetExtVarArgs{
    																						Code:  pulumi.Bool(false),
    																						Name:  pulumi.String("string"),
    																						Value: pulumi.String("string"),
    																					},
    																				},
    																				Libs: pulumi.StringArray{
    																					pulumi.String("string"),
    																				},
    																				Tlas: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnetTlaArray{
    																					&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnetTlaArgs{
    																						Code:  pulumi.Bool(false),
    																						Name:  pulumi.String("string"),
    																						Value: pulumi.String("string"),
    																					},
    																				},
    																			},
    																			Recurse: pulumi.Bool(false),
    																		},
    																		Helm: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmArgs{
    																			FileParameters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmFileParameterArray{
    																				&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmFileParameterArgs{
    																					Name: pulumi.String("string"),
    																					Path: pulumi.String("string"),
    																				},
    																			},
    																			IgnoreMissingValueFiles: pulumi.Bool(false),
    																			Parameters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmParameterArray{
    																				&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmParameterArgs{
    																					ForceString: pulumi.Bool(false),
    																					Name:        pulumi.String("string"),
    																					Value:       pulumi.String("string"),
    																				},
    																			},
    																			PassCredentials: pulumi.Bool(false),
    																			ReleaseName:     pulumi.String("string"),
    																			SkipCrds:        pulumi.Bool(false),
    																			ValueFiles: pulumi.StringArray{
    																				pulumi.String("string"),
    																			},
    																			Values:  pulumi.String("string"),
    																			Version: pulumi.String("string"),
    																		},
    																		Kustomize: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizeArgs{
    																			CommonAnnotations: pulumi.StringMap{
    																				"string": pulumi.String("string"),
    																			},
    																			CommonLabels: pulumi.StringMap{
    																				"string": pulumi.String("string"),
    																			},
    																			Images: pulumi.StringArray{
    																				pulumi.String("string"),
    																			},
    																			NamePrefix: pulumi.String("string"),
    																			NameSuffix: pulumi.String("string"),
    																			Patches: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatchArray{
    																				&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatchArgs{
    																					Target: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatchTargetArgs{
    																						AnnotationSelector: pulumi.String("string"),
    																						Group:              pulumi.String("string"),
    																						Kind:               pulumi.String("string"),
    																						LabelSelector:      pulumi.String("string"),
    																						Name:               pulumi.String("string"),
    																						Namespace:          pulumi.String("string"),
    																						Version:            pulumi.String("string"),
    																					},
    																					Options: pulumi.BoolMap{
    																						"string": pulumi.Bool(false),
    																					},
    																					Patch: pulumi.String("string"),
    																					Path:  pulumi.String("string"),
    																				},
    																			},
    																			Version: pulumi.String("string"),
    																		},
    																		Path: pulumi.String("string"),
    																		Plugin: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourcePluginArgs{
    																			Envs: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourcePluginEnvArray{
    																				&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourcePluginEnvArgs{
    																					Name:  pulumi.String("string"),
    																					Value: pulumi.String("string"),
    																				},
    																			},
    																			Name: pulumi.String("string"),
    																		},
    																		Ref:            pulumi.String("string"),
    																		RepoUrl:        pulumi.String("string"),
    																		TargetRevision: pulumi.String("string"),
    																	},
    																},
    																SyncPolicy: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyArgs{
    																	Automated: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyAutomatedArgs{
    																		AllowEmpty: pulumi.Bool(false),
    																		Prune:      pulumi.Bool(false),
    																		SelfHeal:   pulumi.Bool(false),
    																	},
    																	ManagedNamespaceMetadata: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadataArgs{
    																		Annotations: pulumi.StringMap{
    																			"string": pulumi.String("string"),
    																		},
    																		Labels: pulumi.StringMap{
    																			"string": pulumi.String("string"),
    																		},
    																	},
    																	Retry: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetryArgs{
    																		Backoff: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetryBackoffArgs{
    																			Duration:    pulumi.String("string"),
    																			Factor:      pulumi.String("string"),
    																			MaxDuration: pulumi.String("string"),
    																		},
    																		Limit: pulumi.String("string"),
    																	},
    																	SyncOptions: pulumi.StringArray{
    																		pulumi.String("string"),
    																	},
    																},
    															},
    														},
    														Values: pulumi.StringMap{
    															"string": pulumi.String("string"),
    														},
    													},
    												},
    												Gits: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitArray{
    													&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitArgs{
    														RepoUrl: pulumi.String("string"),
    														Directories: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitDirectoryArray{
    															&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitDirectoryArgs{
    																Path:    pulumi.String("string"),
    																Exclude: pulumi.Bool(false),
    															},
    														},
    														Files: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitFileArray{
    															&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitFileArgs{
    																Path: pulumi.String("string"),
    															},
    														},
    														PathParamPrefix: pulumi.String("string"),
    														Revision:        pulumi.String("string"),
    														Template: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateArgs{
    															Metadata: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateMetadataArgs{
    																Annotations: pulumi.StringMap{
    																	"string": pulumi.String("string"),
    																},
    																Finalizers: pulumi.StringArray{
    																	pulumi.String("string"),
    																},
    																Labels: pulumi.StringMap{
    																	"string": pulumi.String("string"),
    																},
    																Name:      pulumi.String("string"),
    																Namespace: pulumi.String("string"),
    															},
    															Spec: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecArgs{
    																Destination: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecDestinationArgs{
    																	Name:      pulumi.String("string"),
    																	Namespace: pulumi.String("string"),
    																	Server:    pulumi.String("string"),
    																},
    																IgnoreDifferences: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecIgnoreDifferenceArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecIgnoreDifferenceArgs{
    																		Group: pulumi.String("string"),
    																		JqPathExpressions: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		JsonPointers: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		Kind: pulumi.String("string"),
    																		ManagedFieldsManagers: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		Name:      pulumi.String("string"),
    																		Namespace: pulumi.String("string"),
    																	},
    																},
    																Infos: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecInfoArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecInfoArgs{
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    																Project:              pulumi.String("string"),
    																RevisionHistoryLimit: pulumi.Int(0),
    																Sources: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceArgs{
    																		Chart: pulumi.String("string"),
    																		Directory: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryArgs{
    																			Exclude: pulumi.String("string"),
    																			Include: pulumi.String("string"),
    																			Jsonnet: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnetArgs{
    																				ExtVars: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnetExtVarArray{
    																					&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnetExtVarArgs{
    																						Code:  pulumi.Bool(false),
    																						Name:  pulumi.String("string"),
    																						Value: pulumi.String("string"),
    																					},
    																				},
    																				Libs: pulumi.StringArray{
    																					pulumi.String("string"),
    																				},
    																				Tlas: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnetTlaArray{
    																					&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnetTlaArgs{
    																						Code:  pulumi.Bool(false),
    																						Name:  pulumi.String("string"),
    																						Value: pulumi.String("string"),
    																					},
    																				},
    																			},
    																			Recurse: pulumi.Bool(false),
    																		},
    																		Helm: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceHelmArgs{
    																			FileParameters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceHelmFileParameterArray{
    																				&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceHelmFileParameterArgs{
    																					Name: pulumi.String("string"),
    																					Path: pulumi.String("string"),
    																				},
    																			},
    																			IgnoreMissingValueFiles: pulumi.Bool(false),
    																			Parameters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceHelmParameterArray{
    																				&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceHelmParameterArgs{
    																					ForceString: pulumi.Bool(false),
    																					Name:        pulumi.String("string"),
    																					Value:       pulumi.String("string"),
    																				},
    																			},
    																			PassCredentials: pulumi.Bool(false),
    																			ReleaseName:     pulumi.String("string"),
    																			SkipCrds:        pulumi.Bool(false),
    																			ValueFiles: pulumi.StringArray{
    																				pulumi.String("string"),
    																			},
    																			Values:  pulumi.String("string"),
    																			Version: pulumi.String("string"),
    																		},
    																		Kustomize: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizeArgs{
    																			CommonAnnotations: pulumi.StringMap{
    																				"string": pulumi.String("string"),
    																			},
    																			CommonLabels: pulumi.StringMap{
    																				"string": pulumi.String("string"),
    																			},
    																			Images: pulumi.StringArray{
    																				pulumi.String("string"),
    																			},
    																			NamePrefix: pulumi.String("string"),
    																			NameSuffix: pulumi.String("string"),
    																			Patches: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatchArray{
    																				&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatchArgs{
    																					Target: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatchTargetArgs{
    																						AnnotationSelector: pulumi.String("string"),
    																						Group:              pulumi.String("string"),
    																						Kind:               pulumi.String("string"),
    																						LabelSelector:      pulumi.String("string"),
    																						Name:               pulumi.String("string"),
    																						Namespace:          pulumi.String("string"),
    																						Version:            pulumi.String("string"),
    																					},
    																					Options: pulumi.BoolMap{
    																						"string": pulumi.Bool(false),
    																					},
    																					Patch: pulumi.String("string"),
    																					Path:  pulumi.String("string"),
    																				},
    																			},
    																			Version: pulumi.String("string"),
    																		},
    																		Path: pulumi.String("string"),
    																		Plugin: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourcePluginArgs{
    																			Envs: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourcePluginEnvArray{
    																				&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourcePluginEnvArgs{
    																					Name:  pulumi.String("string"),
    																					Value: pulumi.String("string"),
    																				},
    																			},
    																			Name: pulumi.String("string"),
    																		},
    																		Ref:            pulumi.String("string"),
    																		RepoUrl:        pulumi.String("string"),
    																		TargetRevision: pulumi.String("string"),
    																	},
    																},
    																SyncPolicy: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyArgs{
    																	Automated: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyAutomatedArgs{
    																		AllowEmpty: pulumi.Bool(false),
    																		Prune:      pulumi.Bool(false),
    																		SelfHeal:   pulumi.Bool(false),
    																	},
    																	ManagedNamespaceMetadata: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadataArgs{
    																		Annotations: pulumi.StringMap{
    																			"string": pulumi.String("string"),
    																		},
    																		Labels: pulumi.StringMap{
    																			"string": pulumi.String("string"),
    																		},
    																	},
    																	Retry: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetryArgs{
    																		Backoff: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetryBackoffArgs{
    																			Duration:    pulumi.String("string"),
    																			Factor:      pulumi.String("string"),
    																			MaxDuration: pulumi.String("string"),
    																		},
    																		Limit: pulumi.String("string"),
    																	},
    																	SyncOptions: pulumi.StringArray{
    																		pulumi.String("string"),
    																	},
    																},
    															},
    														},
    														Values: pulumi.StringMap{
    															"string": pulumi.String("string"),
    														},
    													},
    												},
    												Lists: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListArray{
    													&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListArgs{
    														Elements: pulumi.StringMapArray{
    															pulumi.StringMap{
    																"string": pulumi.String("string"),
    															},
    														},
    														Template: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateArgs{
    															Metadata: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateMetadataArgs{
    																Annotations: pulumi.StringMap{
    																	"string": pulumi.String("string"),
    																},
    																Finalizers: pulumi.StringArray{
    																	pulumi.String("string"),
    																},
    																Labels: pulumi.StringMap{
    																	"string": pulumi.String("string"),
    																},
    																Name:      pulumi.String("string"),
    																Namespace: pulumi.String("string"),
    															},
    															Spec: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecArgs{
    																Destination: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecDestinationArgs{
    																	Name:      pulumi.String("string"),
    																	Namespace: pulumi.String("string"),
    																	Server:    pulumi.String("string"),
    																},
    																IgnoreDifferences: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecIgnoreDifferenceArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecIgnoreDifferenceArgs{
    																		Group: pulumi.String("string"),
    																		JqPathExpressions: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		JsonPointers: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		Kind: pulumi.String("string"),
    																		ManagedFieldsManagers: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		Name:      pulumi.String("string"),
    																		Namespace: pulumi.String("string"),
    																	},
    																},
    																Infos: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecInfoArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecInfoArgs{
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    																Project:              pulumi.String("string"),
    																RevisionHistoryLimit: pulumi.Int(0),
    																Sources: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceArgs{
    																		Chart: pulumi.String("string"),
    																		Directory: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryArgs{
    																			Exclude: pulumi.String("string"),
    																			Include: pulumi.String("string"),
    																			Jsonnet: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnetArgs{
    																				ExtVars: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnetExtVarArray{
    																					&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnetExtVarArgs{
    																						Code:  pulumi.Bool(false),
    																						Name:  pulumi.String("string"),
    																						Value: pulumi.String("string"),
    																					},
    																				},
    																				Libs: pulumi.StringArray{
    																					pulumi.String("string"),
    																				},
    																				Tlas: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnetTlaArray{
    																					&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnetTlaArgs{
    																						Code:  pulumi.Bool(false),
    																						Name:  pulumi.String("string"),
    																						Value: pulumi.String("string"),
    																					},
    																				},
    																			},
    																			Recurse: pulumi.Bool(false),
    																		},
    																		Helm: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceHelmArgs{
    																			FileParameters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceHelmFileParameterArray{
    																				&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceHelmFileParameterArgs{
    																					Name: pulumi.String("string"),
    																					Path: pulumi.String("string"),
    																				},
    																			},
    																			IgnoreMissingValueFiles: pulumi.Bool(false),
    																			Parameters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceHelmParameterArray{
    																				&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceHelmParameterArgs{
    																					ForceString: pulumi.Bool(false),
    																					Name:        pulumi.String("string"),
    																					Value:       pulumi.String("string"),
    																				},
    																			},
    																			PassCredentials: pulumi.Bool(false),
    																			ReleaseName:     pulumi.String("string"),
    																			SkipCrds:        pulumi.Bool(false),
    																			ValueFiles: pulumi.StringArray{
    																				pulumi.String("string"),
    																			},
    																			Values:  pulumi.String("string"),
    																			Version: pulumi.String("string"),
    																		},
    																		Kustomize: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceKustomizeArgs{
    																			CommonAnnotations: pulumi.StringMap{
    																				"string": pulumi.String("string"),
    																			},
    																			CommonLabels: pulumi.StringMap{
    																				"string": pulumi.String("string"),
    																			},
    																			Images: pulumi.StringArray{
    																				pulumi.String("string"),
    																			},
    																			NamePrefix: pulumi.String("string"),
    																			NameSuffix: pulumi.String("string"),
    																			Patches: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatchArray{
    																				&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatchArgs{
    																					Target: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatchTargetArgs{
    																						AnnotationSelector: pulumi.String("string"),
    																						Group:              pulumi.String("string"),
    																						Kind:               pulumi.String("string"),
    																						LabelSelector:      pulumi.String("string"),
    																						Name:               pulumi.String("string"),
    																						Namespace:          pulumi.String("string"),
    																						Version:            pulumi.String("string"),
    																					},
    																					Options: pulumi.BoolMap{
    																						"string": pulumi.Bool(false),
    																					},
    																					Patch: pulumi.String("string"),
    																					Path:  pulumi.String("string"),
    																				},
    																			},
    																			Version: pulumi.String("string"),
    																		},
    																		Path: pulumi.String("string"),
    																		Plugin: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourcePluginArgs{
    																			Envs: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourcePluginEnvArray{
    																				&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourcePluginEnvArgs{
    																					Name:  pulumi.String("string"),
    																					Value: pulumi.String("string"),
    																				},
    																			},
    																			Name: pulumi.String("string"),
    																		},
    																		Ref:            pulumi.String("string"),
    																		RepoUrl:        pulumi.String("string"),
    																		TargetRevision: pulumi.String("string"),
    																	},
    																},
    																SyncPolicy: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicyArgs{
    																	Automated: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicyAutomatedArgs{
    																		AllowEmpty: pulumi.Bool(false),
    																		Prune:      pulumi.Bool(false),
    																		SelfHeal:   pulumi.Bool(false),
    																	},
    																	ManagedNamespaceMetadata: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadataArgs{
    																		Annotations: pulumi.StringMap{
    																			"string": pulumi.String("string"),
    																		},
    																		Labels: pulumi.StringMap{
    																			"string": pulumi.String("string"),
    																		},
    																	},
    																	Retry: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetryArgs{
    																		Backoff: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetryBackoffArgs{
    																			Duration:    pulumi.String("string"),
    																			Factor:      pulumi.String("string"),
    																			MaxDuration: pulumi.String("string"),
    																		},
    																		Limit: pulumi.String("string"),
    																	},
    																	SyncOptions: pulumi.StringArray{
    																		pulumi.String("string"),
    																	},
    																},
    															},
    														},
    													},
    												},
    												PullRequests: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestArray{
    													&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestArgs{
    														BitbucketServer: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestBitbucketServerArgs{
    															Api:     pulumi.String("string"),
    															Project: pulumi.String("string"),
    															Repo:    pulumi.String("string"),
    															BasicAuth: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestBitbucketServerBasicAuthArgs{
    																PasswordRef: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestBitbucketServerBasicAuthPasswordRefArgs{
    																	Key:        pulumi.String("string"),
    																	SecretName: pulumi.String("string"),
    																},
    																Username: pulumi.String("string"),
    															},
    														},
    														Filters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestFilterArray{
    															&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestFilterArgs{
    																BranchMatch: pulumi.String("string"),
    															},
    														},
    														Gitea: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGiteaArgs{
    															Api:      pulumi.String("string"),
    															Owner:    pulumi.String("string"),
    															Repo:     pulumi.String("string"),
    															Insecure: pulumi.Bool(false),
    															TokenRef: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGiteaTokenRefArgs{
    																Key:        pulumi.String("string"),
    																SecretName: pulumi.String("string"),
    															},
    														},
    														Github: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGithubArgs{
    															Owner:         pulumi.String("string"),
    															Repo:          pulumi.String("string"),
    															Api:           pulumi.String("string"),
    															AppSecretName: pulumi.String("string"),
    															Labels: pulumi.StringArray{
    																pulumi.String("string"),
    															},
    															TokenRef: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGithubTokenRefArgs{
    																Key:        pulumi.String("string"),
    																SecretName: pulumi.String("string"),
    															},
    														},
    														Gitlab: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGitlabArgs{
    															Project: pulumi.String("string"),
    															Api:     pulumi.String("string"),
    															Labels: pulumi.StringArray{
    																pulumi.String("string"),
    															},
    															PullRequestState: pulumi.String("string"),
    															TokenRef: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGitlabTokenRefArgs{
    																Key:        pulumi.String("string"),
    																SecretName: pulumi.String("string"),
    															},
    														},
    														RequeueAfterSeconds: pulumi.String("string"),
    														Template: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateArgs{
    															Metadata: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateMetadataArgs{
    																Annotations: pulumi.StringMap{
    																	"string": pulumi.String("string"),
    																},
    																Finalizers: pulumi.StringArray{
    																	pulumi.String("string"),
    																},
    																Labels: pulumi.StringMap{
    																	"string": pulumi.String("string"),
    																},
    																Name:      pulumi.String("string"),
    																Namespace: pulumi.String("string"),
    															},
    															Spec: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecArgs{
    																Destination: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecDestinationArgs{
    																	Name:      pulumi.String("string"),
    																	Namespace: pulumi.String("string"),
    																	Server:    pulumi.String("string"),
    																},
    																IgnoreDifferences: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecIgnoreDifferenceArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecIgnoreDifferenceArgs{
    																		Group: pulumi.String("string"),
    																		JqPathExpressions: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		JsonPointers: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		Kind: pulumi.String("string"),
    																		ManagedFieldsManagers: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		Name:      pulumi.String("string"),
    																		Namespace: pulumi.String("string"),
    																	},
    																},
    																Infos: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecInfoArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecInfoArgs{
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    																Project:              pulumi.String("string"),
    																RevisionHistoryLimit: pulumi.Int(0),
    																Sources: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceArgs{
    																		Chart: pulumi.String("string"),
    																		Directory: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryArgs{
    																			Exclude: pulumi.String("string"),
    																			Include: pulumi.String("string"),
    																			Jsonnet: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetArgs{
    																				ExtVars: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetExtVarArray{
    																					&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetExtVarArgs{
    																						Code:  pulumi.Bool(false),
    																						Name:  pulumi.String("string"),
    																						Value: pulumi.String("string"),
    																					},
    																				},
    																				Libs: pulumi.StringArray{
    																					pulumi.String("string"),
    																				},
    																				Tlas: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetTlaArray{
    																					&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetTlaArgs{
    																						Code:  pulumi.Bool(false),
    																						Name:  pulumi.String("string"),
    																						Value: pulumi.String("string"),
    																					},
    																				},
    																			},
    																			Recurse: pulumi.Bool(false),
    																		},
    																		Helm: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmArgs{
    																			FileParameters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmFileParameterArray{
    																				&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmFileParameterArgs{
    																					Name: pulumi.String("string"),
    																					Path: pulumi.String("string"),
    																				},
    																			},
    																			IgnoreMissingValueFiles: pulumi.Bool(false),
    																			Parameters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmParameterArray{
    																				&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmParameterArgs{
    																					ForceString: pulumi.Bool(false),
    																					Name:        pulumi.String("string"),
    																					Value:       pulumi.String("string"),
    																				},
    																			},
    																			PassCredentials: pulumi.Bool(false),
    																			ReleaseName:     pulumi.String("string"),
    																			SkipCrds:        pulumi.Bool(false),
    																			ValueFiles: pulumi.StringArray{
    																				pulumi.String("string"),
    																			},
    																			Values:  pulumi.String("string"),
    																			Version: pulumi.String("string"),
    																		},
    																		Kustomize: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizeArgs{
    																			CommonAnnotations: pulumi.StringMap{
    																				"string": pulumi.String("string"),
    																			},
    																			CommonLabels: pulumi.StringMap{
    																				"string": pulumi.String("string"),
    																			},
    																			Images: pulumi.StringArray{
    																				pulumi.String("string"),
    																			},
    																			NamePrefix: pulumi.String("string"),
    																			NameSuffix: pulumi.String("string"),
    																			Patches: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatchArray{
    																				&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatchArgs{
    																					Target: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatchTargetArgs{
    																						AnnotationSelector: pulumi.String("string"),
    																						Group:              pulumi.String("string"),
    																						Kind:               pulumi.String("string"),
    																						LabelSelector:      pulumi.String("string"),
    																						Name:               pulumi.String("string"),
    																						Namespace:          pulumi.String("string"),
    																						Version:            pulumi.String("string"),
    																					},
    																					Options: pulumi.BoolMap{
    																						"string": pulumi.Bool(false),
    																					},
    																					Patch: pulumi.String("string"),
    																					Path:  pulumi.String("string"),
    																				},
    																			},
    																			Version: pulumi.String("string"),
    																		},
    																		Path: pulumi.String("string"),
    																		Plugin: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePluginArgs{
    																			Envs: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePluginEnvArray{
    																				&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePluginEnvArgs{
    																					Name:  pulumi.String("string"),
    																					Value: pulumi.String("string"),
    																				},
    																			},
    																			Name: pulumi.String("string"),
    																		},
    																		Ref:            pulumi.String("string"),
    																		RepoUrl:        pulumi.String("string"),
    																		TargetRevision: pulumi.String("string"),
    																	},
    																},
    																SyncPolicy: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyArgs{
    																	Automated: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyAutomatedArgs{
    																		AllowEmpty: pulumi.Bool(false),
    																		Prune:      pulumi.Bool(false),
    																		SelfHeal:   pulumi.Bool(false),
    																	},
    																	ManagedNamespaceMetadata: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyManagedNamespaceMetadataArgs{
    																		Annotations: pulumi.StringMap{
    																			"string": pulumi.String("string"),
    																		},
    																		Labels: pulumi.StringMap{
    																			"string": pulumi.String("string"),
    																		},
    																	},
    																	Retry: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetryArgs{
    																		Backoff: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetryBackoffArgs{
    																			Duration:    pulumi.String("string"),
    																			Factor:      pulumi.String("string"),
    																			MaxDuration: pulumi.String("string"),
    																		},
    																		Limit: pulumi.String("string"),
    																	},
    																	SyncOptions: pulumi.StringArray{
    																		pulumi.String("string"),
    																	},
    																},
    															},
    														},
    													},
    												},
    												ScmProviders: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderArray{
    													&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderArgs{
    														AzureDevops: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderAzureDevopsArgs{
    															Organization: pulumi.String("string"),
    															TeamProject:  pulumi.String("string"),
    															AccessTokenRef: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderAzureDevopsAccessTokenRefArgs{
    																Key:        pulumi.String("string"),
    																SecretName: pulumi.String("string"),
    															},
    															AllBranches: pulumi.Bool(false),
    															Api:         pulumi.String("string"),
    														},
    														BitbucketCloud: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderBitbucketCloudArgs{
    															Owner:       pulumi.String("string"),
    															User:        pulumi.String("string"),
    															AllBranches: pulumi.Bool(false),
    															AppPasswordRef: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderBitbucketCloudAppPasswordRefArgs{
    																Key:        pulumi.String("string"),
    																SecretName: pulumi.String("string"),
    															},
    														},
    														BitbucketServer: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderBitbucketServerArgs{
    															Api:         pulumi.String("string"),
    															Project:     pulumi.String("string"),
    															AllBranches: pulumi.Bool(false),
    															BasicAuth: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderBitbucketServerBasicAuthArgs{
    																PasswordRef: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderBitbucketServerBasicAuthPasswordRefArgs{
    																	Key:        pulumi.String("string"),
    																	SecretName: pulumi.String("string"),
    																},
    																Username: pulumi.String("string"),
    															},
    														},
    														CloneProtocol: pulumi.String("string"),
    														Filters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderFilterArray{
    															&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderFilterArgs{
    																BranchMatch: pulumi.String("string"),
    																LabelMatch:  pulumi.String("string"),
    																PathsDoNotExists: pulumi.StringArray{
    																	pulumi.String("string"),
    																},
    																PathsExists: pulumi.StringArray{
    																	pulumi.String("string"),
    																},
    																RepositoryMatch: pulumi.String("string"),
    															},
    														},
    														Gitea: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGiteaArgs{
    															Owner:       pulumi.String("string"),
    															AllBranches: pulumi.Bool(false),
    															Api:         pulumi.String("string"),
    															Insecure:    pulumi.Bool(false),
    															TokenRef: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGiteaTokenRefArgs{
    																Key:        pulumi.String("string"),
    																SecretName: pulumi.String("string"),
    															},
    														},
    														Github: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGithubArgs{
    															Organization:  pulumi.String("string"),
    															AllBranches:   pulumi.Bool(false),
    															Api:           pulumi.String("string"),
    															AppSecretName: pulumi.String("string"),
    															TokenRef: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGithubTokenRefArgs{
    																Key:        pulumi.String("string"),
    																SecretName: pulumi.String("string"),
    															},
    														},
    														Gitlab: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGitlabArgs{
    															Group:            pulumi.String("string"),
    															AllBranches:      pulumi.Bool(false),
    															Api:              pulumi.String("string"),
    															IncludeSubgroups: pulumi.Bool(false),
    															TokenRef: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGitlabTokenRefArgs{
    																Key:        pulumi.String("string"),
    																SecretName: pulumi.String("string"),
    															},
    														},
    														RequeueAfterSeconds: pulumi.String("string"),
    														Template: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateArgs{
    															Metadata: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateMetadataArgs{
    																Annotations: pulumi.StringMap{
    																	"string": pulumi.String("string"),
    																},
    																Finalizers: pulumi.StringArray{
    																	pulumi.String("string"),
    																},
    																Labels: pulumi.StringMap{
    																	"string": pulumi.String("string"),
    																},
    																Name:      pulumi.String("string"),
    																Namespace: pulumi.String("string"),
    															},
    															Spec: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecArgs{
    																Destination: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecDestinationArgs{
    																	Name:      pulumi.String("string"),
    																	Namespace: pulumi.String("string"),
    																	Server:    pulumi.String("string"),
    																},
    																IgnoreDifferences: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecIgnoreDifferenceArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecIgnoreDifferenceArgs{
    																		Group: pulumi.String("string"),
    																		JqPathExpressions: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		JsonPointers: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		Kind: pulumi.String("string"),
    																		ManagedFieldsManagers: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		Name:      pulumi.String("string"),
    																		Namespace: pulumi.String("string"),
    																	},
    																},
    																Infos: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecInfoArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecInfoArgs{
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    																Project:              pulumi.String("string"),
    																RevisionHistoryLimit: pulumi.Int(0),
    																Sources: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceArgs{
    																		Chart: pulumi.String("string"),
    																		Directory: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryArgs{
    																			Exclude: pulumi.String("string"),
    																			Include: pulumi.String("string"),
    																			Jsonnet: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetArgs{
    																				ExtVars: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetExtVarArray{
    																					&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetExtVarArgs{
    																						Code:  pulumi.Bool(false),
    																						Name:  pulumi.String("string"),
    																						Value: pulumi.String("string"),
    																					},
    																				},
    																				Libs: pulumi.StringArray{
    																					pulumi.String("string"),
    																				},
    																				Tlas: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetTlaArray{
    																					&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetTlaArgs{
    																						Code:  pulumi.Bool(false),
    																						Name:  pulumi.String("string"),
    																						Value: pulumi.String("string"),
    																					},
    																				},
    																			},
    																			Recurse: pulumi.Bool(false),
    																		},
    																		Helm: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmArgs{
    																			FileParameters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmFileParameterArray{
    																				&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmFileParameterArgs{
    																					Name: pulumi.String("string"),
    																					Path: pulumi.String("string"),
    																				},
    																			},
    																			IgnoreMissingValueFiles: pulumi.Bool(false),
    																			Parameters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmParameterArray{
    																				&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmParameterArgs{
    																					ForceString: pulumi.Bool(false),
    																					Name:        pulumi.String("string"),
    																					Value:       pulumi.String("string"),
    																				},
    																			},
    																			PassCredentials: pulumi.Bool(false),
    																			ReleaseName:     pulumi.String("string"),
    																			SkipCrds:        pulumi.Bool(false),
    																			ValueFiles: pulumi.StringArray{
    																				pulumi.String("string"),
    																			},
    																			Values:  pulumi.String("string"),
    																			Version: pulumi.String("string"),
    																		},
    																		Kustomize: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizeArgs{
    																			CommonAnnotations: pulumi.StringMap{
    																				"string": pulumi.String("string"),
    																			},
    																			CommonLabels: pulumi.StringMap{
    																				"string": pulumi.String("string"),
    																			},
    																			Images: pulumi.StringArray{
    																				pulumi.String("string"),
    																			},
    																			NamePrefix: pulumi.String("string"),
    																			NameSuffix: pulumi.String("string"),
    																			Patches: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizePatchArray{
    																				&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizePatchArgs{
    																					Target: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizePatchTargetArgs{
    																						AnnotationSelector: pulumi.String("string"),
    																						Group:              pulumi.String("string"),
    																						Kind:               pulumi.String("string"),
    																						LabelSelector:      pulumi.String("string"),
    																						Name:               pulumi.String("string"),
    																						Namespace:          pulumi.String("string"),
    																						Version:            pulumi.String("string"),
    																					},
    																					Options: pulumi.BoolMap{
    																						"string": pulumi.Bool(false),
    																					},
    																					Patch: pulumi.String("string"),
    																					Path:  pulumi.String("string"),
    																				},
    																			},
    																			Version: pulumi.String("string"),
    																		},
    																		Path: pulumi.String("string"),
    																		Plugin: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourcePluginArgs{
    																			Envs: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourcePluginEnvArray{
    																				&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourcePluginEnvArgs{
    																					Name:  pulumi.String("string"),
    																					Value: pulumi.String("string"),
    																				},
    																			},
    																			Name: pulumi.String("string"),
    																		},
    																		Ref:            pulumi.String("string"),
    																		RepoUrl:        pulumi.String("string"),
    																		TargetRevision: pulumi.String("string"),
    																	},
    																},
    																SyncPolicy: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyArgs{
    																	Automated: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyAutomatedArgs{
    																		AllowEmpty: pulumi.Bool(false),
    																		Prune:      pulumi.Bool(false),
    																		SelfHeal:   pulumi.Bool(false),
    																	},
    																	ManagedNamespaceMetadata: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyManagedNamespaceMetadataArgs{
    																		Annotations: pulumi.StringMap{
    																			"string": pulumi.String("string"),
    																		},
    																		Labels: pulumi.StringMap{
    																			"string": pulumi.String("string"),
    																		},
    																	},
    																	Retry: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyRetryArgs{
    																		Backoff: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyRetryBackoffArgs{
    																			Duration:    pulumi.String("string"),
    																			Factor:      pulumi.String("string"),
    																			MaxDuration: pulumi.String("string"),
    																		},
    																		Limit: pulumi.String("string"),
    																	},
    																	SyncOptions: pulumi.StringArray{
    																		pulumi.String("string"),
    																	},
    																},
    															},
    														},
    													},
    												},
    												Selector: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorSelectorArgs{
    													MatchExpressions: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorSelectorMatchExpressionArray{
    														&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorSelectorMatchExpressionArgs{
    															Key:      pulumi.String("string"),
    															Operator: pulumi.String("string"),
    															Values: pulumi.StringArray{
    																pulumi.String("string"),
    															},
    														},
    													},
    													MatchLabels: pulumi.StringMap{
    														"string": pulumi.String("string"),
    													},
    												},
    											},
    										},
    										Template: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateArgs{
    											Metadata: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateMetadataArgs{
    												Annotations: pulumi.StringMap{
    													"string": pulumi.String("string"),
    												},
    												Finalizers: pulumi.StringArray{
    													pulumi.String("string"),
    												},
    												Labels: pulumi.StringMap{
    													"string": pulumi.String("string"),
    												},
    												Name:      pulumi.String("string"),
    												Namespace: pulumi.String("string"),
    											},
    											Spec: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecArgs{
    												Destination: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecDestinationArgs{
    													Name:      pulumi.String("string"),
    													Namespace: pulumi.String("string"),
    													Server:    pulumi.String("string"),
    												},
    												IgnoreDifferences: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecIgnoreDifferenceArray{
    													&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecIgnoreDifferenceArgs{
    														Group: pulumi.String("string"),
    														JqPathExpressions: pulumi.StringArray{
    															pulumi.String("string"),
    														},
    														JsonPointers: pulumi.StringArray{
    															pulumi.String("string"),
    														},
    														Kind: pulumi.String("string"),
    														ManagedFieldsManagers: pulumi.StringArray{
    															pulumi.String("string"),
    														},
    														Name:      pulumi.String("string"),
    														Namespace: pulumi.String("string"),
    													},
    												},
    												Infos: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecInfoArray{
    													&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecInfoArgs{
    														Name:  pulumi.String("string"),
    														Value: pulumi.String("string"),
    													},
    												},
    												Project:              pulumi.String("string"),
    												RevisionHistoryLimit: pulumi.Int(0),
    												Sources: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceArray{
    													&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceArgs{
    														Chart: pulumi.String("string"),
    														Directory: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceDirectoryArgs{
    															Exclude: pulumi.String("string"),
    															Include: pulumi.String("string"),
    															Jsonnet: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceDirectoryJsonnetArgs{
    																ExtVars: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceDirectoryJsonnetExtVarArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceDirectoryJsonnetExtVarArgs{
    																		Code:  pulumi.Bool(false),
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    																Libs: pulumi.StringArray{
    																	pulumi.String("string"),
    																},
    																Tlas: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceDirectoryJsonnetTlaArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceDirectoryJsonnetTlaArgs{
    																		Code:  pulumi.Bool(false),
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    															},
    															Recurse: pulumi.Bool(false),
    														},
    														Helm: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceHelmArgs{
    															FileParameters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceHelmFileParameterArray{
    																&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceHelmFileParameterArgs{
    																	Name: pulumi.String("string"),
    																	Path: pulumi.String("string"),
    																},
    															},
    															IgnoreMissingValueFiles: pulumi.Bool(false),
    															Parameters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceHelmParameterArray{
    																&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceHelmParameterArgs{
    																	ForceString: pulumi.Bool(false),
    																	Name:        pulumi.String("string"),
    																	Value:       pulumi.String("string"),
    																},
    															},
    															PassCredentials: pulumi.Bool(false),
    															ReleaseName:     pulumi.String("string"),
    															SkipCrds:        pulumi.Bool(false),
    															ValueFiles: pulumi.StringArray{
    																pulumi.String("string"),
    															},
    															Values:  pulumi.String("string"),
    															Version: pulumi.String("string"),
    														},
    														Kustomize: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceKustomizeArgs{
    															CommonAnnotations: pulumi.StringMap{
    																"string": pulumi.String("string"),
    															},
    															CommonLabels: pulumi.StringMap{
    																"string": pulumi.String("string"),
    															},
    															Images: pulumi.StringArray{
    																pulumi.String("string"),
    															},
    															NamePrefix: pulumi.String("string"),
    															NameSuffix: pulumi.String("string"),
    															Patches: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceKustomizePatchArray{
    																&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceKustomizePatchArgs{
    																	Target: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceKustomizePatchTargetArgs{
    																		AnnotationSelector: pulumi.String("string"),
    																		Group:              pulumi.String("string"),
    																		Kind:               pulumi.String("string"),
    																		LabelSelector:      pulumi.String("string"),
    																		Name:               pulumi.String("string"),
    																		Namespace:          pulumi.String("string"),
    																		Version:            pulumi.String("string"),
    																	},
    																	Options: pulumi.BoolMap{
    																		"string": pulumi.Bool(false),
    																	},
    																	Patch: pulumi.String("string"),
    																	Path:  pulumi.String("string"),
    																},
    															},
    															Version: pulumi.String("string"),
    														},
    														Path: pulumi.String("string"),
    														Plugin: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourcePluginArgs{
    															Envs: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourcePluginEnvArray{
    																&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourcePluginEnvArgs{
    																	Name:  pulumi.String("string"),
    																	Value: pulumi.String("string"),
    																},
    															},
    															Name: pulumi.String("string"),
    														},
    														Ref:            pulumi.String("string"),
    														RepoUrl:        pulumi.String("string"),
    														TargetRevision: pulumi.String("string"),
    													},
    												},
    												SyncPolicy: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicyArgs{
    													Automated: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicyAutomatedArgs{
    														AllowEmpty: pulumi.Bool(false),
    														Prune:      pulumi.Bool(false),
    														SelfHeal:   pulumi.Bool(false),
    													},
    													ManagedNamespaceMetadata: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicyManagedNamespaceMetadataArgs{
    														Annotations: pulumi.StringMap{
    															"string": pulumi.String("string"),
    														},
    														Labels: pulumi.StringMap{
    															"string": pulumi.String("string"),
    														},
    													},
    													Retry: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicyRetryArgs{
    														Backoff: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicyRetryBackoffArgs{
    															Duration:    pulumi.String("string"),
    															Factor:      pulumi.String("string"),
    															MaxDuration: pulumi.String("string"),
    														},
    														Limit: pulumi.String("string"),
    													},
    													SyncOptions: pulumi.StringArray{
    														pulumi.String("string"),
    													},
    												},
    											},
    										},
    									},
    								},
    								Merges: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeArray{
    									&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeArgs{
    										Generators: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorArray{
    											&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorArgs{
    												ClusterDecisionResources: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceArray{
    													&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceArgs{
    														ConfigMapRef: pulumi.String("string"),
    														LabelSelector: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceLabelSelectorArgs{
    															MatchExpressions: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceLabelSelectorMatchExpressionArray{
    																&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceLabelSelectorMatchExpressionArgs{
    																	Key:      pulumi.String("string"),
    																	Operator: pulumi.String("string"),
    																	Values: pulumi.StringArray{
    																		pulumi.String("string"),
    																	},
    																},
    															},
    															MatchLabels: pulumi.StringMap{
    																"string": pulumi.String("string"),
    															},
    														},
    														Name:                pulumi.String("string"),
    														RequeueAfterSeconds: pulumi.String("string"),
    														Template: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateArgs{
    															Metadata: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateMetadataArgs{
    																Annotations: pulumi.StringMap{
    																	"string": pulumi.String("string"),
    																},
    																Finalizers: pulumi.StringArray{
    																	pulumi.String("string"),
    																},
    																Labels: pulumi.StringMap{
    																	"string": pulumi.String("string"),
    																},
    																Name:      pulumi.String("string"),
    																Namespace: pulumi.String("string"),
    															},
    															Spec: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecArgs{
    																Destination: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecDestinationArgs{
    																	Name:      pulumi.String("string"),
    																	Namespace: pulumi.String("string"),
    																	Server:    pulumi.String("string"),
    																},
    																IgnoreDifferences: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecIgnoreDifferenceArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecIgnoreDifferenceArgs{
    																		Group: pulumi.String("string"),
    																		JqPathExpressions: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		JsonPointers: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		Kind: pulumi.String("string"),
    																		ManagedFieldsManagers: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		Name:      pulumi.String("string"),
    																		Namespace: pulumi.String("string"),
    																	},
    																},
    																Infos: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecInfoArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecInfoArgs{
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    																Project:              pulumi.String("string"),
    																RevisionHistoryLimit: pulumi.Int(0),
    																Sources: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceArgs{
    																		Chart: pulumi.String("string"),
    																		Directory: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryArgs{
    																			Exclude: pulumi.String("string"),
    																			Include: pulumi.String("string"),
    																			Jsonnet: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetArgs{
    																				ExtVars: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetExtVarArray{
    																					&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetExtVarArgs{
    																						Code:  pulumi.Bool(false),
    																						Name:  pulumi.String("string"),
    																						Value: pulumi.String("string"),
    																					},
    																				},
    																				Libs: pulumi.StringArray{
    																					pulumi.String("string"),
    																				},
    																				Tlas: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetTlaArray{
    																					&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetTlaArgs{
    																						Code:  pulumi.Bool(false),
    																						Name:  pulumi.String("string"),
    																						Value: pulumi.String("string"),
    																					},
    																				},
    																			},
    																			Recurse: pulumi.Bool(false),
    																		},
    																		Helm: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmArgs{
    																			FileParameters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameterArray{
    																				&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameterArgs{
    																					Name: pulumi.String("string"),
    																					Path: pulumi.String("string"),
    																				},
    																			},
    																			IgnoreMissingValueFiles: pulumi.Bool(false),
    																			Parameters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameterArray{
    																				&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameterArgs{
    																					ForceString: pulumi.Bool(false),
    																					Name:        pulumi.String("string"),
    																					Value:       pulumi.String("string"),
    																				},
    																			},
    																			PassCredentials: pulumi.Bool(false),
    																			ReleaseName:     pulumi.String("string"),
    																			SkipCrds:        pulumi.Bool(false),
    																			ValueFiles: pulumi.StringArray{
    																				pulumi.String("string"),
    																			},
    																			Values:  pulumi.String("string"),
    																			Version: pulumi.String("string"),
    																		},
    																		Kustomize: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizeArgs{
    																			CommonAnnotations: pulumi.StringMap{
    																				"string": pulumi.String("string"),
    																			},
    																			CommonLabels: pulumi.StringMap{
    																				"string": pulumi.String("string"),
    																			},
    																			Images: pulumi.StringArray{
    																				pulumi.String("string"),
    																			},
    																			NamePrefix: pulumi.String("string"),
    																			NameSuffix: pulumi.String("string"),
    																			Patches: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchArray{
    																				&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchArgs{
    																					Target: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTargetArgs{
    																						AnnotationSelector: pulumi.String("string"),
    																						Group:              pulumi.String("string"),
    																						Kind:               pulumi.String("string"),
    																						LabelSelector:      pulumi.String("string"),
    																						Name:               pulumi.String("string"),
    																						Namespace:          pulumi.String("string"),
    																						Version:            pulumi.String("string"),
    																					},
    																					Options: pulumi.BoolMap{
    																						"string": pulumi.Bool(false),
    																					},
    																					Patch: pulumi.String("string"),
    																					Path:  pulumi.String("string"),
    																				},
    																			},
    																			Version: pulumi.String("string"),
    																		},
    																		Path: pulumi.String("string"),
    																		Plugin: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourcePluginArgs{
    																			Envs: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnvArray{
    																				&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnvArgs{
    																					Name:  pulumi.String("string"),
    																					Value: pulumi.String("string"),
    																				},
    																			},
    																			Name: pulumi.String("string"),
    																		},
    																		Ref:            pulumi.String("string"),
    																		RepoUrl:        pulumi.String("string"),
    																		TargetRevision: pulumi.String("string"),
    																	},
    																},
    																SyncPolicy: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyArgs{
    																	Automated: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomatedArgs{
    																		AllowEmpty: pulumi.Bool(false),
    																		Prune:      pulumi.Bool(false),
    																		SelfHeal:   pulumi.Bool(false),
    																	},
    																	ManagedNamespaceMetadata: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadataArgs{
    																		Annotations: pulumi.StringMap{
    																			"string": pulumi.String("string"),
    																		},
    																		Labels: pulumi.StringMap{
    																			"string": pulumi.String("string"),
    																		},
    																	},
    																	Retry: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryArgs{
    																		Backoff: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoffArgs{
    																			Duration:    pulumi.String("string"),
    																			Factor:      pulumi.String("string"),
    																			MaxDuration: pulumi.String("string"),
    																		},
    																		Limit: pulumi.String("string"),
    																	},
    																	SyncOptions: pulumi.StringArray{
    																		pulumi.String("string"),
    																	},
    																},
    															},
    														},
    														Values: pulumi.StringMap{
    															"string": pulumi.String("string"),
    														},
    													},
    												},
    												Clusters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterArray{
    													&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterArgs{
    														Enabled: pulumi.Bool(false),
    														Selector: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterSelectorArgs{
    															MatchExpressions: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterSelectorMatchExpressionArray{
    																&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterSelectorMatchExpressionArgs{
    																	Key:      pulumi.String("string"),
    																	Operator: pulumi.String("string"),
    																	Values: pulumi.StringArray{
    																		pulumi.String("string"),
    																	},
    																},
    															},
    															MatchLabels: pulumi.StringMap{
    																"string": pulumi.String("string"),
    															},
    														},
    														Template: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateArgs{
    															Metadata: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateMetadataArgs{
    																Annotations: pulumi.StringMap{
    																	"string": pulumi.String("string"),
    																},
    																Finalizers: pulumi.StringArray{
    																	pulumi.String("string"),
    																},
    																Labels: pulumi.StringMap{
    																	"string": pulumi.String("string"),
    																},
    																Name:      pulumi.String("string"),
    																Namespace: pulumi.String("string"),
    															},
    															Spec: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecArgs{
    																Destination: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecDestinationArgs{
    																	Name:      pulumi.String("string"),
    																	Namespace: pulumi.String("string"),
    																	Server:    pulumi.String("string"),
    																},
    																IgnoreDifferences: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecIgnoreDifferenceArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecIgnoreDifferenceArgs{
    																		Group: pulumi.String("string"),
    																		JqPathExpressions: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		JsonPointers: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		Kind: pulumi.String("string"),
    																		ManagedFieldsManagers: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		Name:      pulumi.String("string"),
    																		Namespace: pulumi.String("string"),
    																	},
    																},
    																Infos: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecInfoArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecInfoArgs{
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    																Project:              pulumi.String("string"),
    																RevisionHistoryLimit: pulumi.Int(0),
    																Sources: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceArgs{
    																		Chart: pulumi.String("string"),
    																		Directory: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryArgs{
    																			Exclude: pulumi.String("string"),
    																			Include: pulumi.String("string"),
    																			Jsonnet: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnetArgs{
    																				ExtVars: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnetExtVarArray{
    																					&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnetExtVarArgs{
    																						Code:  pulumi.Bool(false),
    																						Name:  pulumi.String("string"),
    																						Value: pulumi.String("string"),
    																					},
    																				},
    																				Libs: pulumi.StringArray{
    																					pulumi.String("string"),
    																				},
    																				Tlas: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnetTlaArray{
    																					&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnetTlaArgs{
    																						Code:  pulumi.Bool(false),
    																						Name:  pulumi.String("string"),
    																						Value: pulumi.String("string"),
    																					},
    																				},
    																			},
    																			Recurse: pulumi.Bool(false),
    																		},
    																		Helm: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceHelmArgs{
    																			FileParameters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceHelmFileParameterArray{
    																				&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceHelmFileParameterArgs{
    																					Name: pulumi.String("string"),
    																					Path: pulumi.String("string"),
    																				},
    																			},
    																			IgnoreMissingValueFiles: pulumi.Bool(false),
    																			Parameters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceHelmParameterArray{
    																				&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceHelmParameterArgs{
    																					ForceString: pulumi.Bool(false),
    																					Name:        pulumi.String("string"),
    																					Value:       pulumi.String("string"),
    																				},
    																			},
    																			PassCredentials: pulumi.Bool(false),
    																			ReleaseName:     pulumi.String("string"),
    																			SkipCrds:        pulumi.Bool(false),
    																			ValueFiles: pulumi.StringArray{
    																				pulumi.String("string"),
    																			},
    																			Values:  pulumi.String("string"),
    																			Version: pulumi.String("string"),
    																		},
    																		Kustomize: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizeArgs{
    																			CommonAnnotations: pulumi.StringMap{
    																				"string": pulumi.String("string"),
    																			},
    																			CommonLabels: pulumi.StringMap{
    																				"string": pulumi.String("string"),
    																			},
    																			Images: pulumi.StringArray{
    																				pulumi.String("string"),
    																			},
    																			NamePrefix: pulumi.String("string"),
    																			NameSuffix: pulumi.String("string"),
    																			Patches: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizePatchArray{
    																				&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizePatchArgs{
    																					Target: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizePatchTargetArgs{
    																						AnnotationSelector: pulumi.String("string"),
    																						Group:              pulumi.String("string"),
    																						Kind:               pulumi.String("string"),
    																						LabelSelector:      pulumi.String("string"),
    																						Name:               pulumi.String("string"),
    																						Namespace:          pulumi.String("string"),
    																						Version:            pulumi.String("string"),
    																					},
    																					Options: pulumi.BoolMap{
    																						"string": pulumi.Bool(false),
    																					},
    																					Patch: pulumi.String("string"),
    																					Path:  pulumi.String("string"),
    																				},
    																			},
    																			Version: pulumi.String("string"),
    																		},
    																		Path: pulumi.String("string"),
    																		Plugin: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourcePluginArgs{
    																			Envs: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourcePluginEnvArray{
    																				&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourcePluginEnvArgs{
    																					Name:  pulumi.String("string"),
    																					Value: pulumi.String("string"),
    																				},
    																			},
    																			Name: pulumi.String("string"),
    																		},
    																		Ref:            pulumi.String("string"),
    																		RepoUrl:        pulumi.String("string"),
    																		TargetRevision: pulumi.String("string"),
    																	},
    																},
    																SyncPolicy: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyArgs{
    																	Automated: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyAutomatedArgs{
    																		AllowEmpty: pulumi.Bool(false),
    																		Prune:      pulumi.Bool(false),
    																		SelfHeal:   pulumi.Bool(false),
    																	},
    																	ManagedNamespaceMetadata: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadataArgs{
    																		Annotations: pulumi.StringMap{
    																			"string": pulumi.String("string"),
    																		},
    																		Labels: pulumi.StringMap{
    																			"string": pulumi.String("string"),
    																		},
    																	},
    																	Retry: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyRetryArgs{
    																		Backoff: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyRetryBackoffArgs{
    																			Duration:    pulumi.String("string"),
    																			Factor:      pulumi.String("string"),
    																			MaxDuration: pulumi.String("string"),
    																		},
    																		Limit: pulumi.String("string"),
    																	},
    																	SyncOptions: pulumi.StringArray{
    																		pulumi.String("string"),
    																	},
    																},
    															},
    														},
    														Values: pulumi.StringMap{
    															"string": pulumi.String("string"),
    														},
    													},
    												},
    												Gits: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitArray{
    													&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitArgs{
    														RepoUrl: pulumi.String("string"),
    														Directories: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitDirectoryArray{
    															&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitDirectoryArgs{
    																Path:    pulumi.String("string"),
    																Exclude: pulumi.Bool(false),
    															},
    														},
    														Files: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitFileArray{
    															&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitFileArgs{
    																Path: pulumi.String("string"),
    															},
    														},
    														PathParamPrefix: pulumi.String("string"),
    														Revision:        pulumi.String("string"),
    														Template: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateArgs{
    															Metadata: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateMetadataArgs{
    																Annotations: pulumi.StringMap{
    																	"string": pulumi.String("string"),
    																},
    																Finalizers: pulumi.StringArray{
    																	pulumi.String("string"),
    																},
    																Labels: pulumi.StringMap{
    																	"string": pulumi.String("string"),
    																},
    																Name:      pulumi.String("string"),
    																Namespace: pulumi.String("string"),
    															},
    															Spec: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecArgs{
    																Destination: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecDestinationArgs{
    																	Name:      pulumi.String("string"),
    																	Namespace: pulumi.String("string"),
    																	Server:    pulumi.String("string"),
    																},
    																IgnoreDifferences: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecIgnoreDifferenceArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecIgnoreDifferenceArgs{
    																		Group: pulumi.String("string"),
    																		JqPathExpressions: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		JsonPointers: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		Kind: pulumi.String("string"),
    																		ManagedFieldsManagers: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		Name:      pulumi.String("string"),
    																		Namespace: pulumi.String("string"),
    																	},
    																},
    																Infos: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecInfoArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecInfoArgs{
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    																Project:              pulumi.String("string"),
    																RevisionHistoryLimit: pulumi.Int(0),
    																Sources: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceArgs{
    																		Chart: pulumi.String("string"),
    																		Directory: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryArgs{
    																			Exclude: pulumi.String("string"),
    																			Include: pulumi.String("string"),
    																			Jsonnet: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnetArgs{
    																				ExtVars: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnetExtVarArray{
    																					&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnetExtVarArgs{
    																						Code:  pulumi.Bool(false),
    																						Name:  pulumi.String("string"),
    																						Value: pulumi.String("string"),
    																					},
    																				},
    																				Libs: pulumi.StringArray{
    																					pulumi.String("string"),
    																				},
    																				Tlas: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnetTlaArray{
    																					&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnetTlaArgs{
    																						Code:  pulumi.Bool(false),
    																						Name:  pulumi.String("string"),
    																						Value: pulumi.String("string"),
    																					},
    																				},
    																			},
    																			Recurse: pulumi.Bool(false),
    																		},
    																		Helm: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceHelmArgs{
    																			FileParameters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceHelmFileParameterArray{
    																				&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceHelmFileParameterArgs{
    																					Name: pulumi.String("string"),
    																					Path: pulumi.String("string"),
    																				},
    																			},
    																			IgnoreMissingValueFiles: pulumi.Bool(false),
    																			Parameters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceHelmParameterArray{
    																				&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceHelmParameterArgs{
    																					ForceString: pulumi.Bool(false),
    																					Name:        pulumi.String("string"),
    																					Value:       pulumi.String("string"),
    																				},
    																			},
    																			PassCredentials: pulumi.Bool(false),
    																			ReleaseName:     pulumi.String("string"),
    																			SkipCrds:        pulumi.Bool(false),
    																			ValueFiles: pulumi.StringArray{
    																				pulumi.String("string"),
    																			},
    																			Values:  pulumi.String("string"),
    																			Version: pulumi.String("string"),
    																		},
    																		Kustomize: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceKustomizeArgs{
    																			CommonAnnotations: pulumi.StringMap{
    																				"string": pulumi.String("string"),
    																			},
    																			CommonLabels: pulumi.StringMap{
    																				"string": pulumi.String("string"),
    																			},
    																			Images: pulumi.StringArray{
    																				pulumi.String("string"),
    																			},
    																			NamePrefix: pulumi.String("string"),
    																			NameSuffix: pulumi.String("string"),
    																			Patches: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceKustomizePatchArray{
    																				&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceKustomizePatchArgs{
    																					Target: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceKustomizePatchTargetArgs{
    																						AnnotationSelector: pulumi.String("string"),
    																						Group:              pulumi.String("string"),
    																						Kind:               pulumi.String("string"),
    																						LabelSelector:      pulumi.String("string"),
    																						Name:               pulumi.String("string"),
    																						Namespace:          pulumi.String("string"),
    																						Version:            pulumi.String("string"),
    																					},
    																					Options: pulumi.BoolMap{
    																						"string": pulumi.Bool(false),
    																					},
    																					Patch: pulumi.String("string"),
    																					Path:  pulumi.String("string"),
    																				},
    																			},
    																			Version: pulumi.String("string"),
    																		},
    																		Path: pulumi.String("string"),
    																		Plugin: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourcePluginArgs{
    																			Envs: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourcePluginEnvArray{
    																				&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourcePluginEnvArgs{
    																					Name:  pulumi.String("string"),
    																					Value: pulumi.String("string"),
    																				},
    																			},
    																			Name: pulumi.String("string"),
    																		},
    																		Ref:            pulumi.String("string"),
    																		RepoUrl:        pulumi.String("string"),
    																		TargetRevision: pulumi.String("string"),
    																	},
    																},
    																SyncPolicy: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicyArgs{
    																	Automated: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicyAutomatedArgs{
    																		AllowEmpty: pulumi.Bool(false),
    																		Prune:      pulumi.Bool(false),
    																		SelfHeal:   pulumi.Bool(false),
    																	},
    																	ManagedNamespaceMetadata: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadataArgs{
    																		Annotations: pulumi.StringMap{
    																			"string": pulumi.String("string"),
    																		},
    																		Labels: pulumi.StringMap{
    																			"string": pulumi.String("string"),
    																		},
    																	},
    																	Retry: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicyRetryArgs{
    																		Backoff: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicyRetryBackoffArgs{
    																			Duration:    pulumi.String("string"),
    																			Factor:      pulumi.String("string"),
    																			MaxDuration: pulumi.String("string"),
    																		},
    																		Limit: pulumi.String("string"),
    																	},
    																	SyncOptions: pulumi.StringArray{
    																		pulumi.String("string"),
    																	},
    																},
    															},
    														},
    														Values: pulumi.StringMap{
    															"string": pulumi.String("string"),
    														},
    													},
    												},
    												Lists: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListArray{
    													&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListArgs{
    														Elements: pulumi.StringMapArray{
    															pulumi.StringMap{
    																"string": pulumi.String("string"),
    															},
    														},
    														Template: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateArgs{
    															Metadata: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateMetadataArgs{
    																Annotations: pulumi.StringMap{
    																	"string": pulumi.String("string"),
    																},
    																Finalizers: pulumi.StringArray{
    																	pulumi.String("string"),
    																},
    																Labels: pulumi.StringMap{
    																	"string": pulumi.String("string"),
    																},
    																Name:      pulumi.String("string"),
    																Namespace: pulumi.String("string"),
    															},
    															Spec: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecArgs{
    																Destination: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecDestinationArgs{
    																	Name:      pulumi.String("string"),
    																	Namespace: pulumi.String("string"),
    																	Server:    pulumi.String("string"),
    																},
    																IgnoreDifferences: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecIgnoreDifferenceArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecIgnoreDifferenceArgs{
    																		Group: pulumi.String("string"),
    																		JqPathExpressions: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		JsonPointers: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		Kind: pulumi.String("string"),
    																		ManagedFieldsManagers: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		Name:      pulumi.String("string"),
    																		Namespace: pulumi.String("string"),
    																	},
    																},
    																Infos: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecInfoArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecInfoArgs{
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    																Project:              pulumi.String("string"),
    																RevisionHistoryLimit: pulumi.Int(0),
    																Sources: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceArgs{
    																		Chart: pulumi.String("string"),
    																		Directory: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceDirectoryArgs{
    																			Exclude: pulumi.String("string"),
    																			Include: pulumi.String("string"),
    																			Jsonnet: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnetArgs{
    																				ExtVars: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnetExtVarArray{
    																					&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnetExtVarArgs{
    																						Code:  pulumi.Bool(false),
    																						Name:  pulumi.String("string"),
    																						Value: pulumi.String("string"),
    																					},
    																				},
    																				Libs: pulumi.StringArray{
    																					pulumi.String("string"),
    																				},
    																				Tlas: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnetTlaArray{
    																					&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnetTlaArgs{
    																						Code:  pulumi.Bool(false),
    																						Name:  pulumi.String("string"),
    																						Value: pulumi.String("string"),
    																					},
    																				},
    																			},
    																			Recurse: pulumi.Bool(false),
    																		},
    																		Helm: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceHelmArgs{
    																			FileParameters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceHelmFileParameterArray{
    																				&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceHelmFileParameterArgs{
    																					Name: pulumi.String("string"),
    																					Path: pulumi.String("string"),
    																				},
    																			},
    																			IgnoreMissingValueFiles: pulumi.Bool(false),
    																			Parameters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceHelmParameterArray{
    																				&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceHelmParameterArgs{
    																					ForceString: pulumi.Bool(false),
    																					Name:        pulumi.String("string"),
    																					Value:       pulumi.String("string"),
    																				},
    																			},
    																			PassCredentials: pulumi.Bool(false),
    																			ReleaseName:     pulumi.String("string"),
    																			SkipCrds:        pulumi.Bool(false),
    																			ValueFiles: pulumi.StringArray{
    																				pulumi.String("string"),
    																			},
    																			Values:  pulumi.String("string"),
    																			Version: pulumi.String("string"),
    																		},
    																		Kustomize: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceKustomizeArgs{
    																			CommonAnnotations: pulumi.StringMap{
    																				"string": pulumi.String("string"),
    																			},
    																			CommonLabels: pulumi.StringMap{
    																				"string": pulumi.String("string"),
    																			},
    																			Images: pulumi.StringArray{
    																				pulumi.String("string"),
    																			},
    																			NamePrefix: pulumi.String("string"),
    																			NameSuffix: pulumi.String("string"),
    																			Patches: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceKustomizePatchArray{
    																				&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceKustomizePatchArgs{
    																					Target: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceKustomizePatchTargetArgs{
    																						AnnotationSelector: pulumi.String("string"),
    																						Group:              pulumi.String("string"),
    																						Kind:               pulumi.String("string"),
    																						LabelSelector:      pulumi.String("string"),
    																						Name:               pulumi.String("string"),
    																						Namespace:          pulumi.String("string"),
    																						Version:            pulumi.String("string"),
    																					},
    																					Options: pulumi.BoolMap{
    																						"string": pulumi.Bool(false),
    																					},
    																					Patch: pulumi.String("string"),
    																					Path:  pulumi.String("string"),
    																				},
    																			},
    																			Version: pulumi.String("string"),
    																		},
    																		Path: pulumi.String("string"),
    																		Plugin: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourcePluginArgs{
    																			Envs: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourcePluginEnvArray{
    																				&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourcePluginEnvArgs{
    																					Name:  pulumi.String("string"),
    																					Value: pulumi.String("string"),
    																				},
    																			},
    																			Name: pulumi.String("string"),
    																		},
    																		Ref:            pulumi.String("string"),
    																		RepoUrl:        pulumi.String("string"),
    																		TargetRevision: pulumi.String("string"),
    																	},
    																},
    																SyncPolicy: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicyArgs{
    																	Automated: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicyAutomatedArgs{
    																		AllowEmpty: pulumi.Bool(false),
    																		Prune:      pulumi.Bool(false),
    																		SelfHeal:   pulumi.Bool(false),
    																	},
    																	ManagedNamespaceMetadata: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadataArgs{
    																		Annotations: pulumi.StringMap{
    																			"string": pulumi.String("string"),
    																		},
    																		Labels: pulumi.StringMap{
    																			"string": pulumi.String("string"),
    																		},
    																	},
    																	Retry: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicyRetryArgs{
    																		Backoff: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicyRetryBackoffArgs{
    																			Duration:    pulumi.String("string"),
    																			Factor:      pulumi.String("string"),
    																			MaxDuration: pulumi.String("string"),
    																		},
    																		Limit: pulumi.String("string"),
    																	},
    																	SyncOptions: pulumi.StringArray{
    																		pulumi.String("string"),
    																	},
    																},
    															},
    														},
    													},
    												},
    												PullRequests: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestArray{
    													&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestArgs{
    														BitbucketServer: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestBitbucketServerArgs{
    															Api:     pulumi.String("string"),
    															Project: pulumi.String("string"),
    															Repo:    pulumi.String("string"),
    															BasicAuth: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestBitbucketServerBasicAuthArgs{
    																PasswordRef: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestBitbucketServerBasicAuthPasswordRefArgs{
    																	Key:        pulumi.String("string"),
    																	SecretName: pulumi.String("string"),
    																},
    																Username: pulumi.String("string"),
    															},
    														},
    														Filters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestFilterArray{
    															&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestFilterArgs{
    																BranchMatch: pulumi.String("string"),
    															},
    														},
    														Gitea: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGiteaArgs{
    															Api:      pulumi.String("string"),
    															Owner:    pulumi.String("string"),
    															Repo:     pulumi.String("string"),
    															Insecure: pulumi.Bool(false),
    															TokenRef: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGiteaTokenRefArgs{
    																Key:        pulumi.String("string"),
    																SecretName: pulumi.String("string"),
    															},
    														},
    														Github: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGithubArgs{
    															Owner:         pulumi.String("string"),
    															Repo:          pulumi.String("string"),
    															Api:           pulumi.String("string"),
    															AppSecretName: pulumi.String("string"),
    															Labels: pulumi.StringArray{
    																pulumi.String("string"),
    															},
    															TokenRef: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGithubTokenRefArgs{
    																Key:        pulumi.String("string"),
    																SecretName: pulumi.String("string"),
    															},
    														},
    														Gitlab: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGitlabArgs{
    															Project: pulumi.String("string"),
    															Api:     pulumi.String("string"),
    															Labels: pulumi.StringArray{
    																pulumi.String("string"),
    															},
    															PullRequestState: pulumi.String("string"),
    															TokenRef: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGitlabTokenRefArgs{
    																Key:        pulumi.String("string"),
    																SecretName: pulumi.String("string"),
    															},
    														},
    														RequeueAfterSeconds: pulumi.String("string"),
    														Template: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateArgs{
    															Metadata: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateMetadataArgs{
    																Annotations: pulumi.StringMap{
    																	"string": pulumi.String("string"),
    																},
    																Finalizers: pulumi.StringArray{
    																	pulumi.String("string"),
    																},
    																Labels: pulumi.StringMap{
    																	"string": pulumi.String("string"),
    																},
    																Name:      pulumi.String("string"),
    																Namespace: pulumi.String("string"),
    															},
    															Spec: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecArgs{
    																Destination: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecDestinationArgs{
    																	Name:      pulumi.String("string"),
    																	Namespace: pulumi.String("string"),
    																	Server:    pulumi.String("string"),
    																},
    																IgnoreDifferences: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecIgnoreDifferenceArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecIgnoreDifferenceArgs{
    																		Group: pulumi.String("string"),
    																		JqPathExpressions: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		JsonPointers: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		Kind: pulumi.String("string"),
    																		ManagedFieldsManagers: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		Name:      pulumi.String("string"),
    																		Namespace: pulumi.String("string"),
    																	},
    																},
    																Infos: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecInfoArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecInfoArgs{
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    																Project:              pulumi.String("string"),
    																RevisionHistoryLimit: pulumi.Int(0),
    																Sources: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceArgs{
    																		Chart: pulumi.String("string"),
    																		Directory: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryArgs{
    																			Exclude: pulumi.String("string"),
    																			Include: pulumi.String("string"),
    																			Jsonnet: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetArgs{
    																				ExtVars: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetExtVarArray{
    																					&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetExtVarArgs{
    																						Code:  pulumi.Bool(false),
    																						Name:  pulumi.String("string"),
    																						Value: pulumi.String("string"),
    																					},
    																				},
    																				Libs: pulumi.StringArray{
    																					pulumi.String("string"),
    																				},
    																				Tlas: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetTlaArray{
    																					&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetTlaArgs{
    																						Code:  pulumi.Bool(false),
    																						Name:  pulumi.String("string"),
    																						Value: pulumi.String("string"),
    																					},
    																				},
    																			},
    																			Recurse: pulumi.Bool(false),
    																		},
    																		Helm: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmArgs{
    																			FileParameters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmFileParameterArray{
    																				&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmFileParameterArgs{
    																					Name: pulumi.String("string"),
    																					Path: pulumi.String("string"),
    																				},
    																			},
    																			IgnoreMissingValueFiles: pulumi.Bool(false),
    																			Parameters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmParameterArray{
    																				&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmParameterArgs{
    																					ForceString: pulumi.Bool(false),
    																					Name:        pulumi.String("string"),
    																					Value:       pulumi.String("string"),
    																				},
    																			},
    																			PassCredentials: pulumi.Bool(false),
    																			ReleaseName:     pulumi.String("string"),
    																			SkipCrds:        pulumi.Bool(false),
    																			ValueFiles: pulumi.StringArray{
    																				pulumi.String("string"),
    																			},
    																			Values:  pulumi.String("string"),
    																			Version: pulumi.String("string"),
    																		},
    																		Kustomize: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomizeArgs{
    																			CommonAnnotations: pulumi.StringMap{
    																				"string": pulumi.String("string"),
    																			},
    																			CommonLabels: pulumi.StringMap{
    																				"string": pulumi.String("string"),
    																			},
    																			Images: pulumi.StringArray{
    																				pulumi.String("string"),
    																			},
    																			NamePrefix: pulumi.String("string"),
    																			NameSuffix: pulumi.String("string"),
    																			Patches: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomizePatchArray{
    																				&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomizePatchArgs{
    																					Target: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomizePatchTargetArgs{
    																						AnnotationSelector: pulumi.String("string"),
    																						Group:              pulumi.String("string"),
    																						Kind:               pulumi.String("string"),
    																						LabelSelector:      pulumi.String("string"),
    																						Name:               pulumi.String("string"),
    																						Namespace:          pulumi.String("string"),
    																						Version:            pulumi.String("string"),
    																					},
    																					Options: pulumi.BoolMap{
    																						"string": pulumi.Bool(false),
    																					},
    																					Patch: pulumi.String("string"),
    																					Path:  pulumi.String("string"),
    																				},
    																			},
    																			Version: pulumi.String("string"),
    																		},
    																		Path: pulumi.String("string"),
    																		Plugin: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourcePluginArgs{
    																			Envs: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourcePluginEnvArray{
    																				&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourcePluginEnvArgs{
    																					Name:  pulumi.String("string"),
    																					Value: pulumi.String("string"),
    																				},
    																			},
    																			Name: pulumi.String("string"),
    																		},
    																		Ref:            pulumi.String("string"),
    																		RepoUrl:        pulumi.String("string"),
    																		TargetRevision: pulumi.String("string"),
    																	},
    																},
    																SyncPolicy: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyArgs{
    																	Automated: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyAutomatedArgs{
    																		AllowEmpty: pulumi.Bool(false),
    																		Prune:      pulumi.Bool(false),
    																		SelfHeal:   pulumi.Bool(false),
    																	},
    																	ManagedNamespaceMetadata: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyManagedNamespaceMetadataArgs{
    																		Annotations: pulumi.StringMap{
    																			"string": pulumi.String("string"),
    																		},
    																		Labels: pulumi.StringMap{
    																			"string": pulumi.String("string"),
    																		},
    																	},
    																	Retry: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyRetryArgs{
    																		Backoff: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyRetryBackoffArgs{
    																			Duration:    pulumi.String("string"),
    																			Factor:      pulumi.String("string"),
    																			MaxDuration: pulumi.String("string"),
    																		},
    																		Limit: pulumi.String("string"),
    																	},
    																	SyncOptions: pulumi.StringArray{
    																		pulumi.String("string"),
    																	},
    																},
    															},
    														},
    													},
    												},
    												ScmProviders: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderArray{
    													&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderArgs{
    														AzureDevops: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderAzureDevopsArgs{
    															Organization: pulumi.String("string"),
    															TeamProject:  pulumi.String("string"),
    															AccessTokenRef: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderAzureDevopsAccessTokenRefArgs{
    																Key:        pulumi.String("string"),
    																SecretName: pulumi.String("string"),
    															},
    															AllBranches: pulumi.Bool(false),
    															Api:         pulumi.String("string"),
    														},
    														BitbucketCloud: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderBitbucketCloudArgs{
    															Owner:       pulumi.String("string"),
    															User:        pulumi.String("string"),
    															AllBranches: pulumi.Bool(false),
    															AppPasswordRef: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderBitbucketCloudAppPasswordRefArgs{
    																Key:        pulumi.String("string"),
    																SecretName: pulumi.String("string"),
    															},
    														},
    														BitbucketServer: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderBitbucketServerArgs{
    															Api:         pulumi.String("string"),
    															Project:     pulumi.String("string"),
    															AllBranches: pulumi.Bool(false),
    															BasicAuth: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderBitbucketServerBasicAuthArgs{
    																PasswordRef: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderBitbucketServerBasicAuthPasswordRefArgs{
    																	Key:        pulumi.String("string"),
    																	SecretName: pulumi.String("string"),
    																},
    																Username: pulumi.String("string"),
    															},
    														},
    														CloneProtocol: pulumi.String("string"),
    														Filters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderFilterArray{
    															&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderFilterArgs{
    																BranchMatch: pulumi.String("string"),
    																LabelMatch:  pulumi.String("string"),
    																PathsDoNotExists: pulumi.StringArray{
    																	pulumi.String("string"),
    																},
    																PathsExists: pulumi.StringArray{
    																	pulumi.String("string"),
    																},
    																RepositoryMatch: pulumi.String("string"),
    															},
    														},
    														Gitea: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGiteaArgs{
    															Owner:       pulumi.String("string"),
    															AllBranches: pulumi.Bool(false),
    															Api:         pulumi.String("string"),
    															Insecure:    pulumi.Bool(false),
    															TokenRef: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGiteaTokenRefArgs{
    																Key:        pulumi.String("string"),
    																SecretName: pulumi.String("string"),
    															},
    														},
    														Github: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGithubArgs{
    															Organization:  pulumi.String("string"),
    															AllBranches:   pulumi.Bool(false),
    															Api:           pulumi.String("string"),
    															AppSecretName: pulumi.String("string"),
    															TokenRef: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGithubTokenRefArgs{
    																Key:        pulumi.String("string"),
    																SecretName: pulumi.String("string"),
    															},
    														},
    														Gitlab: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGitlabArgs{
    															Group:            pulumi.String("string"),
    															AllBranches:      pulumi.Bool(false),
    															Api:              pulumi.String("string"),
    															IncludeSubgroups: pulumi.Bool(false),
    															TokenRef: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGitlabTokenRefArgs{
    																Key:        pulumi.String("string"),
    																SecretName: pulumi.String("string"),
    															},
    														},
    														RequeueAfterSeconds: pulumi.String("string"),
    														Template: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateArgs{
    															Metadata: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateMetadataArgs{
    																Annotations: pulumi.StringMap{
    																	"string": pulumi.String("string"),
    																},
    																Finalizers: pulumi.StringArray{
    																	pulumi.String("string"),
    																},
    																Labels: pulumi.StringMap{
    																	"string": pulumi.String("string"),
    																},
    																Name:      pulumi.String("string"),
    																Namespace: pulumi.String("string"),
    															},
    															Spec: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecArgs{
    																Destination: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecDestinationArgs{
    																	Name:      pulumi.String("string"),
    																	Namespace: pulumi.String("string"),
    																	Server:    pulumi.String("string"),
    																},
    																IgnoreDifferences: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecIgnoreDifferenceArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecIgnoreDifferenceArgs{
    																		Group: pulumi.String("string"),
    																		JqPathExpressions: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		JsonPointers: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		Kind: pulumi.String("string"),
    																		ManagedFieldsManagers: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		Name:      pulumi.String("string"),
    																		Namespace: pulumi.String("string"),
    																	},
    																},
    																Infos: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecInfoArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecInfoArgs{
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    																Project:              pulumi.String("string"),
    																RevisionHistoryLimit: pulumi.Int(0),
    																Sources: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceArgs{
    																		Chart: pulumi.String("string"),
    																		Directory: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryArgs{
    																			Exclude: pulumi.String("string"),
    																			Include: pulumi.String("string"),
    																			Jsonnet: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetArgs{
    																				ExtVars: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetExtVarArray{
    																					&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetExtVarArgs{
    																						Code:  pulumi.Bool(false),
    																						Name:  pulumi.String("string"),
    																						Value: pulumi.String("string"),
    																					},
    																				},
    																				Libs: pulumi.StringArray{
    																					pulumi.String("string"),
    																				},
    																				Tlas: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetTlaArray{
    																					&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetTlaArgs{
    																						Code:  pulumi.Bool(false),
    																						Name:  pulumi.String("string"),
    																						Value: pulumi.String("string"),
    																					},
    																				},
    																			},
    																			Recurse: pulumi.Bool(false),
    																		},
    																		Helm: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmArgs{
    																			FileParameters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmFileParameterArray{
    																				&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmFileParameterArgs{
    																					Name: pulumi.String("string"),
    																					Path: pulumi.String("string"),
    																				},
    																			},
    																			IgnoreMissingValueFiles: pulumi.Bool(false),
    																			Parameters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmParameterArray{
    																				&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmParameterArgs{
    																					ForceString: pulumi.Bool(false),
    																					Name:        pulumi.String("string"),
    																					Value:       pulumi.String("string"),
    																				},
    																			},
    																			PassCredentials: pulumi.Bool(false),
    																			ReleaseName:     pulumi.String("string"),
    																			SkipCrds:        pulumi.Bool(false),
    																			ValueFiles: pulumi.StringArray{
    																				pulumi.String("string"),
    																			},
    																			Values:  pulumi.String("string"),
    																			Version: pulumi.String("string"),
    																		},
    																		Kustomize: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomizeArgs{
    																			CommonAnnotations: pulumi.StringMap{
    																				"string": pulumi.String("string"),
    																			},
    																			CommonLabels: pulumi.StringMap{
    																				"string": pulumi.String("string"),
    																			},
    																			Images: pulumi.StringArray{
    																				pulumi.String("string"),
    																			},
    																			NamePrefix: pulumi.String("string"),
    																			NameSuffix: pulumi.String("string"),
    																			Patches: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomizePatchArray{
    																				&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomizePatchArgs{
    																					Target: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomizePatchTargetArgs{
    																						AnnotationSelector: pulumi.String("string"),
    																						Group:              pulumi.String("string"),
    																						Kind:               pulumi.String("string"),
    																						LabelSelector:      pulumi.String("string"),
    																						Name:               pulumi.String("string"),
    																						Namespace:          pulumi.String("string"),
    																						Version:            pulumi.String("string"),
    																					},
    																					Options: pulumi.BoolMap{
    																						"string": pulumi.Bool(false),
    																					},
    																					Patch: pulumi.String("string"),
    																					Path:  pulumi.String("string"),
    																				},
    																			},
    																			Version: pulumi.String("string"),
    																		},
    																		Path: pulumi.String("string"),
    																		Plugin: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourcePluginArgs{
    																			Envs: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourcePluginEnvArray{
    																				&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourcePluginEnvArgs{
    																					Name:  pulumi.String("string"),
    																					Value: pulumi.String("string"),
    																				},
    																			},
    																			Name: pulumi.String("string"),
    																		},
    																		Ref:            pulumi.String("string"),
    																		RepoUrl:        pulumi.String("string"),
    																		TargetRevision: pulumi.String("string"),
    																	},
    																},
    																SyncPolicy: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyArgs{
    																	Automated: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyAutomatedArgs{
    																		AllowEmpty: pulumi.Bool(false),
    																		Prune:      pulumi.Bool(false),
    																		SelfHeal:   pulumi.Bool(false),
    																	},
    																	ManagedNamespaceMetadata: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyManagedNamespaceMetadataArgs{
    																		Annotations: pulumi.StringMap{
    																			"string": pulumi.String("string"),
    																		},
    																		Labels: pulumi.StringMap{
    																			"string": pulumi.String("string"),
    																		},
    																	},
    																	Retry: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyRetryArgs{
    																		Backoff: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyRetryBackoffArgs{
    																			Duration:    pulumi.String("string"),
    																			Factor:      pulumi.String("string"),
    																			MaxDuration: pulumi.String("string"),
    																		},
    																		Limit: pulumi.String("string"),
    																	},
    																	SyncOptions: pulumi.StringArray{
    																		pulumi.String("string"),
    																	},
    																},
    															},
    														},
    													},
    												},
    												Selector: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorSelectorArgs{
    													MatchExpressions: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorSelectorMatchExpressionArray{
    														&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorSelectorMatchExpressionArgs{
    															Key:      pulumi.String("string"),
    															Operator: pulumi.String("string"),
    															Values: pulumi.StringArray{
    																pulumi.String("string"),
    															},
    														},
    													},
    													MatchLabels: pulumi.StringMap{
    														"string": pulumi.String("string"),
    													},
    												},
    											},
    										},
    										MergeKeys: pulumi.StringArray{
    											pulumi.String("string"),
    										},
    										Template: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateArgs{
    											Metadata: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateMetadataArgs{
    												Annotations: pulumi.StringMap{
    													"string": pulumi.String("string"),
    												},
    												Finalizers: pulumi.StringArray{
    													pulumi.String("string"),
    												},
    												Labels: pulumi.StringMap{
    													"string": pulumi.String("string"),
    												},
    												Name:      pulumi.String("string"),
    												Namespace: pulumi.String("string"),
    											},
    											Spec: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecArgs{
    												Destination: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecDestinationArgs{
    													Name:      pulumi.String("string"),
    													Namespace: pulumi.String("string"),
    													Server:    pulumi.String("string"),
    												},
    												IgnoreDifferences: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecIgnoreDifferenceArray{
    													&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecIgnoreDifferenceArgs{
    														Group: pulumi.String("string"),
    														JqPathExpressions: pulumi.StringArray{
    															pulumi.String("string"),
    														},
    														JsonPointers: pulumi.StringArray{
    															pulumi.String("string"),
    														},
    														Kind: pulumi.String("string"),
    														ManagedFieldsManagers: pulumi.StringArray{
    															pulumi.String("string"),
    														},
    														Name:      pulumi.String("string"),
    														Namespace: pulumi.String("string"),
    													},
    												},
    												Infos: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecInfoArray{
    													&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecInfoArgs{
    														Name:  pulumi.String("string"),
    														Value: pulumi.String("string"),
    													},
    												},
    												Project:              pulumi.String("string"),
    												RevisionHistoryLimit: pulumi.Int(0),
    												Sources: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceArray{
    													&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceArgs{
    														Chart: pulumi.String("string"),
    														Directory: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceDirectoryArgs{
    															Exclude: pulumi.String("string"),
    															Include: pulumi.String("string"),
    															Jsonnet: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceDirectoryJsonnetArgs{
    																ExtVars: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceDirectoryJsonnetExtVarArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceDirectoryJsonnetExtVarArgs{
    																		Code:  pulumi.Bool(false),
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    																Libs: pulumi.StringArray{
    																	pulumi.String("string"),
    																},
    																Tlas: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceDirectoryJsonnetTlaArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceDirectoryJsonnetTlaArgs{
    																		Code:  pulumi.Bool(false),
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    															},
    															Recurse: pulumi.Bool(false),
    														},
    														Helm: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceHelmArgs{
    															FileParameters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceHelmFileParameterArray{
    																&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceHelmFileParameterArgs{
    																	Name: pulumi.String("string"),
    																	Path: pulumi.String("string"),
    																},
    															},
    															IgnoreMissingValueFiles: pulumi.Bool(false),
    															Parameters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceHelmParameterArray{
    																&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceHelmParameterArgs{
    																	ForceString: pulumi.Bool(false),
    																	Name:        pulumi.String("string"),
    																	Value:       pulumi.String("string"),
    																},
    															},
    															PassCredentials: pulumi.Bool(false),
    															ReleaseName:     pulumi.String("string"),
    															SkipCrds:        pulumi.Bool(false),
    															ValueFiles: pulumi.StringArray{
    																pulumi.String("string"),
    															},
    															Values:  pulumi.String("string"),
    															Version: pulumi.String("string"),
    														},
    														Kustomize: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceKustomizeArgs{
    															CommonAnnotations: pulumi.StringMap{
    																"string": pulumi.String("string"),
    															},
    															CommonLabels: pulumi.StringMap{
    																"string": pulumi.String("string"),
    															},
    															Images: pulumi.StringArray{
    																pulumi.String("string"),
    															},
    															NamePrefix: pulumi.String("string"),
    															NameSuffix: pulumi.String("string"),
    															Patches: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceKustomizePatchArray{
    																&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceKustomizePatchArgs{
    																	Target: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceKustomizePatchTargetArgs{
    																		AnnotationSelector: pulumi.String("string"),
    																		Group:              pulumi.String("string"),
    																		Kind:               pulumi.String("string"),
    																		LabelSelector:      pulumi.String("string"),
    																		Name:               pulumi.String("string"),
    																		Namespace:          pulumi.String("string"),
    																		Version:            pulumi.String("string"),
    																	},
    																	Options: pulumi.BoolMap{
    																		"string": pulumi.Bool(false),
    																	},
    																	Patch: pulumi.String("string"),
    																	Path:  pulumi.String("string"),
    																},
    															},
    															Version: pulumi.String("string"),
    														},
    														Path: pulumi.String("string"),
    														Plugin: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourcePluginArgs{
    															Envs: argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourcePluginEnvArray{
    																&argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourcePluginEnvArgs{
    																	Name:  pulumi.String("string"),
    																	Value: pulumi.String("string"),
    																},
    															},
    															Name: pulumi.String("string"),
    														},
    														Ref:            pulumi.String("string"),
    														RepoUrl:        pulumi.String("string"),
    														TargetRevision: pulumi.String("string"),
    													},
    												},
    												SyncPolicy: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicyArgs{
    													Automated: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicyAutomatedArgs{
    														AllowEmpty: pulumi.Bool(false),
    														Prune:      pulumi.Bool(false),
    														SelfHeal:   pulumi.Bool(false),
    													},
    													ManagedNamespaceMetadata: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicyManagedNamespaceMetadataArgs{
    														Annotations: pulumi.StringMap{
    															"string": pulumi.String("string"),
    														},
    														Labels: pulumi.StringMap{
    															"string": pulumi.String("string"),
    														},
    													},
    													Retry: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicyRetryArgs{
    														Backoff: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicyRetryBackoffArgs{
    															Duration:    pulumi.String("string"),
    															Factor:      pulumi.String("string"),
    															MaxDuration: pulumi.String("string"),
    														},
    														Limit: pulumi.String("string"),
    													},
    													SyncOptions: pulumi.StringArray{
    														pulumi.String("string"),
    													},
    												},
    											},
    										},
    									},
    								},
    								PullRequests: argocd.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestArray{
    									&argocd.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestArgs{
    										BitbucketServer: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestBitbucketServerArgs{
    											Api:     pulumi.String("string"),
    											Project: pulumi.String("string"),
    											Repo:    pulumi.String("string"),
    											BasicAuth: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestBitbucketServerBasicAuthArgs{
    												PasswordRef: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestBitbucketServerBasicAuthPasswordRefArgs{
    													Key:        pulumi.String("string"),
    													SecretName: pulumi.String("string"),
    												},
    												Username: pulumi.String("string"),
    											},
    										},
    										Filters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestFilterArray{
    											&argocd.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestFilterArgs{
    												BranchMatch: pulumi.String("string"),
    											},
    										},
    										Gitea: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGiteaArgs{
    											Api:      pulumi.String("string"),
    											Owner:    pulumi.String("string"),
    											Repo:     pulumi.String("string"),
    											Insecure: pulumi.Bool(false),
    											TokenRef: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGiteaTokenRefArgs{
    												Key:        pulumi.String("string"),
    												SecretName: pulumi.String("string"),
    											},
    										},
    										Github: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGithubArgs{
    											Owner:         pulumi.String("string"),
    											Repo:          pulumi.String("string"),
    											Api:           pulumi.String("string"),
    											AppSecretName: pulumi.String("string"),
    											Labels: pulumi.StringArray{
    												pulumi.String("string"),
    											},
    											TokenRef: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGithubTokenRefArgs{
    												Key:        pulumi.String("string"),
    												SecretName: pulumi.String("string"),
    											},
    										},
    										Gitlab: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGitlabArgs{
    											Project: pulumi.String("string"),
    											Api:     pulumi.String("string"),
    											Labels: pulumi.StringArray{
    												pulumi.String("string"),
    											},
    											PullRequestState: pulumi.String("string"),
    											TokenRef: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGitlabTokenRefArgs{
    												Key:        pulumi.String("string"),
    												SecretName: pulumi.String("string"),
    											},
    										},
    										RequeueAfterSeconds: pulumi.String("string"),
    										Template: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateArgs{
    											Metadata: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateMetadataArgs{
    												Annotations: pulumi.StringMap{
    													"string": pulumi.String("string"),
    												},
    												Finalizers: pulumi.StringArray{
    													pulumi.String("string"),
    												},
    												Labels: pulumi.StringMap{
    													"string": pulumi.String("string"),
    												},
    												Name:      pulumi.String("string"),
    												Namespace: pulumi.String("string"),
    											},
    											Spec: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecArgs{
    												Destination: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecDestinationArgs{
    													Name:      pulumi.String("string"),
    													Namespace: pulumi.String("string"),
    													Server:    pulumi.String("string"),
    												},
    												IgnoreDifferences: argocd.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecIgnoreDifferenceArray{
    													&argocd.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecIgnoreDifferenceArgs{
    														Group: pulumi.String("string"),
    														JqPathExpressions: pulumi.StringArray{
    															pulumi.String("string"),
    														},
    														JsonPointers: pulumi.StringArray{
    															pulumi.String("string"),
    														},
    														Kind: pulumi.String("string"),
    														ManagedFieldsManagers: pulumi.StringArray{
    															pulumi.String("string"),
    														},
    														Name:      pulumi.String("string"),
    														Namespace: pulumi.String("string"),
    													},
    												},
    												Infos: argocd.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecInfoArray{
    													&argocd.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecInfoArgs{
    														Name:  pulumi.String("string"),
    														Value: pulumi.String("string"),
    													},
    												},
    												Project:              pulumi.String("string"),
    												RevisionHistoryLimit: pulumi.Int(0),
    												Sources: argocd.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceArray{
    													&argocd.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceArgs{
    														Chart: pulumi.String("string"),
    														Directory: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryArgs{
    															Exclude: pulumi.String("string"),
    															Include: pulumi.String("string"),
    															Jsonnet: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetArgs{
    																ExtVars: argocd.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetExtVarArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetExtVarArgs{
    																		Code:  pulumi.Bool(false),
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    																Libs: pulumi.StringArray{
    																	pulumi.String("string"),
    																},
    																Tlas: argocd.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetTlaArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetTlaArgs{
    																		Code:  pulumi.Bool(false),
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    															},
    															Recurse: pulumi.Bool(false),
    														},
    														Helm: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmArgs{
    															FileParameters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmFileParameterArray{
    																&argocd.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmFileParameterArgs{
    																	Name: pulumi.String("string"),
    																	Path: pulumi.String("string"),
    																},
    															},
    															IgnoreMissingValueFiles: pulumi.Bool(false),
    															Parameters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmParameterArray{
    																&argocd.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmParameterArgs{
    																	ForceString: pulumi.Bool(false),
    																	Name:        pulumi.String("string"),
    																	Value:       pulumi.String("string"),
    																},
    															},
    															PassCredentials: pulumi.Bool(false),
    															ReleaseName:     pulumi.String("string"),
    															SkipCrds:        pulumi.Bool(false),
    															ValueFiles: pulumi.StringArray{
    																pulumi.String("string"),
    															},
    															Values:  pulumi.String("string"),
    															Version: pulumi.String("string"),
    														},
    														Kustomize: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizeArgs{
    															CommonAnnotations: pulumi.StringMap{
    																"string": pulumi.String("string"),
    															},
    															CommonLabels: pulumi.StringMap{
    																"string": pulumi.String("string"),
    															},
    															Images: pulumi.StringArray{
    																pulumi.String("string"),
    															},
    															NamePrefix: pulumi.String("string"),
    															NameSuffix: pulumi.String("string"),
    															Patches: argocd.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatchArray{
    																&argocd.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatchArgs{
    																	Target: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatchTargetArgs{
    																		AnnotationSelector: pulumi.String("string"),
    																		Group:              pulumi.String("string"),
    																		Kind:               pulumi.String("string"),
    																		LabelSelector:      pulumi.String("string"),
    																		Name:               pulumi.String("string"),
    																		Namespace:          pulumi.String("string"),
    																		Version:            pulumi.String("string"),
    																	},
    																	Options: pulumi.BoolMap{
    																		"string": pulumi.Bool(false),
    																	},
    																	Patch: pulumi.String("string"),
    																	Path:  pulumi.String("string"),
    																},
    															},
    															Version: pulumi.String("string"),
    														},
    														Path: pulumi.String("string"),
    														Plugin: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePluginArgs{
    															Envs: argocd.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePluginEnvArray{
    																&argocd.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePluginEnvArgs{
    																	Name:  pulumi.String("string"),
    																	Value: pulumi.String("string"),
    																},
    															},
    															Name: pulumi.String("string"),
    														},
    														Ref:            pulumi.String("string"),
    														RepoUrl:        pulumi.String("string"),
    														TargetRevision: pulumi.String("string"),
    													},
    												},
    												SyncPolicy: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyArgs{
    													Automated: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyAutomatedArgs{
    														AllowEmpty: pulumi.Bool(false),
    														Prune:      pulumi.Bool(false),
    														SelfHeal:   pulumi.Bool(false),
    													},
    													ManagedNamespaceMetadata: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyManagedNamespaceMetadataArgs{
    														Annotations: pulumi.StringMap{
    															"string": pulumi.String("string"),
    														},
    														Labels: pulumi.StringMap{
    															"string": pulumi.String("string"),
    														},
    													},
    													Retry: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetryArgs{
    														Backoff: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetryBackoffArgs{
    															Duration:    pulumi.String("string"),
    															Factor:      pulumi.String("string"),
    															MaxDuration: pulumi.String("string"),
    														},
    														Limit: pulumi.String("string"),
    													},
    													SyncOptions: pulumi.StringArray{
    														pulumi.String("string"),
    													},
    												},
    											},
    										},
    									},
    								},
    								ScmProviders: argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderArray{
    									&argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderArgs{
    										AzureDevops: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderAzureDevopsArgs{
    											Organization: pulumi.String("string"),
    											TeamProject:  pulumi.String("string"),
    											AccessTokenRef: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderAzureDevopsAccessTokenRefArgs{
    												Key:        pulumi.String("string"),
    												SecretName: pulumi.String("string"),
    											},
    											AllBranches: pulumi.Bool(false),
    											Api:         pulumi.String("string"),
    										},
    										BitbucketCloud: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderBitbucketCloudArgs{
    											Owner:       pulumi.String("string"),
    											User:        pulumi.String("string"),
    											AllBranches: pulumi.Bool(false),
    											AppPasswordRef: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderBitbucketCloudAppPasswordRefArgs{
    												Key:        pulumi.String("string"),
    												SecretName: pulumi.String("string"),
    											},
    										},
    										BitbucketServer: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderBitbucketServerArgs{
    											Api:         pulumi.String("string"),
    											Project:     pulumi.String("string"),
    											AllBranches: pulumi.Bool(false),
    											BasicAuth: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderBitbucketServerBasicAuthArgs{
    												PasswordRef: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderBitbucketServerBasicAuthPasswordRefArgs{
    													Key:        pulumi.String("string"),
    													SecretName: pulumi.String("string"),
    												},
    												Username: pulumi.String("string"),
    											},
    										},
    										CloneProtocol: pulumi.String("string"),
    										Filters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderFilterArray{
    											&argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderFilterArgs{
    												BranchMatch: pulumi.String("string"),
    												LabelMatch:  pulumi.String("string"),
    												PathsDoNotExists: pulumi.StringArray{
    													pulumi.String("string"),
    												},
    												PathsExists: pulumi.StringArray{
    													pulumi.String("string"),
    												},
    												RepositoryMatch: pulumi.String("string"),
    											},
    										},
    										Gitea: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGiteaArgs{
    											Owner:       pulumi.String("string"),
    											AllBranches: pulumi.Bool(false),
    											Api:         pulumi.String("string"),
    											Insecure:    pulumi.Bool(false),
    											TokenRef: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGiteaTokenRefArgs{
    												Key:        pulumi.String("string"),
    												SecretName: pulumi.String("string"),
    											},
    										},
    										Github: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGithubArgs{
    											Organization:  pulumi.String("string"),
    											AllBranches:   pulumi.Bool(false),
    											Api:           pulumi.String("string"),
    											AppSecretName: pulumi.String("string"),
    											TokenRef: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGithubTokenRefArgs{
    												Key:        pulumi.String("string"),
    												SecretName: pulumi.String("string"),
    											},
    										},
    										Gitlab: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGitlabArgs{
    											Group:            pulumi.String("string"),
    											AllBranches:      pulumi.Bool(false),
    											Api:              pulumi.String("string"),
    											IncludeSubgroups: pulumi.Bool(false),
    											TokenRef: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGitlabTokenRefArgs{
    												Key:        pulumi.String("string"),
    												SecretName: pulumi.String("string"),
    											},
    										},
    										RequeueAfterSeconds: pulumi.String("string"),
    										Template: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateArgs{
    											Metadata: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateMetadataArgs{
    												Annotations: pulumi.StringMap{
    													"string": pulumi.String("string"),
    												},
    												Finalizers: pulumi.StringArray{
    													pulumi.String("string"),
    												},
    												Labels: pulumi.StringMap{
    													"string": pulumi.String("string"),
    												},
    												Name:      pulumi.String("string"),
    												Namespace: pulumi.String("string"),
    											},
    											Spec: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecArgs{
    												Destination: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecDestinationArgs{
    													Name:      pulumi.String("string"),
    													Namespace: pulumi.String("string"),
    													Server:    pulumi.String("string"),
    												},
    												IgnoreDifferences: argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecIgnoreDifferenceArray{
    													&argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecIgnoreDifferenceArgs{
    														Group: pulumi.String("string"),
    														JqPathExpressions: pulumi.StringArray{
    															pulumi.String("string"),
    														},
    														JsonPointers: pulumi.StringArray{
    															pulumi.String("string"),
    														},
    														Kind: pulumi.String("string"),
    														ManagedFieldsManagers: pulumi.StringArray{
    															pulumi.String("string"),
    														},
    														Name:      pulumi.String("string"),
    														Namespace: pulumi.String("string"),
    													},
    												},
    												Infos: argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecInfoArray{
    													&argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecInfoArgs{
    														Name:  pulumi.String("string"),
    														Value: pulumi.String("string"),
    													},
    												},
    												Project:              pulumi.String("string"),
    												RevisionHistoryLimit: pulumi.Int(0),
    												Sources: argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceArray{
    													&argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceArgs{
    														Chart: pulumi.String("string"),
    														Directory: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryArgs{
    															Exclude: pulumi.String("string"),
    															Include: pulumi.String("string"),
    															Jsonnet: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetArgs{
    																ExtVars: argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetExtVarArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetExtVarArgs{
    																		Code:  pulumi.Bool(false),
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    																Libs: pulumi.StringArray{
    																	pulumi.String("string"),
    																},
    																Tlas: argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetTlaArray{
    																	&argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetTlaArgs{
    																		Code:  pulumi.Bool(false),
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    															},
    															Recurse: pulumi.Bool(false),
    														},
    														Helm: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmArgs{
    															FileParameters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmFileParameterArray{
    																&argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmFileParameterArgs{
    																	Name: pulumi.String("string"),
    																	Path: pulumi.String("string"),
    																},
    															},
    															IgnoreMissingValueFiles: pulumi.Bool(false),
    															Parameters: argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmParameterArray{
    																&argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmParameterArgs{
    																	ForceString: pulumi.Bool(false),
    																	Name:        pulumi.String("string"),
    																	Value:       pulumi.String("string"),
    																},
    															},
    															PassCredentials: pulumi.Bool(false),
    															ReleaseName:     pulumi.String("string"),
    															SkipCrds:        pulumi.Bool(false),
    															ValueFiles: pulumi.StringArray{
    																pulumi.String("string"),
    															},
    															Values:  pulumi.String("string"),
    															Version: pulumi.String("string"),
    														},
    														Kustomize: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizeArgs{
    															CommonAnnotations: pulumi.StringMap{
    																"string": pulumi.String("string"),
    															},
    															CommonLabels: pulumi.StringMap{
    																"string": pulumi.String("string"),
    															},
    															Images: pulumi.StringArray{
    																pulumi.String("string"),
    															},
    															NamePrefix: pulumi.String("string"),
    															NameSuffix: pulumi.String("string"),
    															Patches: argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizePatchArray{
    																&argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizePatchArgs{
    																	Target: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizePatchTargetArgs{
    																		AnnotationSelector: pulumi.String("string"),
    																		Group:              pulumi.String("string"),
    																		Kind:               pulumi.String("string"),
    																		LabelSelector:      pulumi.String("string"),
    																		Name:               pulumi.String("string"),
    																		Namespace:          pulumi.String("string"),
    																		Version:            pulumi.String("string"),
    																	},
    																	Options: pulumi.BoolMap{
    																		"string": pulumi.Bool(false),
    																	},
    																	Patch: pulumi.String("string"),
    																	Path:  pulumi.String("string"),
    																},
    															},
    															Version: pulumi.String("string"),
    														},
    														Path: pulumi.String("string"),
    														Plugin: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourcePluginArgs{
    															Envs: argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourcePluginEnvArray{
    																&argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourcePluginEnvArgs{
    																	Name:  pulumi.String("string"),
    																	Value: pulumi.String("string"),
    																},
    															},
    															Name: pulumi.String("string"),
    														},
    														Ref:            pulumi.String("string"),
    														RepoUrl:        pulumi.String("string"),
    														TargetRevision: pulumi.String("string"),
    													},
    												},
    												SyncPolicy: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyArgs{
    													Automated: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyAutomatedArgs{
    														AllowEmpty: pulumi.Bool(false),
    														Prune:      pulumi.Bool(false),
    														SelfHeal:   pulumi.Bool(false),
    													},
    													ManagedNamespaceMetadata: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyManagedNamespaceMetadataArgs{
    														Annotations: pulumi.StringMap{
    															"string": pulumi.String("string"),
    														},
    														Labels: pulumi.StringMap{
    															"string": pulumi.String("string"),
    														},
    													},
    													Retry: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyRetryArgs{
    														Backoff: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyRetryBackoffArgs{
    															Duration:    pulumi.String("string"),
    															Factor:      pulumi.String("string"),
    															MaxDuration: pulumi.String("string"),
    														},
    														Limit: pulumi.String("string"),
    													},
    													SyncOptions: pulumi.StringArray{
    														pulumi.String("string"),
    													},
    												},
    											},
    										},
    									},
    								},
    								Selector: &argocd.ApplicationSetSpecGeneratorMatrixGeneratorSelectorArgs{
    									MatchExpressions: argocd.ApplicationSetSpecGeneratorMatrixGeneratorSelectorMatchExpressionArray{
    										&argocd.ApplicationSetSpecGeneratorMatrixGeneratorSelectorMatchExpressionArgs{
    											Key:      pulumi.String("string"),
    											Operator: pulumi.String("string"),
    											Values: pulumi.StringArray{
    												pulumi.String("string"),
    											},
    										},
    									},
    									MatchLabels: pulumi.StringMap{
    										"string": pulumi.String("string"),
    									},
    								},
    							},
    						},
    						Template: &argocd.ApplicationSetSpecGeneratorMatrixTemplateArgs{
    							Metadata: &argocd.ApplicationSetSpecGeneratorMatrixTemplateMetadataArgs{
    								Annotations: pulumi.StringMap{
    									"string": pulumi.String("string"),
    								},
    								Finalizers: pulumi.StringArray{
    									pulumi.String("string"),
    								},
    								Labels: pulumi.StringMap{
    									"string": pulumi.String("string"),
    								},
    								Name:      pulumi.String("string"),
    								Namespace: pulumi.String("string"),
    							},
    							Spec: &argocd.ApplicationSetSpecGeneratorMatrixTemplateSpecArgs{
    								Destination: &argocd.ApplicationSetSpecGeneratorMatrixTemplateSpecDestinationArgs{
    									Name:      pulumi.String("string"),
    									Namespace: pulumi.String("string"),
    									Server:    pulumi.String("string"),
    								},
    								IgnoreDifferences: argocd.ApplicationSetSpecGeneratorMatrixTemplateSpecIgnoreDifferenceArray{
    									&argocd.ApplicationSetSpecGeneratorMatrixTemplateSpecIgnoreDifferenceArgs{
    										Group: pulumi.String("string"),
    										JqPathExpressions: pulumi.StringArray{
    											pulumi.String("string"),
    										},
    										JsonPointers: pulumi.StringArray{
    											pulumi.String("string"),
    										},
    										Kind: pulumi.String("string"),
    										ManagedFieldsManagers: pulumi.StringArray{
    											pulumi.String("string"),
    										},
    										Name:      pulumi.String("string"),
    										Namespace: pulumi.String("string"),
    									},
    								},
    								Infos: argocd.ApplicationSetSpecGeneratorMatrixTemplateSpecInfoArray{
    									&argocd.ApplicationSetSpecGeneratorMatrixTemplateSpecInfoArgs{
    										Name:  pulumi.String("string"),
    										Value: pulumi.String("string"),
    									},
    								},
    								Project:              pulumi.String("string"),
    								RevisionHistoryLimit: pulumi.Int(0),
    								Sources: argocd.ApplicationSetSpecGeneratorMatrixTemplateSpecSourceArray{
    									&argocd.ApplicationSetSpecGeneratorMatrixTemplateSpecSourceArgs{
    										Chart: pulumi.String("string"),
    										Directory: &argocd.ApplicationSetSpecGeneratorMatrixTemplateSpecSourceDirectoryArgs{
    											Exclude: pulumi.String("string"),
    											Include: pulumi.String("string"),
    											Jsonnet: &argocd.ApplicationSetSpecGeneratorMatrixTemplateSpecSourceDirectoryJsonnetArgs{
    												ExtVars: argocd.ApplicationSetSpecGeneratorMatrixTemplateSpecSourceDirectoryJsonnetExtVarArray{
    													&argocd.ApplicationSetSpecGeneratorMatrixTemplateSpecSourceDirectoryJsonnetExtVarArgs{
    														Code:  pulumi.Bool(false),
    														Name:  pulumi.String("string"),
    														Value: pulumi.String("string"),
    													},
    												},
    												Libs: pulumi.StringArray{
    													pulumi.String("string"),
    												},
    												Tlas: argocd.ApplicationSetSpecGeneratorMatrixTemplateSpecSourceDirectoryJsonnetTlaArray{
    													&argocd.ApplicationSetSpecGeneratorMatrixTemplateSpecSourceDirectoryJsonnetTlaArgs{
    														Code:  pulumi.Bool(false),
    														Name:  pulumi.String("string"),
    														Value: pulumi.String("string"),
    													},
    												},
    											},
    											Recurse: pulumi.Bool(false),
    										},
    										Helm: &argocd.ApplicationSetSpecGeneratorMatrixTemplateSpecSourceHelmArgs{
    											FileParameters: argocd.ApplicationSetSpecGeneratorMatrixTemplateSpecSourceHelmFileParameterArray{
    												&argocd.ApplicationSetSpecGeneratorMatrixTemplateSpecSourceHelmFileParameterArgs{
    													Name: pulumi.String("string"),
    													Path: pulumi.String("string"),
    												},
    											},
    											IgnoreMissingValueFiles: pulumi.Bool(false),
    											Parameters: argocd.ApplicationSetSpecGeneratorMatrixTemplateSpecSourceHelmParameterArray{
    												&argocd.ApplicationSetSpecGeneratorMatrixTemplateSpecSourceHelmParameterArgs{
    													ForceString: pulumi.Bool(false),
    													Name:        pulumi.String("string"),
    													Value:       pulumi.String("string"),
    												},
    											},
    											PassCredentials: pulumi.Bool(false),
    											ReleaseName:     pulumi.String("string"),
    											SkipCrds:        pulumi.Bool(false),
    											ValueFiles: pulumi.StringArray{
    												pulumi.String("string"),
    											},
    											Values:  pulumi.String("string"),
    											Version: pulumi.String("string"),
    										},
    										Kustomize: &argocd.ApplicationSetSpecGeneratorMatrixTemplateSpecSourceKustomizeArgs{
    											CommonAnnotations: pulumi.StringMap{
    												"string": pulumi.String("string"),
    											},
    											CommonLabels: pulumi.StringMap{
    												"string": pulumi.String("string"),
    											},
    											Images: pulumi.StringArray{
    												pulumi.String("string"),
    											},
    											NamePrefix: pulumi.String("string"),
    											NameSuffix: pulumi.String("string"),
    											Patches: argocd.ApplicationSetSpecGeneratorMatrixTemplateSpecSourceKustomizePatchArray{
    												&argocd.ApplicationSetSpecGeneratorMatrixTemplateSpecSourceKustomizePatchArgs{
    													Target: &argocd.ApplicationSetSpecGeneratorMatrixTemplateSpecSourceKustomizePatchTargetArgs{
    														AnnotationSelector: pulumi.String("string"),
    														Group:              pulumi.String("string"),
    														Kind:               pulumi.String("string"),
    														LabelSelector:      pulumi.String("string"),
    														Name:               pulumi.String("string"),
    														Namespace:          pulumi.String("string"),
    														Version:            pulumi.String("string"),
    													},
    													Options: pulumi.BoolMap{
    														"string": pulumi.Bool(false),
    													},
    													Patch: pulumi.String("string"),
    													Path:  pulumi.String("string"),
    												},
    											},
    											Version: pulumi.String("string"),
    										},
    										Path: pulumi.String("string"),
    										Plugin: &argocd.ApplicationSetSpecGeneratorMatrixTemplateSpecSourcePluginArgs{
    											Envs: argocd.ApplicationSetSpecGeneratorMatrixTemplateSpecSourcePluginEnvArray{
    												&argocd.ApplicationSetSpecGeneratorMatrixTemplateSpecSourcePluginEnvArgs{
    													Name:  pulumi.String("string"),
    													Value: pulumi.String("string"),
    												},
    											},
    											Name: pulumi.String("string"),
    										},
    										Ref:            pulumi.String("string"),
    										RepoUrl:        pulumi.String("string"),
    										TargetRevision: pulumi.String("string"),
    									},
    								},
    								SyncPolicy: &argocd.ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicyArgs{
    									Automated: &argocd.ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicyAutomatedArgs{
    										AllowEmpty: pulumi.Bool(false),
    										Prune:      pulumi.Bool(false),
    										SelfHeal:   pulumi.Bool(false),
    									},
    									ManagedNamespaceMetadata: &argocd.ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicyManagedNamespaceMetadataArgs{
    										Annotations: pulumi.StringMap{
    											"string": pulumi.String("string"),
    										},
    										Labels: pulumi.StringMap{
    											"string": pulumi.String("string"),
    										},
    									},
    									Retry: &argocd.ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicyRetryArgs{
    										Backoff: &argocd.ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicyRetryBackoffArgs{
    											Duration:    pulumi.String("string"),
    											Factor:      pulumi.String("string"),
    											MaxDuration: pulumi.String("string"),
    										},
    										Limit: pulumi.String("string"),
    									},
    									SyncOptions: pulumi.StringArray{
    										pulumi.String("string"),
    									},
    								},
    							},
    						},
    					},
    				},
    				Merges: argocd.ApplicationSetSpecGeneratorMergeArray{
    					&argocd.ApplicationSetSpecGeneratorMergeArgs{
    						Generators: argocd.ApplicationSetSpecGeneratorMergeGeneratorArray{
    							&argocd.ApplicationSetSpecGeneratorMergeGeneratorArgs{
    								ClusterDecisionResources: argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceArray{
    									&argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceArgs{
    										ConfigMapRef: pulumi.String("string"),
    										LabelSelector: &argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceLabelSelectorArgs{
    											MatchExpressions: argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceLabelSelectorMatchExpressionArray{
    												&argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceLabelSelectorMatchExpressionArgs{
    													Key:      pulumi.String("string"),
    													Operator: pulumi.String("string"),
    													Values: pulumi.StringArray{
    														pulumi.String("string"),
    													},
    												},
    											},
    											MatchLabels: pulumi.StringMap{
    												"string": pulumi.String("string"),
    											},
    										},
    										Name:                pulumi.String("string"),
    										RequeueAfterSeconds: pulumi.String("string"),
    										Template: &argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateArgs{
    											Metadata: &argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateMetadataArgs{
    												Annotations: pulumi.StringMap{
    													"string": pulumi.String("string"),
    												},
    												Finalizers: pulumi.StringArray{
    													pulumi.String("string"),
    												},
    												Labels: pulumi.StringMap{
    													"string": pulumi.String("string"),
    												},
    												Name:      pulumi.String("string"),
    												Namespace: pulumi.String("string"),
    											},
    											Spec: &argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecArgs{
    												Destination: &argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecDestinationArgs{
    													Name:      pulumi.String("string"),
    													Namespace: pulumi.String("string"),
    													Server:    pulumi.String("string"),
    												},
    												IgnoreDifferences: argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecIgnoreDifferenceArray{
    													&argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecIgnoreDifferenceArgs{
    														Group: pulumi.String("string"),
    														JqPathExpressions: pulumi.StringArray{
    															pulumi.String("string"),
    														},
    														JsonPointers: pulumi.StringArray{
    															pulumi.String("string"),
    														},
    														Kind: pulumi.String("string"),
    														ManagedFieldsManagers: pulumi.StringArray{
    															pulumi.String("string"),
    														},
    														Name:      pulumi.String("string"),
    														Namespace: pulumi.String("string"),
    													},
    												},
    												Infos: argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecInfoArray{
    													&argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecInfoArgs{
    														Name:  pulumi.String("string"),
    														Value: pulumi.String("string"),
    													},
    												},
    												Project:              pulumi.String("string"),
    												RevisionHistoryLimit: pulumi.Int(0),
    												Sources: argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceArray{
    													&argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceArgs{
    														Chart: pulumi.String("string"),
    														Directory: &argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryArgs{
    															Exclude: pulumi.String("string"),
    															Include: pulumi.String("string"),
    															Jsonnet: &argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetArgs{
    																ExtVars: argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetExtVarArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetExtVarArgs{
    																		Code:  pulumi.Bool(false),
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    																Libs: pulumi.StringArray{
    																	pulumi.String("string"),
    																},
    																Tlas: argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetTlaArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetTlaArgs{
    																		Code:  pulumi.Bool(false),
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    															},
    															Recurse: pulumi.Bool(false),
    														},
    														Helm: &argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmArgs{
    															FileParameters: argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameterArray{
    																&argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameterArgs{
    																	Name: pulumi.String("string"),
    																	Path: pulumi.String("string"),
    																},
    															},
    															IgnoreMissingValueFiles: pulumi.Bool(false),
    															Parameters: argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameterArray{
    																&argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameterArgs{
    																	ForceString: pulumi.Bool(false),
    																	Name:        pulumi.String("string"),
    																	Value:       pulumi.String("string"),
    																},
    															},
    															PassCredentials: pulumi.Bool(false),
    															ReleaseName:     pulumi.String("string"),
    															SkipCrds:        pulumi.Bool(false),
    															ValueFiles: pulumi.StringArray{
    																pulumi.String("string"),
    															},
    															Values:  pulumi.String("string"),
    															Version: pulumi.String("string"),
    														},
    														Kustomize: &argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizeArgs{
    															CommonAnnotations: pulumi.StringMap{
    																"string": pulumi.String("string"),
    															},
    															CommonLabels: pulumi.StringMap{
    																"string": pulumi.String("string"),
    															},
    															Images: pulumi.StringArray{
    																pulumi.String("string"),
    															},
    															NamePrefix: pulumi.String("string"),
    															NameSuffix: pulumi.String("string"),
    															Patches: argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchArray{
    																&argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchArgs{
    																	Target: &argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTargetArgs{
    																		AnnotationSelector: pulumi.String("string"),
    																		Group:              pulumi.String("string"),
    																		Kind:               pulumi.String("string"),
    																		LabelSelector:      pulumi.String("string"),
    																		Name:               pulumi.String("string"),
    																		Namespace:          pulumi.String("string"),
    																		Version:            pulumi.String("string"),
    																	},
    																	Options: pulumi.BoolMap{
    																		"string": pulumi.Bool(false),
    																	},
    																	Patch: pulumi.String("string"),
    																	Path:  pulumi.String("string"),
    																},
    															},
    															Version: pulumi.String("string"),
    														},
    														Path: pulumi.String("string"),
    														Plugin: &argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourcePluginArgs{
    															Envs: argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnvArray{
    																&argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnvArgs{
    																	Name:  pulumi.String("string"),
    																	Value: pulumi.String("string"),
    																},
    															},
    															Name: pulumi.String("string"),
    														},
    														Ref:            pulumi.String("string"),
    														RepoUrl:        pulumi.String("string"),
    														TargetRevision: pulumi.String("string"),
    													},
    												},
    												SyncPolicy: &argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyArgs{
    													Automated: &argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomatedArgs{
    														AllowEmpty: pulumi.Bool(false),
    														Prune:      pulumi.Bool(false),
    														SelfHeal:   pulumi.Bool(false),
    													},
    													ManagedNamespaceMetadata: &argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadataArgs{
    														Annotations: pulumi.StringMap{
    															"string": pulumi.String("string"),
    														},
    														Labels: pulumi.StringMap{
    															"string": pulumi.String("string"),
    														},
    													},
    													Retry: &argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryArgs{
    														Backoff: &argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoffArgs{
    															Duration:    pulumi.String("string"),
    															Factor:      pulumi.String("string"),
    															MaxDuration: pulumi.String("string"),
    														},
    														Limit: pulumi.String("string"),
    													},
    													SyncOptions: pulumi.StringArray{
    														pulumi.String("string"),
    													},
    												},
    											},
    										},
    										Values: pulumi.StringMap{
    											"string": pulumi.String("string"),
    										},
    									},
    								},
    								Clusters: argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterArray{
    									&argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterArgs{
    										Enabled: pulumi.Bool(false),
    										Selector: &argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterSelectorArgs{
    											MatchExpressions: argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterSelectorMatchExpressionArray{
    												&argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterSelectorMatchExpressionArgs{
    													Key:      pulumi.String("string"),
    													Operator: pulumi.String("string"),
    													Values: pulumi.StringArray{
    														pulumi.String("string"),
    													},
    												},
    											},
    											MatchLabels: pulumi.StringMap{
    												"string": pulumi.String("string"),
    											},
    										},
    										Template: &argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateArgs{
    											Metadata: &argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateMetadataArgs{
    												Annotations: pulumi.StringMap{
    													"string": pulumi.String("string"),
    												},
    												Finalizers: pulumi.StringArray{
    													pulumi.String("string"),
    												},
    												Labels: pulumi.StringMap{
    													"string": pulumi.String("string"),
    												},
    												Name:      pulumi.String("string"),
    												Namespace: pulumi.String("string"),
    											},
    											Spec: &argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecArgs{
    												Destination: &argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecDestinationArgs{
    													Name:      pulumi.String("string"),
    													Namespace: pulumi.String("string"),
    													Server:    pulumi.String("string"),
    												},
    												IgnoreDifferences: argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecIgnoreDifferenceArray{
    													&argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecIgnoreDifferenceArgs{
    														Group: pulumi.String("string"),
    														JqPathExpressions: pulumi.StringArray{
    															pulumi.String("string"),
    														},
    														JsonPointers: pulumi.StringArray{
    															pulumi.String("string"),
    														},
    														Kind: pulumi.String("string"),
    														ManagedFieldsManagers: pulumi.StringArray{
    															pulumi.String("string"),
    														},
    														Name:      pulumi.String("string"),
    														Namespace: pulumi.String("string"),
    													},
    												},
    												Infos: argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecInfoArray{
    													&argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecInfoArgs{
    														Name:  pulumi.String("string"),
    														Value: pulumi.String("string"),
    													},
    												},
    												Project:              pulumi.String("string"),
    												RevisionHistoryLimit: pulumi.Int(0),
    												Sources: argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceArray{
    													&argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceArgs{
    														Chart: pulumi.String("string"),
    														Directory: &argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryArgs{
    															Exclude: pulumi.String("string"),
    															Include: pulumi.String("string"),
    															Jsonnet: &argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnetArgs{
    																ExtVars: argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnetExtVarArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnetExtVarArgs{
    																		Code:  pulumi.Bool(false),
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    																Libs: pulumi.StringArray{
    																	pulumi.String("string"),
    																},
    																Tlas: argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnetTlaArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnetTlaArgs{
    																		Code:  pulumi.Bool(false),
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    															},
    															Recurse: pulumi.Bool(false),
    														},
    														Helm: &argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceHelmArgs{
    															FileParameters: argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceHelmFileParameterArray{
    																&argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceHelmFileParameterArgs{
    																	Name: pulumi.String("string"),
    																	Path: pulumi.String("string"),
    																},
    															},
    															IgnoreMissingValueFiles: pulumi.Bool(false),
    															Parameters: argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceHelmParameterArray{
    																&argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceHelmParameterArgs{
    																	ForceString: pulumi.Bool(false),
    																	Name:        pulumi.String("string"),
    																	Value:       pulumi.String("string"),
    																},
    															},
    															PassCredentials: pulumi.Bool(false),
    															ReleaseName:     pulumi.String("string"),
    															SkipCrds:        pulumi.Bool(false),
    															ValueFiles: pulumi.StringArray{
    																pulumi.String("string"),
    															},
    															Values:  pulumi.String("string"),
    															Version: pulumi.String("string"),
    														},
    														Kustomize: &argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizeArgs{
    															CommonAnnotations: pulumi.StringMap{
    																"string": pulumi.String("string"),
    															},
    															CommonLabels: pulumi.StringMap{
    																"string": pulumi.String("string"),
    															},
    															Images: pulumi.StringArray{
    																pulumi.String("string"),
    															},
    															NamePrefix: pulumi.String("string"),
    															NameSuffix: pulumi.String("string"),
    															Patches: argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizePatchArray{
    																&argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizePatchArgs{
    																	Target: &argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizePatchTargetArgs{
    																		AnnotationSelector: pulumi.String("string"),
    																		Group:              pulumi.String("string"),
    																		Kind:               pulumi.String("string"),
    																		LabelSelector:      pulumi.String("string"),
    																		Name:               pulumi.String("string"),
    																		Namespace:          pulumi.String("string"),
    																		Version:            pulumi.String("string"),
    																	},
    																	Options: pulumi.BoolMap{
    																		"string": pulumi.Bool(false),
    																	},
    																	Patch: pulumi.String("string"),
    																	Path:  pulumi.String("string"),
    																},
    															},
    															Version: pulumi.String("string"),
    														},
    														Path: pulumi.String("string"),
    														Plugin: &argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourcePluginArgs{
    															Envs: argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourcePluginEnvArray{
    																&argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourcePluginEnvArgs{
    																	Name:  pulumi.String("string"),
    																	Value: pulumi.String("string"),
    																},
    															},
    															Name: pulumi.String("string"),
    														},
    														Ref:            pulumi.String("string"),
    														RepoUrl:        pulumi.String("string"),
    														TargetRevision: pulumi.String("string"),
    													},
    												},
    												SyncPolicy: &argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyArgs{
    													Automated: &argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyAutomatedArgs{
    														AllowEmpty: pulumi.Bool(false),
    														Prune:      pulumi.Bool(false),
    														SelfHeal:   pulumi.Bool(false),
    													},
    													ManagedNamespaceMetadata: &argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadataArgs{
    														Annotations: pulumi.StringMap{
    															"string": pulumi.String("string"),
    														},
    														Labels: pulumi.StringMap{
    															"string": pulumi.String("string"),
    														},
    													},
    													Retry: &argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyRetryArgs{
    														Backoff: &argocd.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyRetryBackoffArgs{
    															Duration:    pulumi.String("string"),
    															Factor:      pulumi.String("string"),
    															MaxDuration: pulumi.String("string"),
    														},
    														Limit: pulumi.String("string"),
    													},
    													SyncOptions: pulumi.StringArray{
    														pulumi.String("string"),
    													},
    												},
    											},
    										},
    										Values: pulumi.StringMap{
    											"string": pulumi.String("string"),
    										},
    									},
    								},
    								Gits: argocd.ApplicationSetSpecGeneratorMergeGeneratorGitArray{
    									&argocd.ApplicationSetSpecGeneratorMergeGeneratorGitArgs{
    										RepoUrl: pulumi.String("string"),
    										Directories: argocd.ApplicationSetSpecGeneratorMergeGeneratorGitDirectoryArray{
    											&argocd.ApplicationSetSpecGeneratorMergeGeneratorGitDirectoryArgs{
    												Path:    pulumi.String("string"),
    												Exclude: pulumi.Bool(false),
    											},
    										},
    										Files: argocd.ApplicationSetSpecGeneratorMergeGeneratorGitFileArray{
    											&argocd.ApplicationSetSpecGeneratorMergeGeneratorGitFileArgs{
    												Path: pulumi.String("string"),
    											},
    										},
    										PathParamPrefix: pulumi.String("string"),
    										Revision:        pulumi.String("string"),
    										Template: &argocd.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateArgs{
    											Metadata: &argocd.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateMetadataArgs{
    												Annotations: pulumi.StringMap{
    													"string": pulumi.String("string"),
    												},
    												Finalizers: pulumi.StringArray{
    													pulumi.String("string"),
    												},
    												Labels: pulumi.StringMap{
    													"string": pulumi.String("string"),
    												},
    												Name:      pulumi.String("string"),
    												Namespace: pulumi.String("string"),
    											},
    											Spec: &argocd.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecArgs{
    												Destination: &argocd.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecDestinationArgs{
    													Name:      pulumi.String("string"),
    													Namespace: pulumi.String("string"),
    													Server:    pulumi.String("string"),
    												},
    												IgnoreDifferences: argocd.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecIgnoreDifferenceArray{
    													&argocd.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecIgnoreDifferenceArgs{
    														Group: pulumi.String("string"),
    														JqPathExpressions: pulumi.StringArray{
    															pulumi.String("string"),
    														},
    														JsonPointers: pulumi.StringArray{
    															pulumi.String("string"),
    														},
    														Kind: pulumi.String("string"),
    														ManagedFieldsManagers: pulumi.StringArray{
    															pulumi.String("string"),
    														},
    														Name:      pulumi.String("string"),
    														Namespace: pulumi.String("string"),
    													},
    												},
    												Infos: argocd.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecInfoArray{
    													&argocd.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecInfoArgs{
    														Name:  pulumi.String("string"),
    														Value: pulumi.String("string"),
    													},
    												},
    												Project:              pulumi.String("string"),
    												RevisionHistoryLimit: pulumi.Int(0),
    												Sources: argocd.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceArray{
    													&argocd.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceArgs{
    														Chart: pulumi.String("string"),
    														Directory: &argocd.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryArgs{
    															Exclude: pulumi.String("string"),
    															Include: pulumi.String("string"),
    															Jsonnet: &argocd.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnetArgs{
    																ExtVars: argocd.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnetExtVarArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnetExtVarArgs{
    																		Code:  pulumi.Bool(false),
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    																Libs: pulumi.StringArray{
    																	pulumi.String("string"),
    																},
    																Tlas: argocd.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnetTlaArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnetTlaArgs{
    																		Code:  pulumi.Bool(false),
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    															},
    															Recurse: pulumi.Bool(false),
    														},
    														Helm: &argocd.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceHelmArgs{
    															FileParameters: argocd.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceHelmFileParameterArray{
    																&argocd.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceHelmFileParameterArgs{
    																	Name: pulumi.String("string"),
    																	Path: pulumi.String("string"),
    																},
    															},
    															IgnoreMissingValueFiles: pulumi.Bool(false),
    															Parameters: argocd.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceHelmParameterArray{
    																&argocd.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceHelmParameterArgs{
    																	ForceString: pulumi.Bool(false),
    																	Name:        pulumi.String("string"),
    																	Value:       pulumi.String("string"),
    																},
    															},
    															PassCredentials: pulumi.Bool(false),
    															ReleaseName:     pulumi.String("string"),
    															SkipCrds:        pulumi.Bool(false),
    															ValueFiles: pulumi.StringArray{
    																pulumi.String("string"),
    															},
    															Values:  pulumi.String("string"),
    															Version: pulumi.String("string"),
    														},
    														Kustomize: &argocd.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceKustomizeArgs{
    															CommonAnnotations: pulumi.StringMap{
    																"string": pulumi.String("string"),
    															},
    															CommonLabels: pulumi.StringMap{
    																"string": pulumi.String("string"),
    															},
    															Images: pulumi.StringArray{
    																pulumi.String("string"),
    															},
    															NamePrefix: pulumi.String("string"),
    															NameSuffix: pulumi.String("string"),
    															Patches: argocd.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceKustomizePatchArray{
    																&argocd.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceKustomizePatchArgs{
    																	Target: &argocd.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceKustomizePatchTargetArgs{
    																		AnnotationSelector: pulumi.String("string"),
    																		Group:              pulumi.String("string"),
    																		Kind:               pulumi.String("string"),
    																		LabelSelector:      pulumi.String("string"),
    																		Name:               pulumi.String("string"),
    																		Namespace:          pulumi.String("string"),
    																		Version:            pulumi.String("string"),
    																	},
    																	Options: pulumi.BoolMap{
    																		"string": pulumi.Bool(false),
    																	},
    																	Patch: pulumi.String("string"),
    																	Path:  pulumi.String("string"),
    																},
    															},
    															Version: pulumi.String("string"),
    														},
    														Path: pulumi.String("string"),
    														Plugin: &argocd.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourcePluginArgs{
    															Envs: argocd.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourcePluginEnvArray{
    																&argocd.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourcePluginEnvArgs{
    																	Name:  pulumi.String("string"),
    																	Value: pulumi.String("string"),
    																},
    															},
    															Name: pulumi.String("string"),
    														},
    														Ref:            pulumi.String("string"),
    														RepoUrl:        pulumi.String("string"),
    														TargetRevision: pulumi.String("string"),
    													},
    												},
    												SyncPolicy: &argocd.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicyArgs{
    													Automated: &argocd.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicyAutomatedArgs{
    														AllowEmpty: pulumi.Bool(false),
    														Prune:      pulumi.Bool(false),
    														SelfHeal:   pulumi.Bool(false),
    													},
    													ManagedNamespaceMetadata: &argocd.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadataArgs{
    														Annotations: pulumi.StringMap{
    															"string": pulumi.String("string"),
    														},
    														Labels: pulumi.StringMap{
    															"string": pulumi.String("string"),
    														},
    													},
    													Retry: &argocd.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicyRetryArgs{
    														Backoff: &argocd.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicyRetryBackoffArgs{
    															Duration:    pulumi.String("string"),
    															Factor:      pulumi.String("string"),
    															MaxDuration: pulumi.String("string"),
    														},
    														Limit: pulumi.String("string"),
    													},
    													SyncOptions: pulumi.StringArray{
    														pulumi.String("string"),
    													},
    												},
    											},
    										},
    										Values: pulumi.StringMap{
    											"string": pulumi.String("string"),
    										},
    									},
    								},
    								Lists: argocd.ApplicationSetSpecGeneratorMergeGeneratorListArray{
    									&argocd.ApplicationSetSpecGeneratorMergeGeneratorListArgs{
    										Elements: pulumi.StringMapArray{
    											pulumi.StringMap{
    												"string": pulumi.String("string"),
    											},
    										},
    										Template: &argocd.ApplicationSetSpecGeneratorMergeGeneratorListTemplateArgs{
    											Metadata: &argocd.ApplicationSetSpecGeneratorMergeGeneratorListTemplateMetadataArgs{
    												Annotations: pulumi.StringMap{
    													"string": pulumi.String("string"),
    												},
    												Finalizers: pulumi.StringArray{
    													pulumi.String("string"),
    												},
    												Labels: pulumi.StringMap{
    													"string": pulumi.String("string"),
    												},
    												Name:      pulumi.String("string"),
    												Namespace: pulumi.String("string"),
    											},
    											Spec: &argocd.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecArgs{
    												Destination: &argocd.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecDestinationArgs{
    													Name:      pulumi.String("string"),
    													Namespace: pulumi.String("string"),
    													Server:    pulumi.String("string"),
    												},
    												IgnoreDifferences: argocd.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecIgnoreDifferenceArray{
    													&argocd.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecIgnoreDifferenceArgs{
    														Group: pulumi.String("string"),
    														JqPathExpressions: pulumi.StringArray{
    															pulumi.String("string"),
    														},
    														JsonPointers: pulumi.StringArray{
    															pulumi.String("string"),
    														},
    														Kind: pulumi.String("string"),
    														ManagedFieldsManagers: pulumi.StringArray{
    															pulumi.String("string"),
    														},
    														Name:      pulumi.String("string"),
    														Namespace: pulumi.String("string"),
    													},
    												},
    												Infos: argocd.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecInfoArray{
    													&argocd.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecInfoArgs{
    														Name:  pulumi.String("string"),
    														Value: pulumi.String("string"),
    													},
    												},
    												Project:              pulumi.String("string"),
    												RevisionHistoryLimit: pulumi.Int(0),
    												Sources: argocd.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceArray{
    													&argocd.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceArgs{
    														Chart: pulumi.String("string"),
    														Directory: &argocd.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceDirectoryArgs{
    															Exclude: pulumi.String("string"),
    															Include: pulumi.String("string"),
    															Jsonnet: &argocd.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnetArgs{
    																ExtVars: argocd.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnetExtVarArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnetExtVarArgs{
    																		Code:  pulumi.Bool(false),
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    																Libs: pulumi.StringArray{
    																	pulumi.String("string"),
    																},
    																Tlas: argocd.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnetTlaArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnetTlaArgs{
    																		Code:  pulumi.Bool(false),
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    															},
    															Recurse: pulumi.Bool(false),
    														},
    														Helm: &argocd.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceHelmArgs{
    															FileParameters: argocd.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceHelmFileParameterArray{
    																&argocd.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceHelmFileParameterArgs{
    																	Name: pulumi.String("string"),
    																	Path: pulumi.String("string"),
    																},
    															},
    															IgnoreMissingValueFiles: pulumi.Bool(false),
    															Parameters: argocd.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceHelmParameterArray{
    																&argocd.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceHelmParameterArgs{
    																	ForceString: pulumi.Bool(false),
    																	Name:        pulumi.String("string"),
    																	Value:       pulumi.String("string"),
    																},
    															},
    															PassCredentials: pulumi.Bool(false),
    															ReleaseName:     pulumi.String("string"),
    															SkipCrds:        pulumi.Bool(false),
    															ValueFiles: pulumi.StringArray{
    																pulumi.String("string"),
    															},
    															Values:  pulumi.String("string"),
    															Version: pulumi.String("string"),
    														},
    														Kustomize: &argocd.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceKustomizeArgs{
    															CommonAnnotations: pulumi.StringMap{
    																"string": pulumi.String("string"),
    															},
    															CommonLabels: pulumi.StringMap{
    																"string": pulumi.String("string"),
    															},
    															Images: pulumi.StringArray{
    																pulumi.String("string"),
    															},
    															NamePrefix: pulumi.String("string"),
    															NameSuffix: pulumi.String("string"),
    															Patches: argocd.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceKustomizePatchArray{
    																&argocd.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceKustomizePatchArgs{
    																	Target: &argocd.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceKustomizePatchTargetArgs{
    																		AnnotationSelector: pulumi.String("string"),
    																		Group:              pulumi.String("string"),
    																		Kind:               pulumi.String("string"),
    																		LabelSelector:      pulumi.String("string"),
    																		Name:               pulumi.String("string"),
    																		Namespace:          pulumi.String("string"),
    																		Version:            pulumi.String("string"),
    																	},
    																	Options: pulumi.BoolMap{
    																		"string": pulumi.Bool(false),
    																	},
    																	Patch: pulumi.String("string"),
    																	Path:  pulumi.String("string"),
    																},
    															},
    															Version: pulumi.String("string"),
    														},
    														Path: pulumi.String("string"),
    														Plugin: &argocd.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourcePluginArgs{
    															Envs: argocd.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourcePluginEnvArray{
    																&argocd.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourcePluginEnvArgs{
    																	Name:  pulumi.String("string"),
    																	Value: pulumi.String("string"),
    																},
    															},
    															Name: pulumi.String("string"),
    														},
    														Ref:            pulumi.String("string"),
    														RepoUrl:        pulumi.String("string"),
    														TargetRevision: pulumi.String("string"),
    													},
    												},
    												SyncPolicy: &argocd.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicyArgs{
    													Automated: &argocd.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicyAutomatedArgs{
    														AllowEmpty: pulumi.Bool(false),
    														Prune:      pulumi.Bool(false),
    														SelfHeal:   pulumi.Bool(false),
    													},
    													ManagedNamespaceMetadata: &argocd.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadataArgs{
    														Annotations: pulumi.StringMap{
    															"string": pulumi.String("string"),
    														},
    														Labels: pulumi.StringMap{
    															"string": pulumi.String("string"),
    														},
    													},
    													Retry: &argocd.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicyRetryArgs{
    														Backoff: &argocd.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicyRetryBackoffArgs{
    															Duration:    pulumi.String("string"),
    															Factor:      pulumi.String("string"),
    															MaxDuration: pulumi.String("string"),
    														},
    														Limit: pulumi.String("string"),
    													},
    													SyncOptions: pulumi.StringArray{
    														pulumi.String("string"),
    													},
    												},
    											},
    										},
    									},
    								},
    								Matrices: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixArray{
    									&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixArgs{
    										Generators: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorArray{
    											&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorArgs{
    												ClusterDecisionResources: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceArray{
    													&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceArgs{
    														ConfigMapRef: pulumi.String("string"),
    														LabelSelector: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceLabelSelectorArgs{
    															MatchExpressions: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceLabelSelectorMatchExpressionArray{
    																&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceLabelSelectorMatchExpressionArgs{
    																	Key:      pulumi.String("string"),
    																	Operator: pulumi.String("string"),
    																	Values: pulumi.StringArray{
    																		pulumi.String("string"),
    																	},
    																},
    															},
    															MatchLabels: pulumi.StringMap{
    																"string": pulumi.String("string"),
    															},
    														},
    														Name:                pulumi.String("string"),
    														RequeueAfterSeconds: pulumi.String("string"),
    														Template: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateArgs{
    															Metadata: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateMetadataArgs{
    																Annotations: pulumi.StringMap{
    																	"string": pulumi.String("string"),
    																},
    																Finalizers: pulumi.StringArray{
    																	pulumi.String("string"),
    																},
    																Labels: pulumi.StringMap{
    																	"string": pulumi.String("string"),
    																},
    																Name:      pulumi.String("string"),
    																Namespace: pulumi.String("string"),
    															},
    															Spec: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecArgs{
    																Destination: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecDestinationArgs{
    																	Name:      pulumi.String("string"),
    																	Namespace: pulumi.String("string"),
    																	Server:    pulumi.String("string"),
    																},
    																IgnoreDifferences: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecIgnoreDifferenceArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecIgnoreDifferenceArgs{
    																		Group: pulumi.String("string"),
    																		JqPathExpressions: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		JsonPointers: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		Kind: pulumi.String("string"),
    																		ManagedFieldsManagers: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		Name:      pulumi.String("string"),
    																		Namespace: pulumi.String("string"),
    																	},
    																},
    																Infos: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecInfoArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecInfoArgs{
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    																Project:              pulumi.String("string"),
    																RevisionHistoryLimit: pulumi.Int(0),
    																Sources: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceArgs{
    																		Chart: pulumi.String("string"),
    																		Directory: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryArgs{
    																			Exclude: pulumi.String("string"),
    																			Include: pulumi.String("string"),
    																			Jsonnet: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetArgs{
    																				ExtVars: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetExtVarArray{
    																					&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetExtVarArgs{
    																						Code:  pulumi.Bool(false),
    																						Name:  pulumi.String("string"),
    																						Value: pulumi.String("string"),
    																					},
    																				},
    																				Libs: pulumi.StringArray{
    																					pulumi.String("string"),
    																				},
    																				Tlas: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetTlaArray{
    																					&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetTlaArgs{
    																						Code:  pulumi.Bool(false),
    																						Name:  pulumi.String("string"),
    																						Value: pulumi.String("string"),
    																					},
    																				},
    																			},
    																			Recurse: pulumi.Bool(false),
    																		},
    																		Helm: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmArgs{
    																			FileParameters: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameterArray{
    																				&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameterArgs{
    																					Name: pulumi.String("string"),
    																					Path: pulumi.String("string"),
    																				},
    																			},
    																			IgnoreMissingValueFiles: pulumi.Bool(false),
    																			Parameters: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameterArray{
    																				&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameterArgs{
    																					ForceString: pulumi.Bool(false),
    																					Name:        pulumi.String("string"),
    																					Value:       pulumi.String("string"),
    																				},
    																			},
    																			PassCredentials: pulumi.Bool(false),
    																			ReleaseName:     pulumi.String("string"),
    																			SkipCrds:        pulumi.Bool(false),
    																			ValueFiles: pulumi.StringArray{
    																				pulumi.String("string"),
    																			},
    																			Values:  pulumi.String("string"),
    																			Version: pulumi.String("string"),
    																		},
    																		Kustomize: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizeArgs{
    																			CommonAnnotations: pulumi.StringMap{
    																				"string": pulumi.String("string"),
    																			},
    																			CommonLabels: pulumi.StringMap{
    																				"string": pulumi.String("string"),
    																			},
    																			Images: pulumi.StringArray{
    																				pulumi.String("string"),
    																			},
    																			NamePrefix: pulumi.String("string"),
    																			NameSuffix: pulumi.String("string"),
    																			Patches: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchArray{
    																				&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchArgs{
    																					Target: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTargetArgs{
    																						AnnotationSelector: pulumi.String("string"),
    																						Group:              pulumi.String("string"),
    																						Kind:               pulumi.String("string"),
    																						LabelSelector:      pulumi.String("string"),
    																						Name:               pulumi.String("string"),
    																						Namespace:          pulumi.String("string"),
    																						Version:            pulumi.String("string"),
    																					},
    																					Options: pulumi.BoolMap{
    																						"string": pulumi.Bool(false),
    																					},
    																					Patch: pulumi.String("string"),
    																					Path:  pulumi.String("string"),
    																				},
    																			},
    																			Version: pulumi.String("string"),
    																		},
    																		Path: pulumi.String("string"),
    																		Plugin: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePluginArgs{
    																			Envs: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnvArray{
    																				&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnvArgs{
    																					Name:  pulumi.String("string"),
    																					Value: pulumi.String("string"),
    																				},
    																			},
    																			Name: pulumi.String("string"),
    																		},
    																		Ref:            pulumi.String("string"),
    																		RepoUrl:        pulumi.String("string"),
    																		TargetRevision: pulumi.String("string"),
    																	},
    																},
    																SyncPolicy: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyArgs{
    																	Automated: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomatedArgs{
    																		AllowEmpty: pulumi.Bool(false),
    																		Prune:      pulumi.Bool(false),
    																		SelfHeal:   pulumi.Bool(false),
    																	},
    																	ManagedNamespaceMetadata: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadataArgs{
    																		Annotations: pulumi.StringMap{
    																			"string": pulumi.String("string"),
    																		},
    																		Labels: pulumi.StringMap{
    																			"string": pulumi.String("string"),
    																		},
    																	},
    																	Retry: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryArgs{
    																		Backoff: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoffArgs{
    																			Duration:    pulumi.String("string"),
    																			Factor:      pulumi.String("string"),
    																			MaxDuration: pulumi.String("string"),
    																		},
    																		Limit: pulumi.String("string"),
    																	},
    																	SyncOptions: pulumi.StringArray{
    																		pulumi.String("string"),
    																	},
    																},
    															},
    														},
    														Values: pulumi.StringMap{
    															"string": pulumi.String("string"),
    														},
    													},
    												},
    												Clusters: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterArray{
    													&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterArgs{
    														Enabled: pulumi.Bool(false),
    														Selector: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterSelectorArgs{
    															MatchExpressions: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterSelectorMatchExpressionArray{
    																&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterSelectorMatchExpressionArgs{
    																	Key:      pulumi.String("string"),
    																	Operator: pulumi.String("string"),
    																	Values: pulumi.StringArray{
    																		pulumi.String("string"),
    																	},
    																},
    															},
    															MatchLabels: pulumi.StringMap{
    																"string": pulumi.String("string"),
    															},
    														},
    														Template: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateArgs{
    															Metadata: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateMetadataArgs{
    																Annotations: pulumi.StringMap{
    																	"string": pulumi.String("string"),
    																},
    																Finalizers: pulumi.StringArray{
    																	pulumi.String("string"),
    																},
    																Labels: pulumi.StringMap{
    																	"string": pulumi.String("string"),
    																},
    																Name:      pulumi.String("string"),
    																Namespace: pulumi.String("string"),
    															},
    															Spec: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecArgs{
    																Destination: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecDestinationArgs{
    																	Name:      pulumi.String("string"),
    																	Namespace: pulumi.String("string"),
    																	Server:    pulumi.String("string"),
    																},
    																IgnoreDifferences: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecIgnoreDifferenceArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecIgnoreDifferenceArgs{
    																		Group: pulumi.String("string"),
    																		JqPathExpressions: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		JsonPointers: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		Kind: pulumi.String("string"),
    																		ManagedFieldsManagers: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		Name:      pulumi.String("string"),
    																		Namespace: pulumi.String("string"),
    																	},
    																},
    																Infos: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecInfoArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecInfoArgs{
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    																Project:              pulumi.String("string"),
    																RevisionHistoryLimit: pulumi.Int(0),
    																Sources: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceArgs{
    																		Chart: pulumi.String("string"),
    																		Directory: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryArgs{
    																			Exclude: pulumi.String("string"),
    																			Include: pulumi.String("string"),
    																			Jsonnet: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnetArgs{
    																				ExtVars: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnetExtVarArray{
    																					&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnetExtVarArgs{
    																						Code:  pulumi.Bool(false),
    																						Name:  pulumi.String("string"),
    																						Value: pulumi.String("string"),
    																					},
    																				},
    																				Libs: pulumi.StringArray{
    																					pulumi.String("string"),
    																				},
    																				Tlas: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnetTlaArray{
    																					&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnetTlaArgs{
    																						Code:  pulumi.Bool(false),
    																						Name:  pulumi.String("string"),
    																						Value: pulumi.String("string"),
    																					},
    																				},
    																			},
    																			Recurse: pulumi.Bool(false),
    																		},
    																		Helm: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmArgs{
    																			FileParameters: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmFileParameterArray{
    																				&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmFileParameterArgs{
    																					Name: pulumi.String("string"),
    																					Path: pulumi.String("string"),
    																				},
    																			},
    																			IgnoreMissingValueFiles: pulumi.Bool(false),
    																			Parameters: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmParameterArray{
    																				&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmParameterArgs{
    																					ForceString: pulumi.Bool(false),
    																					Name:        pulumi.String("string"),
    																					Value:       pulumi.String("string"),
    																				},
    																			},
    																			PassCredentials: pulumi.Bool(false),
    																			ReleaseName:     pulumi.String("string"),
    																			SkipCrds:        pulumi.Bool(false),
    																			ValueFiles: pulumi.StringArray{
    																				pulumi.String("string"),
    																			},
    																			Values:  pulumi.String("string"),
    																			Version: pulumi.String("string"),
    																		},
    																		Kustomize: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizeArgs{
    																			CommonAnnotations: pulumi.StringMap{
    																				"string": pulumi.String("string"),
    																			},
    																			CommonLabels: pulumi.StringMap{
    																				"string": pulumi.String("string"),
    																			},
    																			Images: pulumi.StringArray{
    																				pulumi.String("string"),
    																			},
    																			NamePrefix: pulumi.String("string"),
    																			NameSuffix: pulumi.String("string"),
    																			Patches: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatchArray{
    																				&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatchArgs{
    																					Target: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatchTargetArgs{
    																						AnnotationSelector: pulumi.String("string"),
    																						Group:              pulumi.String("string"),
    																						Kind:               pulumi.String("string"),
    																						LabelSelector:      pulumi.String("string"),
    																						Name:               pulumi.String("string"),
    																						Namespace:          pulumi.String("string"),
    																						Version:            pulumi.String("string"),
    																					},
    																					Options: pulumi.BoolMap{
    																						"string": pulumi.Bool(false),
    																					},
    																					Patch: pulumi.String("string"),
    																					Path:  pulumi.String("string"),
    																				},
    																			},
    																			Version: pulumi.String("string"),
    																		},
    																		Path: pulumi.String("string"),
    																		Plugin: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourcePluginArgs{
    																			Envs: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourcePluginEnvArray{
    																				&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourcePluginEnvArgs{
    																					Name:  pulumi.String("string"),
    																					Value: pulumi.String("string"),
    																				},
    																			},
    																			Name: pulumi.String("string"),
    																		},
    																		Ref:            pulumi.String("string"),
    																		RepoUrl:        pulumi.String("string"),
    																		TargetRevision: pulumi.String("string"),
    																	},
    																},
    																SyncPolicy: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyArgs{
    																	Automated: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyAutomatedArgs{
    																		AllowEmpty: pulumi.Bool(false),
    																		Prune:      pulumi.Bool(false),
    																		SelfHeal:   pulumi.Bool(false),
    																	},
    																	ManagedNamespaceMetadata: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadataArgs{
    																		Annotations: pulumi.StringMap{
    																			"string": pulumi.String("string"),
    																		},
    																		Labels: pulumi.StringMap{
    																			"string": pulumi.String("string"),
    																		},
    																	},
    																	Retry: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetryArgs{
    																		Backoff: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetryBackoffArgs{
    																			Duration:    pulumi.String("string"),
    																			Factor:      pulumi.String("string"),
    																			MaxDuration: pulumi.String("string"),
    																		},
    																		Limit: pulumi.String("string"),
    																	},
    																	SyncOptions: pulumi.StringArray{
    																		pulumi.String("string"),
    																	},
    																},
    															},
    														},
    														Values: pulumi.StringMap{
    															"string": pulumi.String("string"),
    														},
    													},
    												},
    												Gits: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitArray{
    													&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitArgs{
    														RepoUrl: pulumi.String("string"),
    														Directories: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitDirectoryArray{
    															&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitDirectoryArgs{
    																Path:    pulumi.String("string"),
    																Exclude: pulumi.Bool(false),
    															},
    														},
    														Files: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitFileArray{
    															&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitFileArgs{
    																Path: pulumi.String("string"),
    															},
    														},
    														PathParamPrefix: pulumi.String("string"),
    														Revision:        pulumi.String("string"),
    														Template: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateArgs{
    															Metadata: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateMetadataArgs{
    																Annotations: pulumi.StringMap{
    																	"string": pulumi.String("string"),
    																},
    																Finalizers: pulumi.StringArray{
    																	pulumi.String("string"),
    																},
    																Labels: pulumi.StringMap{
    																	"string": pulumi.String("string"),
    																},
    																Name:      pulumi.String("string"),
    																Namespace: pulumi.String("string"),
    															},
    															Spec: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecArgs{
    																Destination: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecDestinationArgs{
    																	Name:      pulumi.String("string"),
    																	Namespace: pulumi.String("string"),
    																	Server:    pulumi.String("string"),
    																},
    																IgnoreDifferences: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecIgnoreDifferenceArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecIgnoreDifferenceArgs{
    																		Group: pulumi.String("string"),
    																		JqPathExpressions: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		JsonPointers: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		Kind: pulumi.String("string"),
    																		ManagedFieldsManagers: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		Name:      pulumi.String("string"),
    																		Namespace: pulumi.String("string"),
    																	},
    																},
    																Infos: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecInfoArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecInfoArgs{
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    																Project:              pulumi.String("string"),
    																RevisionHistoryLimit: pulumi.Int(0),
    																Sources: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceArgs{
    																		Chart: pulumi.String("string"),
    																		Directory: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryArgs{
    																			Exclude: pulumi.String("string"),
    																			Include: pulumi.String("string"),
    																			Jsonnet: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnetArgs{
    																				ExtVars: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnetExtVarArray{
    																					&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnetExtVarArgs{
    																						Code:  pulumi.Bool(false),
    																						Name:  pulumi.String("string"),
    																						Value: pulumi.String("string"),
    																					},
    																				},
    																				Libs: pulumi.StringArray{
    																					pulumi.String("string"),
    																				},
    																				Tlas: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnetTlaArray{
    																					&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnetTlaArgs{
    																						Code:  pulumi.Bool(false),
    																						Name:  pulumi.String("string"),
    																						Value: pulumi.String("string"),
    																					},
    																				},
    																			},
    																			Recurse: pulumi.Bool(false),
    																		},
    																		Helm: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceHelmArgs{
    																			FileParameters: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceHelmFileParameterArray{
    																				&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceHelmFileParameterArgs{
    																					Name: pulumi.String("string"),
    																					Path: pulumi.String("string"),
    																				},
    																			},
    																			IgnoreMissingValueFiles: pulumi.Bool(false),
    																			Parameters: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceHelmParameterArray{
    																				&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceHelmParameterArgs{
    																					ForceString: pulumi.Bool(false),
    																					Name:        pulumi.String("string"),
    																					Value:       pulumi.String("string"),
    																				},
    																			},
    																			PassCredentials: pulumi.Bool(false),
    																			ReleaseName:     pulumi.String("string"),
    																			SkipCrds:        pulumi.Bool(false),
    																			ValueFiles: pulumi.StringArray{
    																				pulumi.String("string"),
    																			},
    																			Values:  pulumi.String("string"),
    																			Version: pulumi.String("string"),
    																		},
    																		Kustomize: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizeArgs{
    																			CommonAnnotations: pulumi.StringMap{
    																				"string": pulumi.String("string"),
    																			},
    																			CommonLabels: pulumi.StringMap{
    																				"string": pulumi.String("string"),
    																			},
    																			Images: pulumi.StringArray{
    																				pulumi.String("string"),
    																			},
    																			NamePrefix: pulumi.String("string"),
    																			NameSuffix: pulumi.String("string"),
    																			Patches: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatchArray{
    																				&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatchArgs{
    																					Target: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatchTargetArgs{
    																						AnnotationSelector: pulumi.String("string"),
    																						Group:              pulumi.String("string"),
    																						Kind:               pulumi.String("string"),
    																						LabelSelector:      pulumi.String("string"),
    																						Name:               pulumi.String("string"),
    																						Namespace:          pulumi.String("string"),
    																						Version:            pulumi.String("string"),
    																					},
    																					Options: pulumi.BoolMap{
    																						"string": pulumi.Bool(false),
    																					},
    																					Patch: pulumi.String("string"),
    																					Path:  pulumi.String("string"),
    																				},
    																			},
    																			Version: pulumi.String("string"),
    																		},
    																		Path: pulumi.String("string"),
    																		Plugin: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourcePluginArgs{
    																			Envs: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourcePluginEnvArray{
    																				&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourcePluginEnvArgs{
    																					Name:  pulumi.String("string"),
    																					Value: pulumi.String("string"),
    																				},
    																			},
    																			Name: pulumi.String("string"),
    																		},
    																		Ref:            pulumi.String("string"),
    																		RepoUrl:        pulumi.String("string"),
    																		TargetRevision: pulumi.String("string"),
    																	},
    																},
    																SyncPolicy: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyArgs{
    																	Automated: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyAutomatedArgs{
    																		AllowEmpty: pulumi.Bool(false),
    																		Prune:      pulumi.Bool(false),
    																		SelfHeal:   pulumi.Bool(false),
    																	},
    																	ManagedNamespaceMetadata: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadataArgs{
    																		Annotations: pulumi.StringMap{
    																			"string": pulumi.String("string"),
    																		},
    																		Labels: pulumi.StringMap{
    																			"string": pulumi.String("string"),
    																		},
    																	},
    																	Retry: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetryArgs{
    																		Backoff: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetryBackoffArgs{
    																			Duration:    pulumi.String("string"),
    																			Factor:      pulumi.String("string"),
    																			MaxDuration: pulumi.String("string"),
    																		},
    																		Limit: pulumi.String("string"),
    																	},
    																	SyncOptions: pulumi.StringArray{
    																		pulumi.String("string"),
    																	},
    																},
    															},
    														},
    														Values: pulumi.StringMap{
    															"string": pulumi.String("string"),
    														},
    													},
    												},
    												Lists: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListArray{
    													&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListArgs{
    														Elements: pulumi.StringMapArray{
    															pulumi.StringMap{
    																"string": pulumi.String("string"),
    															},
    														},
    														Template: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateArgs{
    															Metadata: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateMetadataArgs{
    																Annotations: pulumi.StringMap{
    																	"string": pulumi.String("string"),
    																},
    																Finalizers: pulumi.StringArray{
    																	pulumi.String("string"),
    																},
    																Labels: pulumi.StringMap{
    																	"string": pulumi.String("string"),
    																},
    																Name:      pulumi.String("string"),
    																Namespace: pulumi.String("string"),
    															},
    															Spec: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecArgs{
    																Destination: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecDestinationArgs{
    																	Name:      pulumi.String("string"),
    																	Namespace: pulumi.String("string"),
    																	Server:    pulumi.String("string"),
    																},
    																IgnoreDifferences: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecIgnoreDifferenceArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecIgnoreDifferenceArgs{
    																		Group: pulumi.String("string"),
    																		JqPathExpressions: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		JsonPointers: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		Kind: pulumi.String("string"),
    																		ManagedFieldsManagers: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		Name:      pulumi.String("string"),
    																		Namespace: pulumi.String("string"),
    																	},
    																},
    																Infos: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecInfoArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecInfoArgs{
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    																Project:              pulumi.String("string"),
    																RevisionHistoryLimit: pulumi.Int(0),
    																Sources: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceArgs{
    																		Chart: pulumi.String("string"),
    																		Directory: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryArgs{
    																			Exclude: pulumi.String("string"),
    																			Include: pulumi.String("string"),
    																			Jsonnet: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnetArgs{
    																				ExtVars: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnetExtVarArray{
    																					&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnetExtVarArgs{
    																						Code:  pulumi.Bool(false),
    																						Name:  pulumi.String("string"),
    																						Value: pulumi.String("string"),
    																					},
    																				},
    																				Libs: pulumi.StringArray{
    																					pulumi.String("string"),
    																				},
    																				Tlas: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnetTlaArray{
    																					&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnetTlaArgs{
    																						Code:  pulumi.Bool(false),
    																						Name:  pulumi.String("string"),
    																						Value: pulumi.String("string"),
    																					},
    																				},
    																			},
    																			Recurse: pulumi.Bool(false),
    																		},
    																		Helm: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceHelmArgs{
    																			FileParameters: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceHelmFileParameterArray{
    																				&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceHelmFileParameterArgs{
    																					Name: pulumi.String("string"),
    																					Path: pulumi.String("string"),
    																				},
    																			},
    																			IgnoreMissingValueFiles: pulumi.Bool(false),
    																			Parameters: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceHelmParameterArray{
    																				&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceHelmParameterArgs{
    																					ForceString: pulumi.Bool(false),
    																					Name:        pulumi.String("string"),
    																					Value:       pulumi.String("string"),
    																				},
    																			},
    																			PassCredentials: pulumi.Bool(false),
    																			ReleaseName:     pulumi.String("string"),
    																			SkipCrds:        pulumi.Bool(false),
    																			ValueFiles: pulumi.StringArray{
    																				pulumi.String("string"),
    																			},
    																			Values:  pulumi.String("string"),
    																			Version: pulumi.String("string"),
    																		},
    																		Kustomize: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceKustomizeArgs{
    																			CommonAnnotations: pulumi.StringMap{
    																				"string": pulumi.String("string"),
    																			},
    																			CommonLabels: pulumi.StringMap{
    																				"string": pulumi.String("string"),
    																			},
    																			Images: pulumi.StringArray{
    																				pulumi.String("string"),
    																			},
    																			NamePrefix: pulumi.String("string"),
    																			NameSuffix: pulumi.String("string"),
    																			Patches: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatchArray{
    																				&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatchArgs{
    																					Target: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatchTargetArgs{
    																						AnnotationSelector: pulumi.String("string"),
    																						Group:              pulumi.String("string"),
    																						Kind:               pulumi.String("string"),
    																						LabelSelector:      pulumi.String("string"),
    																						Name:               pulumi.String("string"),
    																						Namespace:          pulumi.String("string"),
    																						Version:            pulumi.String("string"),
    																					},
    																					Options: pulumi.BoolMap{
    																						"string": pulumi.Bool(false),
    																					},
    																					Patch: pulumi.String("string"),
    																					Path:  pulumi.String("string"),
    																				},
    																			},
    																			Version: pulumi.String("string"),
    																		},
    																		Path: pulumi.String("string"),
    																		Plugin: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourcePluginArgs{
    																			Envs: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourcePluginEnvArray{
    																				&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourcePluginEnvArgs{
    																					Name:  pulumi.String("string"),
    																					Value: pulumi.String("string"),
    																				},
    																			},
    																			Name: pulumi.String("string"),
    																		},
    																		Ref:            pulumi.String("string"),
    																		RepoUrl:        pulumi.String("string"),
    																		TargetRevision: pulumi.String("string"),
    																	},
    																},
    																SyncPolicy: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicyArgs{
    																	Automated: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicyAutomatedArgs{
    																		AllowEmpty: pulumi.Bool(false),
    																		Prune:      pulumi.Bool(false),
    																		SelfHeal:   pulumi.Bool(false),
    																	},
    																	ManagedNamespaceMetadata: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadataArgs{
    																		Annotations: pulumi.StringMap{
    																			"string": pulumi.String("string"),
    																		},
    																		Labels: pulumi.StringMap{
    																			"string": pulumi.String("string"),
    																		},
    																	},
    																	Retry: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetryArgs{
    																		Backoff: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetryBackoffArgs{
    																			Duration:    pulumi.String("string"),
    																			Factor:      pulumi.String("string"),
    																			MaxDuration: pulumi.String("string"),
    																		},
    																		Limit: pulumi.String("string"),
    																	},
    																	SyncOptions: pulumi.StringArray{
    																		pulumi.String("string"),
    																	},
    																},
    															},
    														},
    													},
    												},
    												PullRequests: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestArray{
    													&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestArgs{
    														BitbucketServer: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestBitbucketServerArgs{
    															Api:     pulumi.String("string"),
    															Project: pulumi.String("string"),
    															Repo:    pulumi.String("string"),
    															BasicAuth: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestBitbucketServerBasicAuthArgs{
    																PasswordRef: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestBitbucketServerBasicAuthPasswordRefArgs{
    																	Key:        pulumi.String("string"),
    																	SecretName: pulumi.String("string"),
    																},
    																Username: pulumi.String("string"),
    															},
    														},
    														Filters: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestFilterArray{
    															&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestFilterArgs{
    																BranchMatch: pulumi.String("string"),
    															},
    														},
    														Gitea: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGiteaArgs{
    															Api:      pulumi.String("string"),
    															Owner:    pulumi.String("string"),
    															Repo:     pulumi.String("string"),
    															Insecure: pulumi.Bool(false),
    															TokenRef: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGiteaTokenRefArgs{
    																Key:        pulumi.String("string"),
    																SecretName: pulumi.String("string"),
    															},
    														},
    														Github: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGithubArgs{
    															Owner:         pulumi.String("string"),
    															Repo:          pulumi.String("string"),
    															Api:           pulumi.String("string"),
    															AppSecretName: pulumi.String("string"),
    															Labels: pulumi.StringArray{
    																pulumi.String("string"),
    															},
    															TokenRef: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGithubTokenRefArgs{
    																Key:        pulumi.String("string"),
    																SecretName: pulumi.String("string"),
    															},
    														},
    														Gitlab: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGitlabArgs{
    															Project: pulumi.String("string"),
    															Api:     pulumi.String("string"),
    															Labels: pulumi.StringArray{
    																pulumi.String("string"),
    															},
    															PullRequestState: pulumi.String("string"),
    															TokenRef: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGitlabTokenRefArgs{
    																Key:        pulumi.String("string"),
    																SecretName: pulumi.String("string"),
    															},
    														},
    														RequeueAfterSeconds: pulumi.String("string"),
    														Template: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateArgs{
    															Metadata: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateMetadataArgs{
    																Annotations: pulumi.StringMap{
    																	"string": pulumi.String("string"),
    																},
    																Finalizers: pulumi.StringArray{
    																	pulumi.String("string"),
    																},
    																Labels: pulumi.StringMap{
    																	"string": pulumi.String("string"),
    																},
    																Name:      pulumi.String("string"),
    																Namespace: pulumi.String("string"),
    															},
    															Spec: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecArgs{
    																Destination: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecDestinationArgs{
    																	Name:      pulumi.String("string"),
    																	Namespace: pulumi.String("string"),
    																	Server:    pulumi.String("string"),
    																},
    																IgnoreDifferences: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecIgnoreDifferenceArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecIgnoreDifferenceArgs{
    																		Group: pulumi.String("string"),
    																		JqPathExpressions: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		JsonPointers: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		Kind: pulumi.String("string"),
    																		ManagedFieldsManagers: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		Name:      pulumi.String("string"),
    																		Namespace: pulumi.String("string"),
    																	},
    																},
    																Infos: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecInfoArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecInfoArgs{
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    																Project:              pulumi.String("string"),
    																RevisionHistoryLimit: pulumi.Int(0),
    																Sources: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceArgs{
    																		Chart: pulumi.String("string"),
    																		Directory: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryArgs{
    																			Exclude: pulumi.String("string"),
    																			Include: pulumi.String("string"),
    																			Jsonnet: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetArgs{
    																				ExtVars: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetExtVarArray{
    																					&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetExtVarArgs{
    																						Code:  pulumi.Bool(false),
    																						Name:  pulumi.String("string"),
    																						Value: pulumi.String("string"),
    																					},
    																				},
    																				Libs: pulumi.StringArray{
    																					pulumi.String("string"),
    																				},
    																				Tlas: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetTlaArray{
    																					&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetTlaArgs{
    																						Code:  pulumi.Bool(false),
    																						Name:  pulumi.String("string"),
    																						Value: pulumi.String("string"),
    																					},
    																				},
    																			},
    																			Recurse: pulumi.Bool(false),
    																		},
    																		Helm: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmArgs{
    																			FileParameters: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmFileParameterArray{
    																				&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmFileParameterArgs{
    																					Name: pulumi.String("string"),
    																					Path: pulumi.String("string"),
    																				},
    																			},
    																			IgnoreMissingValueFiles: pulumi.Bool(false),
    																			Parameters: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmParameterArray{
    																				&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmParameterArgs{
    																					ForceString: pulumi.Bool(false),
    																					Name:        pulumi.String("string"),
    																					Value:       pulumi.String("string"),
    																				},
    																			},
    																			PassCredentials: pulumi.Bool(false),
    																			ReleaseName:     pulumi.String("string"),
    																			SkipCrds:        pulumi.Bool(false),
    																			ValueFiles: pulumi.StringArray{
    																				pulumi.String("string"),
    																			},
    																			Values:  pulumi.String("string"),
    																			Version: pulumi.String("string"),
    																		},
    																		Kustomize: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizeArgs{
    																			CommonAnnotations: pulumi.StringMap{
    																				"string": pulumi.String("string"),
    																			},
    																			CommonLabels: pulumi.StringMap{
    																				"string": pulumi.String("string"),
    																			},
    																			Images: pulumi.StringArray{
    																				pulumi.String("string"),
    																			},
    																			NamePrefix: pulumi.String("string"),
    																			NameSuffix: pulumi.String("string"),
    																			Patches: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatchArray{
    																				&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatchArgs{
    																					Target: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatchTargetArgs{
    																						AnnotationSelector: pulumi.String("string"),
    																						Group:              pulumi.String("string"),
    																						Kind:               pulumi.String("string"),
    																						LabelSelector:      pulumi.String("string"),
    																						Name:               pulumi.String("string"),
    																						Namespace:          pulumi.String("string"),
    																						Version:            pulumi.String("string"),
    																					},
    																					Options: pulumi.BoolMap{
    																						"string": pulumi.Bool(false),
    																					},
    																					Patch: pulumi.String("string"),
    																					Path:  pulumi.String("string"),
    																				},
    																			},
    																			Version: pulumi.String("string"),
    																		},
    																		Path: pulumi.String("string"),
    																		Plugin: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePluginArgs{
    																			Envs: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePluginEnvArray{
    																				&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePluginEnvArgs{
    																					Name:  pulumi.String("string"),
    																					Value: pulumi.String("string"),
    																				},
    																			},
    																			Name: pulumi.String("string"),
    																		},
    																		Ref:            pulumi.String("string"),
    																		RepoUrl:        pulumi.String("string"),
    																		TargetRevision: pulumi.String("string"),
    																	},
    																},
    																SyncPolicy: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyArgs{
    																	Automated: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyAutomatedArgs{
    																		AllowEmpty: pulumi.Bool(false),
    																		Prune:      pulumi.Bool(false),
    																		SelfHeal:   pulumi.Bool(false),
    																	},
    																	ManagedNamespaceMetadata: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyManagedNamespaceMetadataArgs{
    																		Annotations: pulumi.StringMap{
    																			"string": pulumi.String("string"),
    																		},
    																		Labels: pulumi.StringMap{
    																			"string": pulumi.String("string"),
    																		},
    																	},
    																	Retry: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetryArgs{
    																		Backoff: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetryBackoffArgs{
    																			Duration:    pulumi.String("string"),
    																			Factor:      pulumi.String("string"),
    																			MaxDuration: pulumi.String("string"),
    																		},
    																		Limit: pulumi.String("string"),
    																	},
    																	SyncOptions: pulumi.StringArray{
    																		pulumi.String("string"),
    																	},
    																},
    															},
    														},
    													},
    												},
    												ScmProviders: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderArray{
    													&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderArgs{
    														AzureDevops: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderAzureDevopsArgs{
    															Organization: pulumi.String("string"),
    															TeamProject:  pulumi.String("string"),
    															AccessTokenRef: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderAzureDevopsAccessTokenRefArgs{
    																Key:        pulumi.String("string"),
    																SecretName: pulumi.String("string"),
    															},
    															AllBranches: pulumi.Bool(false),
    															Api:         pulumi.String("string"),
    														},
    														BitbucketCloud: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderBitbucketCloudArgs{
    															Owner:       pulumi.String("string"),
    															User:        pulumi.String("string"),
    															AllBranches: pulumi.Bool(false),
    															AppPasswordRef: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderBitbucketCloudAppPasswordRefArgs{
    																Key:        pulumi.String("string"),
    																SecretName: pulumi.String("string"),
    															},
    														},
    														BitbucketServer: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderBitbucketServerArgs{
    															Api:         pulumi.String("string"),
    															Project:     pulumi.String("string"),
    															AllBranches: pulumi.Bool(false),
    															BasicAuth: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderBitbucketServerBasicAuthArgs{
    																PasswordRef: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderBitbucketServerBasicAuthPasswordRefArgs{
    																	Key:        pulumi.String("string"),
    																	SecretName: pulumi.String("string"),
    																},
    																Username: pulumi.String("string"),
    															},
    														},
    														CloneProtocol: pulumi.String("string"),
    														Filters: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderFilterArray{
    															&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderFilterArgs{
    																BranchMatch: pulumi.String("string"),
    																LabelMatch:  pulumi.String("string"),
    																PathsDoNotExists: pulumi.StringArray{
    																	pulumi.String("string"),
    																},
    																PathsExists: pulumi.StringArray{
    																	pulumi.String("string"),
    																},
    																RepositoryMatch: pulumi.String("string"),
    															},
    														},
    														Gitea: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGiteaArgs{
    															Owner:       pulumi.String("string"),
    															AllBranches: pulumi.Bool(false),
    															Api:         pulumi.String("string"),
    															Insecure:    pulumi.Bool(false),
    															TokenRef: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGiteaTokenRefArgs{
    																Key:        pulumi.String("string"),
    																SecretName: pulumi.String("string"),
    															},
    														},
    														Github: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGithubArgs{
    															Organization:  pulumi.String("string"),
    															AllBranches:   pulumi.Bool(false),
    															Api:           pulumi.String("string"),
    															AppSecretName: pulumi.String("string"),
    															TokenRef: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGithubTokenRefArgs{
    																Key:        pulumi.String("string"),
    																SecretName: pulumi.String("string"),
    															},
    														},
    														Gitlab: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGitlabArgs{
    															Group:            pulumi.String("string"),
    															AllBranches:      pulumi.Bool(false),
    															Api:              pulumi.String("string"),
    															IncludeSubgroups: pulumi.Bool(false),
    															TokenRef: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGitlabTokenRefArgs{
    																Key:        pulumi.String("string"),
    																SecretName: pulumi.String("string"),
    															},
    														},
    														RequeueAfterSeconds: pulumi.String("string"),
    														Template: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateArgs{
    															Metadata: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateMetadataArgs{
    																Annotations: pulumi.StringMap{
    																	"string": pulumi.String("string"),
    																},
    																Finalizers: pulumi.StringArray{
    																	pulumi.String("string"),
    																},
    																Labels: pulumi.StringMap{
    																	"string": pulumi.String("string"),
    																},
    																Name:      pulumi.String("string"),
    																Namespace: pulumi.String("string"),
    															},
    															Spec: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecArgs{
    																Destination: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecDestinationArgs{
    																	Name:      pulumi.String("string"),
    																	Namespace: pulumi.String("string"),
    																	Server:    pulumi.String("string"),
    																},
    																IgnoreDifferences: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecIgnoreDifferenceArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecIgnoreDifferenceArgs{
    																		Group: pulumi.String("string"),
    																		JqPathExpressions: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		JsonPointers: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		Kind: pulumi.String("string"),
    																		ManagedFieldsManagers: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		Name:      pulumi.String("string"),
    																		Namespace: pulumi.String("string"),
    																	},
    																},
    																Infos: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecInfoArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecInfoArgs{
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    																Project:              pulumi.String("string"),
    																RevisionHistoryLimit: pulumi.Int(0),
    																Sources: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSourceArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSourceArgs{
    																		Chart: pulumi.String("string"),
    																		Directory: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryArgs{
    																			Exclude: pulumi.String("string"),
    																			Include: pulumi.String("string"),
    																			Jsonnet: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetArgs{
    																				ExtVars: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetExtVarArray{
    																					&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetExtVarArgs{
    																						Code:  pulumi.Bool(false),
    																						Name:  pulumi.String("string"),
    																						Value: pulumi.String("string"),
    																					},
    																				},
    																				Libs: pulumi.StringArray{
    																					pulumi.String("string"),
    																				},
    																				Tlas: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetTlaArray{
    																					&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetTlaArgs{
    																						Code:  pulumi.Bool(false),
    																						Name:  pulumi.String("string"),
    																						Value: pulumi.String("string"),
    																					},
    																				},
    																			},
    																			Recurse: pulumi.Bool(false),
    																		},
    																		Helm: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmArgs{
    																			FileParameters: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmFileParameterArray{
    																				&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmFileParameterArgs{
    																					Name: pulumi.String("string"),
    																					Path: pulumi.String("string"),
    																				},
    																			},
    																			IgnoreMissingValueFiles: pulumi.Bool(false),
    																			Parameters: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmParameterArray{
    																				&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmParameterArgs{
    																					ForceString: pulumi.Bool(false),
    																					Name:        pulumi.String("string"),
    																					Value:       pulumi.String("string"),
    																				},
    																			},
    																			PassCredentials: pulumi.Bool(false),
    																			ReleaseName:     pulumi.String("string"),
    																			SkipCrds:        pulumi.Bool(false),
    																			ValueFiles: pulumi.StringArray{
    																				pulumi.String("string"),
    																			},
    																			Values:  pulumi.String("string"),
    																			Version: pulumi.String("string"),
    																		},
    																		Kustomize: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizeArgs{
    																			CommonAnnotations: pulumi.StringMap{
    																				"string": pulumi.String("string"),
    																			},
    																			CommonLabels: pulumi.StringMap{
    																				"string": pulumi.String("string"),
    																			},
    																			Images: pulumi.StringArray{
    																				pulumi.String("string"),
    																			},
    																			NamePrefix: pulumi.String("string"),
    																			NameSuffix: pulumi.String("string"),
    																			Patches: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizePatchArray{
    																				&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizePatchArgs{
    																					Target: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizePatchTargetArgs{
    																						AnnotationSelector: pulumi.String("string"),
    																						Group:              pulumi.String("string"),
    																						Kind:               pulumi.String("string"),
    																						LabelSelector:      pulumi.String("string"),
    																						Name:               pulumi.String("string"),
    																						Namespace:          pulumi.String("string"),
    																						Version:            pulumi.String("string"),
    																					},
    																					Options: pulumi.BoolMap{
    																						"string": pulumi.Bool(false),
    																					},
    																					Patch: pulumi.String("string"),
    																					Path:  pulumi.String("string"),
    																				},
    																			},
    																			Version: pulumi.String("string"),
    																		},
    																		Path: pulumi.String("string"),
    																		Plugin: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSourcePluginArgs{
    																			Envs: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSourcePluginEnvArray{
    																				&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSourcePluginEnvArgs{
    																					Name:  pulumi.String("string"),
    																					Value: pulumi.String("string"),
    																				},
    																			},
    																			Name: pulumi.String("string"),
    																		},
    																		Ref:            pulumi.String("string"),
    																		RepoUrl:        pulumi.String("string"),
    																		TargetRevision: pulumi.String("string"),
    																	},
    																},
    																SyncPolicy: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyArgs{
    																	Automated: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyAutomatedArgs{
    																		AllowEmpty: pulumi.Bool(false),
    																		Prune:      pulumi.Bool(false),
    																		SelfHeal:   pulumi.Bool(false),
    																	},
    																	ManagedNamespaceMetadata: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyManagedNamespaceMetadataArgs{
    																		Annotations: pulumi.StringMap{
    																			"string": pulumi.String("string"),
    																		},
    																		Labels: pulumi.StringMap{
    																			"string": pulumi.String("string"),
    																		},
    																	},
    																	Retry: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyRetryArgs{
    																		Backoff: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyRetryBackoffArgs{
    																			Duration:    pulumi.String("string"),
    																			Factor:      pulumi.String("string"),
    																			MaxDuration: pulumi.String("string"),
    																		},
    																		Limit: pulumi.String("string"),
    																	},
    																	SyncOptions: pulumi.StringArray{
    																		pulumi.String("string"),
    																	},
    																},
    															},
    														},
    													},
    												},
    												Selector: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorSelectorArgs{
    													MatchExpressions: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorSelectorMatchExpressionArray{
    														&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorSelectorMatchExpressionArgs{
    															Key:      pulumi.String("string"),
    															Operator: pulumi.String("string"),
    															Values: pulumi.StringArray{
    																pulumi.String("string"),
    															},
    														},
    													},
    													MatchLabels: pulumi.StringMap{
    														"string": pulumi.String("string"),
    													},
    												},
    											},
    										},
    										Template: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateArgs{
    											Metadata: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateMetadataArgs{
    												Annotations: pulumi.StringMap{
    													"string": pulumi.String("string"),
    												},
    												Finalizers: pulumi.StringArray{
    													pulumi.String("string"),
    												},
    												Labels: pulumi.StringMap{
    													"string": pulumi.String("string"),
    												},
    												Name:      pulumi.String("string"),
    												Namespace: pulumi.String("string"),
    											},
    											Spec: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecArgs{
    												Destination: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecDestinationArgs{
    													Name:      pulumi.String("string"),
    													Namespace: pulumi.String("string"),
    													Server:    pulumi.String("string"),
    												},
    												IgnoreDifferences: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecIgnoreDifferenceArray{
    													&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecIgnoreDifferenceArgs{
    														Group: pulumi.String("string"),
    														JqPathExpressions: pulumi.StringArray{
    															pulumi.String("string"),
    														},
    														JsonPointers: pulumi.StringArray{
    															pulumi.String("string"),
    														},
    														Kind: pulumi.String("string"),
    														ManagedFieldsManagers: pulumi.StringArray{
    															pulumi.String("string"),
    														},
    														Name:      pulumi.String("string"),
    														Namespace: pulumi.String("string"),
    													},
    												},
    												Infos: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecInfoArray{
    													&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecInfoArgs{
    														Name:  pulumi.String("string"),
    														Value: pulumi.String("string"),
    													},
    												},
    												Project:              pulumi.String("string"),
    												RevisionHistoryLimit: pulumi.Int(0),
    												Sources: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSourceArray{
    													&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSourceArgs{
    														Chart: pulumi.String("string"),
    														Directory: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSourceDirectoryArgs{
    															Exclude: pulumi.String("string"),
    															Include: pulumi.String("string"),
    															Jsonnet: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSourceDirectoryJsonnetArgs{
    																ExtVars: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSourceDirectoryJsonnetExtVarArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSourceDirectoryJsonnetExtVarArgs{
    																		Code:  pulumi.Bool(false),
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    																Libs: pulumi.StringArray{
    																	pulumi.String("string"),
    																},
    																Tlas: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSourceDirectoryJsonnetTlaArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSourceDirectoryJsonnetTlaArgs{
    																		Code:  pulumi.Bool(false),
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    															},
    															Recurse: pulumi.Bool(false),
    														},
    														Helm: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSourceHelmArgs{
    															FileParameters: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSourceHelmFileParameterArray{
    																&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSourceHelmFileParameterArgs{
    																	Name: pulumi.String("string"),
    																	Path: pulumi.String("string"),
    																},
    															},
    															IgnoreMissingValueFiles: pulumi.Bool(false),
    															Parameters: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSourceHelmParameterArray{
    																&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSourceHelmParameterArgs{
    																	ForceString: pulumi.Bool(false),
    																	Name:        pulumi.String("string"),
    																	Value:       pulumi.String("string"),
    																},
    															},
    															PassCredentials: pulumi.Bool(false),
    															ReleaseName:     pulumi.String("string"),
    															SkipCrds:        pulumi.Bool(false),
    															ValueFiles: pulumi.StringArray{
    																pulumi.String("string"),
    															},
    															Values:  pulumi.String("string"),
    															Version: pulumi.String("string"),
    														},
    														Kustomize: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSourceKustomizeArgs{
    															CommonAnnotations: pulumi.StringMap{
    																"string": pulumi.String("string"),
    															},
    															CommonLabels: pulumi.StringMap{
    																"string": pulumi.String("string"),
    															},
    															Images: pulumi.StringArray{
    																pulumi.String("string"),
    															},
    															NamePrefix: pulumi.String("string"),
    															NameSuffix: pulumi.String("string"),
    															Patches: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSourceKustomizePatchArray{
    																&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSourceKustomizePatchArgs{
    																	Target: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSourceKustomizePatchTargetArgs{
    																		AnnotationSelector: pulumi.String("string"),
    																		Group:              pulumi.String("string"),
    																		Kind:               pulumi.String("string"),
    																		LabelSelector:      pulumi.String("string"),
    																		Name:               pulumi.String("string"),
    																		Namespace:          pulumi.String("string"),
    																		Version:            pulumi.String("string"),
    																	},
    																	Options: pulumi.BoolMap{
    																		"string": pulumi.Bool(false),
    																	},
    																	Patch: pulumi.String("string"),
    																	Path:  pulumi.String("string"),
    																},
    															},
    															Version: pulumi.String("string"),
    														},
    														Path: pulumi.String("string"),
    														Plugin: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSourcePluginArgs{
    															Envs: argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSourcePluginEnvArray{
    																&argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSourcePluginEnvArgs{
    																	Name:  pulumi.String("string"),
    																	Value: pulumi.String("string"),
    																},
    															},
    															Name: pulumi.String("string"),
    														},
    														Ref:            pulumi.String("string"),
    														RepoUrl:        pulumi.String("string"),
    														TargetRevision: pulumi.String("string"),
    													},
    												},
    												SyncPolicy: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSyncPolicyArgs{
    													Automated: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSyncPolicyAutomatedArgs{
    														AllowEmpty: pulumi.Bool(false),
    														Prune:      pulumi.Bool(false),
    														SelfHeal:   pulumi.Bool(false),
    													},
    													ManagedNamespaceMetadata: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSyncPolicyManagedNamespaceMetadataArgs{
    														Annotations: pulumi.StringMap{
    															"string": pulumi.String("string"),
    														},
    														Labels: pulumi.StringMap{
    															"string": pulumi.String("string"),
    														},
    													},
    													Retry: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSyncPolicyRetryArgs{
    														Backoff: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSyncPolicyRetryBackoffArgs{
    															Duration:    pulumi.String("string"),
    															Factor:      pulumi.String("string"),
    															MaxDuration: pulumi.String("string"),
    														},
    														Limit: pulumi.String("string"),
    													},
    													SyncOptions: pulumi.StringArray{
    														pulumi.String("string"),
    													},
    												},
    											},
    										},
    									},
    								},
    								Merges: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeArray{
    									&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeArgs{
    										Generators: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorArray{
    											&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorArgs{
    												ClusterDecisionResources: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceArray{
    													&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceArgs{
    														ConfigMapRef: pulumi.String("string"),
    														LabelSelector: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceLabelSelectorArgs{
    															MatchExpressions: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceLabelSelectorMatchExpressionArray{
    																&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceLabelSelectorMatchExpressionArgs{
    																	Key:      pulumi.String("string"),
    																	Operator: pulumi.String("string"),
    																	Values: pulumi.StringArray{
    																		pulumi.String("string"),
    																	},
    																},
    															},
    															MatchLabels: pulumi.StringMap{
    																"string": pulumi.String("string"),
    															},
    														},
    														Name:                pulumi.String("string"),
    														RequeueAfterSeconds: pulumi.String("string"),
    														Template: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateArgs{
    															Metadata: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateMetadataArgs{
    																Annotations: pulumi.StringMap{
    																	"string": pulumi.String("string"),
    																},
    																Finalizers: pulumi.StringArray{
    																	pulumi.String("string"),
    																},
    																Labels: pulumi.StringMap{
    																	"string": pulumi.String("string"),
    																},
    																Name:      pulumi.String("string"),
    																Namespace: pulumi.String("string"),
    															},
    															Spec: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecArgs{
    																Destination: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecDestinationArgs{
    																	Name:      pulumi.String("string"),
    																	Namespace: pulumi.String("string"),
    																	Server:    pulumi.String("string"),
    																},
    																IgnoreDifferences: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecIgnoreDifferenceArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecIgnoreDifferenceArgs{
    																		Group: pulumi.String("string"),
    																		JqPathExpressions: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		JsonPointers: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		Kind: pulumi.String("string"),
    																		ManagedFieldsManagers: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		Name:      pulumi.String("string"),
    																		Namespace: pulumi.String("string"),
    																	},
    																},
    																Infos: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecInfoArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecInfoArgs{
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    																Project:              pulumi.String("string"),
    																RevisionHistoryLimit: pulumi.Int(0),
    																Sources: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceArgs{
    																		Chart: pulumi.String("string"),
    																		Directory: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryArgs{
    																			Exclude: pulumi.String("string"),
    																			Include: pulumi.String("string"),
    																			Jsonnet: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetArgs{
    																				ExtVars: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetExtVarArray{
    																					&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetExtVarArgs{
    																						Code:  pulumi.Bool(false),
    																						Name:  pulumi.String("string"),
    																						Value: pulumi.String("string"),
    																					},
    																				},
    																				Libs: pulumi.StringArray{
    																					pulumi.String("string"),
    																				},
    																				Tlas: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetTlaArray{
    																					&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetTlaArgs{
    																						Code:  pulumi.Bool(false),
    																						Name:  pulumi.String("string"),
    																						Value: pulumi.String("string"),
    																					},
    																				},
    																			},
    																			Recurse: pulumi.Bool(false),
    																		},
    																		Helm: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmArgs{
    																			FileParameters: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameterArray{
    																				&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameterArgs{
    																					Name: pulumi.String("string"),
    																					Path: pulumi.String("string"),
    																				},
    																			},
    																			IgnoreMissingValueFiles: pulumi.Bool(false),
    																			Parameters: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameterArray{
    																				&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameterArgs{
    																					ForceString: pulumi.Bool(false),
    																					Name:        pulumi.String("string"),
    																					Value:       pulumi.String("string"),
    																				},
    																			},
    																			PassCredentials: pulumi.Bool(false),
    																			ReleaseName:     pulumi.String("string"),
    																			SkipCrds:        pulumi.Bool(false),
    																			ValueFiles: pulumi.StringArray{
    																				pulumi.String("string"),
    																			},
    																			Values:  pulumi.String("string"),
    																			Version: pulumi.String("string"),
    																		},
    																		Kustomize: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizeArgs{
    																			CommonAnnotations: pulumi.StringMap{
    																				"string": pulumi.String("string"),
    																			},
    																			CommonLabels: pulumi.StringMap{
    																				"string": pulumi.String("string"),
    																			},
    																			Images: pulumi.StringArray{
    																				pulumi.String("string"),
    																			},
    																			NamePrefix: pulumi.String("string"),
    																			NameSuffix: pulumi.String("string"),
    																			Patches: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchArray{
    																				&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchArgs{
    																					Target: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTargetArgs{
    																						AnnotationSelector: pulumi.String("string"),
    																						Group:              pulumi.String("string"),
    																						Kind:               pulumi.String("string"),
    																						LabelSelector:      pulumi.String("string"),
    																						Name:               pulumi.String("string"),
    																						Namespace:          pulumi.String("string"),
    																						Version:            pulumi.String("string"),
    																					},
    																					Options: pulumi.BoolMap{
    																						"string": pulumi.Bool(false),
    																					},
    																					Patch: pulumi.String("string"),
    																					Path:  pulumi.String("string"),
    																				},
    																			},
    																			Version: pulumi.String("string"),
    																		},
    																		Path: pulumi.String("string"),
    																		Plugin: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourcePluginArgs{
    																			Envs: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnvArray{
    																				&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnvArgs{
    																					Name:  pulumi.String("string"),
    																					Value: pulumi.String("string"),
    																				},
    																			},
    																			Name: pulumi.String("string"),
    																		},
    																		Ref:            pulumi.String("string"),
    																		RepoUrl:        pulumi.String("string"),
    																		TargetRevision: pulumi.String("string"),
    																	},
    																},
    																SyncPolicy: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyArgs{
    																	Automated: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomatedArgs{
    																		AllowEmpty: pulumi.Bool(false),
    																		Prune:      pulumi.Bool(false),
    																		SelfHeal:   pulumi.Bool(false),
    																	},
    																	ManagedNamespaceMetadata: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadataArgs{
    																		Annotations: pulumi.StringMap{
    																			"string": pulumi.String("string"),
    																		},
    																		Labels: pulumi.StringMap{
    																			"string": pulumi.String("string"),
    																		},
    																	},
    																	Retry: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryArgs{
    																		Backoff: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoffArgs{
    																			Duration:    pulumi.String("string"),
    																			Factor:      pulumi.String("string"),
    																			MaxDuration: pulumi.String("string"),
    																		},
    																		Limit: pulumi.String("string"),
    																	},
    																	SyncOptions: pulumi.StringArray{
    																		pulumi.String("string"),
    																	},
    																},
    															},
    														},
    														Values: pulumi.StringMap{
    															"string": pulumi.String("string"),
    														},
    													},
    												},
    												Clusters: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterArray{
    													&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterArgs{
    														Enabled: pulumi.Bool(false),
    														Selector: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterSelectorArgs{
    															MatchExpressions: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterSelectorMatchExpressionArray{
    																&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterSelectorMatchExpressionArgs{
    																	Key:      pulumi.String("string"),
    																	Operator: pulumi.String("string"),
    																	Values: pulumi.StringArray{
    																		pulumi.String("string"),
    																	},
    																},
    															},
    															MatchLabels: pulumi.StringMap{
    																"string": pulumi.String("string"),
    															},
    														},
    														Template: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateArgs{
    															Metadata: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateMetadataArgs{
    																Annotations: pulumi.StringMap{
    																	"string": pulumi.String("string"),
    																},
    																Finalizers: pulumi.StringArray{
    																	pulumi.String("string"),
    																},
    																Labels: pulumi.StringMap{
    																	"string": pulumi.String("string"),
    																},
    																Name:      pulumi.String("string"),
    																Namespace: pulumi.String("string"),
    															},
    															Spec: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecArgs{
    																Destination: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecDestinationArgs{
    																	Name:      pulumi.String("string"),
    																	Namespace: pulumi.String("string"),
    																	Server:    pulumi.String("string"),
    																},
    																IgnoreDifferences: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecIgnoreDifferenceArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecIgnoreDifferenceArgs{
    																		Group: pulumi.String("string"),
    																		JqPathExpressions: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		JsonPointers: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		Kind: pulumi.String("string"),
    																		ManagedFieldsManagers: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		Name:      pulumi.String("string"),
    																		Namespace: pulumi.String("string"),
    																	},
    																},
    																Infos: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecInfoArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecInfoArgs{
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    																Project:              pulumi.String("string"),
    																RevisionHistoryLimit: pulumi.Int(0),
    																Sources: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSourceArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSourceArgs{
    																		Chart: pulumi.String("string"),
    																		Directory: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryArgs{
    																			Exclude: pulumi.String("string"),
    																			Include: pulumi.String("string"),
    																			Jsonnet: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnetArgs{
    																				ExtVars: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnetExtVarArray{
    																					&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnetExtVarArgs{
    																						Code:  pulumi.Bool(false),
    																						Name:  pulumi.String("string"),
    																						Value: pulumi.String("string"),
    																					},
    																				},
    																				Libs: pulumi.StringArray{
    																					pulumi.String("string"),
    																				},
    																				Tlas: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnetTlaArray{
    																					&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnetTlaArgs{
    																						Code:  pulumi.Bool(false),
    																						Name:  pulumi.String("string"),
    																						Value: pulumi.String("string"),
    																					},
    																				},
    																			},
    																			Recurse: pulumi.Bool(false),
    																		},
    																		Helm: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSourceHelmArgs{
    																			FileParameters: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSourceHelmFileParameterArray{
    																				&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSourceHelmFileParameterArgs{
    																					Name: pulumi.String("string"),
    																					Path: pulumi.String("string"),
    																				},
    																			},
    																			IgnoreMissingValueFiles: pulumi.Bool(false),
    																			Parameters: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSourceHelmParameterArray{
    																				&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSourceHelmParameterArgs{
    																					ForceString: pulumi.Bool(false),
    																					Name:        pulumi.String("string"),
    																					Value:       pulumi.String("string"),
    																				},
    																			},
    																			PassCredentials: pulumi.Bool(false),
    																			ReleaseName:     pulumi.String("string"),
    																			SkipCrds:        pulumi.Bool(false),
    																			ValueFiles: pulumi.StringArray{
    																				pulumi.String("string"),
    																			},
    																			Values:  pulumi.String("string"),
    																			Version: pulumi.String("string"),
    																		},
    																		Kustomize: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizeArgs{
    																			CommonAnnotations: pulumi.StringMap{
    																				"string": pulumi.String("string"),
    																			},
    																			CommonLabels: pulumi.StringMap{
    																				"string": pulumi.String("string"),
    																			},
    																			Images: pulumi.StringArray{
    																				pulumi.String("string"),
    																			},
    																			NamePrefix: pulumi.String("string"),
    																			NameSuffix: pulumi.String("string"),
    																			Patches: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizePatchArray{
    																				&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizePatchArgs{
    																					Target: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizePatchTargetArgs{
    																						AnnotationSelector: pulumi.String("string"),
    																						Group:              pulumi.String("string"),
    																						Kind:               pulumi.String("string"),
    																						LabelSelector:      pulumi.String("string"),
    																						Name:               pulumi.String("string"),
    																						Namespace:          pulumi.String("string"),
    																						Version:            pulumi.String("string"),
    																					},
    																					Options: pulumi.BoolMap{
    																						"string": pulumi.Bool(false),
    																					},
    																					Patch: pulumi.String("string"),
    																					Path:  pulumi.String("string"),
    																				},
    																			},
    																			Version: pulumi.String("string"),
    																		},
    																		Path: pulumi.String("string"),
    																		Plugin: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSourcePluginArgs{
    																			Envs: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSourcePluginEnvArray{
    																				&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSourcePluginEnvArgs{
    																					Name:  pulumi.String("string"),
    																					Value: pulumi.String("string"),
    																				},
    																			},
    																			Name: pulumi.String("string"),
    																		},
    																		Ref:            pulumi.String("string"),
    																		RepoUrl:        pulumi.String("string"),
    																		TargetRevision: pulumi.String("string"),
    																	},
    																},
    																SyncPolicy: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyArgs{
    																	Automated: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyAutomatedArgs{
    																		AllowEmpty: pulumi.Bool(false),
    																		Prune:      pulumi.Bool(false),
    																		SelfHeal:   pulumi.Bool(false),
    																	},
    																	ManagedNamespaceMetadata: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadataArgs{
    																		Annotations: pulumi.StringMap{
    																			"string": pulumi.String("string"),
    																		},
    																		Labels: pulumi.StringMap{
    																			"string": pulumi.String("string"),
    																		},
    																	},
    																	Retry: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyRetryArgs{
    																		Backoff: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyRetryBackoffArgs{
    																			Duration:    pulumi.String("string"),
    																			Factor:      pulumi.String("string"),
    																			MaxDuration: pulumi.String("string"),
    																		},
    																		Limit: pulumi.String("string"),
    																	},
    																	SyncOptions: pulumi.StringArray{
    																		pulumi.String("string"),
    																	},
    																},
    															},
    														},
    														Values: pulumi.StringMap{
    															"string": pulumi.String("string"),
    														},
    													},
    												},
    												Gits: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitArray{
    													&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitArgs{
    														RepoUrl: pulumi.String("string"),
    														Directories: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitDirectoryArray{
    															&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitDirectoryArgs{
    																Path:    pulumi.String("string"),
    																Exclude: pulumi.Bool(false),
    															},
    														},
    														Files: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitFileArray{
    															&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitFileArgs{
    																Path: pulumi.String("string"),
    															},
    														},
    														PathParamPrefix: pulumi.String("string"),
    														Revision:        pulumi.String("string"),
    														Template: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateArgs{
    															Metadata: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateMetadataArgs{
    																Annotations: pulumi.StringMap{
    																	"string": pulumi.String("string"),
    																},
    																Finalizers: pulumi.StringArray{
    																	pulumi.String("string"),
    																},
    																Labels: pulumi.StringMap{
    																	"string": pulumi.String("string"),
    																},
    																Name:      pulumi.String("string"),
    																Namespace: pulumi.String("string"),
    															},
    															Spec: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecArgs{
    																Destination: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecDestinationArgs{
    																	Name:      pulumi.String("string"),
    																	Namespace: pulumi.String("string"),
    																	Server:    pulumi.String("string"),
    																},
    																IgnoreDifferences: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecIgnoreDifferenceArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecIgnoreDifferenceArgs{
    																		Group: pulumi.String("string"),
    																		JqPathExpressions: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		JsonPointers: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		Kind: pulumi.String("string"),
    																		ManagedFieldsManagers: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		Name:      pulumi.String("string"),
    																		Namespace: pulumi.String("string"),
    																	},
    																},
    																Infos: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecInfoArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecInfoArgs{
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    																Project:              pulumi.String("string"),
    																RevisionHistoryLimit: pulumi.Int(0),
    																Sources: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSourceArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSourceArgs{
    																		Chart: pulumi.String("string"),
    																		Directory: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryArgs{
    																			Exclude: pulumi.String("string"),
    																			Include: pulumi.String("string"),
    																			Jsonnet: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnetArgs{
    																				ExtVars: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnetExtVarArray{
    																					&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnetExtVarArgs{
    																						Code:  pulumi.Bool(false),
    																						Name:  pulumi.String("string"),
    																						Value: pulumi.String("string"),
    																					},
    																				},
    																				Libs: pulumi.StringArray{
    																					pulumi.String("string"),
    																				},
    																				Tlas: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnetTlaArray{
    																					&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnetTlaArgs{
    																						Code:  pulumi.Bool(false),
    																						Name:  pulumi.String("string"),
    																						Value: pulumi.String("string"),
    																					},
    																				},
    																			},
    																			Recurse: pulumi.Bool(false),
    																		},
    																		Helm: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSourceHelmArgs{
    																			FileParameters: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSourceHelmFileParameterArray{
    																				&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSourceHelmFileParameterArgs{
    																					Name: pulumi.String("string"),
    																					Path: pulumi.String("string"),
    																				},
    																			},
    																			IgnoreMissingValueFiles: pulumi.Bool(false),
    																			Parameters: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSourceHelmParameterArray{
    																				&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSourceHelmParameterArgs{
    																					ForceString: pulumi.Bool(false),
    																					Name:        pulumi.String("string"),
    																					Value:       pulumi.String("string"),
    																				},
    																			},
    																			PassCredentials: pulumi.Bool(false),
    																			ReleaseName:     pulumi.String("string"),
    																			SkipCrds:        pulumi.Bool(false),
    																			ValueFiles: pulumi.StringArray{
    																				pulumi.String("string"),
    																			},
    																			Values:  pulumi.String("string"),
    																			Version: pulumi.String("string"),
    																		},
    																		Kustomize: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSourceKustomizeArgs{
    																			CommonAnnotations: pulumi.StringMap{
    																				"string": pulumi.String("string"),
    																			},
    																			CommonLabels: pulumi.StringMap{
    																				"string": pulumi.String("string"),
    																			},
    																			Images: pulumi.StringArray{
    																				pulumi.String("string"),
    																			},
    																			NamePrefix: pulumi.String("string"),
    																			NameSuffix: pulumi.String("string"),
    																			Patches: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSourceKustomizePatchArray{
    																				&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSourceKustomizePatchArgs{
    																					Target: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSourceKustomizePatchTargetArgs{
    																						AnnotationSelector: pulumi.String("string"),
    																						Group:              pulumi.String("string"),
    																						Kind:               pulumi.String("string"),
    																						LabelSelector:      pulumi.String("string"),
    																						Name:               pulumi.String("string"),
    																						Namespace:          pulumi.String("string"),
    																						Version:            pulumi.String("string"),
    																					},
    																					Options: pulumi.BoolMap{
    																						"string": pulumi.Bool(false),
    																					},
    																					Patch: pulumi.String("string"),
    																					Path:  pulumi.String("string"),
    																				},
    																			},
    																			Version: pulumi.String("string"),
    																		},
    																		Path: pulumi.String("string"),
    																		Plugin: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSourcePluginArgs{
    																			Envs: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSourcePluginEnvArray{
    																				&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSourcePluginEnvArgs{
    																					Name:  pulumi.String("string"),
    																					Value: pulumi.String("string"),
    																				},
    																			},
    																			Name: pulumi.String("string"),
    																		},
    																		Ref:            pulumi.String("string"),
    																		RepoUrl:        pulumi.String("string"),
    																		TargetRevision: pulumi.String("string"),
    																	},
    																},
    																SyncPolicy: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSyncPolicyArgs{
    																	Automated: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSyncPolicyAutomatedArgs{
    																		AllowEmpty: pulumi.Bool(false),
    																		Prune:      pulumi.Bool(false),
    																		SelfHeal:   pulumi.Bool(false),
    																	},
    																	ManagedNamespaceMetadata: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadataArgs{
    																		Annotations: pulumi.StringMap{
    																			"string": pulumi.String("string"),
    																		},
    																		Labels: pulumi.StringMap{
    																			"string": pulumi.String("string"),
    																		},
    																	},
    																	Retry: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSyncPolicyRetryArgs{
    																		Backoff: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSyncPolicyRetryBackoffArgs{
    																			Duration:    pulumi.String("string"),
    																			Factor:      pulumi.String("string"),
    																			MaxDuration: pulumi.String("string"),
    																		},
    																		Limit: pulumi.String("string"),
    																	},
    																	SyncOptions: pulumi.StringArray{
    																		pulumi.String("string"),
    																	},
    																},
    															},
    														},
    														Values: pulumi.StringMap{
    															"string": pulumi.String("string"),
    														},
    													},
    												},
    												Lists: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListArray{
    													&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListArgs{
    														Elements: pulumi.StringMapArray{
    															pulumi.StringMap{
    																"string": pulumi.String("string"),
    															},
    														},
    														Template: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateArgs{
    															Metadata: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateMetadataArgs{
    																Annotations: pulumi.StringMap{
    																	"string": pulumi.String("string"),
    																},
    																Finalizers: pulumi.StringArray{
    																	pulumi.String("string"),
    																},
    																Labels: pulumi.StringMap{
    																	"string": pulumi.String("string"),
    																},
    																Name:      pulumi.String("string"),
    																Namespace: pulumi.String("string"),
    															},
    															Spec: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecArgs{
    																Destination: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecDestinationArgs{
    																	Name:      pulumi.String("string"),
    																	Namespace: pulumi.String("string"),
    																	Server:    pulumi.String("string"),
    																},
    																IgnoreDifferences: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecIgnoreDifferenceArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecIgnoreDifferenceArgs{
    																		Group: pulumi.String("string"),
    																		JqPathExpressions: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		JsonPointers: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		Kind: pulumi.String("string"),
    																		ManagedFieldsManagers: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		Name:      pulumi.String("string"),
    																		Namespace: pulumi.String("string"),
    																	},
    																},
    																Infos: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecInfoArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecInfoArgs{
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    																Project:              pulumi.String("string"),
    																RevisionHistoryLimit: pulumi.Int(0),
    																Sources: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSourceArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSourceArgs{
    																		Chart: pulumi.String("string"),
    																		Directory: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSourceDirectoryArgs{
    																			Exclude: pulumi.String("string"),
    																			Include: pulumi.String("string"),
    																			Jsonnet: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnetArgs{
    																				ExtVars: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnetExtVarArray{
    																					&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnetExtVarArgs{
    																						Code:  pulumi.Bool(false),
    																						Name:  pulumi.String("string"),
    																						Value: pulumi.String("string"),
    																					},
    																				},
    																				Libs: pulumi.StringArray{
    																					pulumi.String("string"),
    																				},
    																				Tlas: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnetTlaArray{
    																					&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnetTlaArgs{
    																						Code:  pulumi.Bool(false),
    																						Name:  pulumi.String("string"),
    																						Value: pulumi.String("string"),
    																					},
    																				},
    																			},
    																			Recurse: pulumi.Bool(false),
    																		},
    																		Helm: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSourceHelmArgs{
    																			FileParameters: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSourceHelmFileParameterArray{
    																				&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSourceHelmFileParameterArgs{
    																					Name: pulumi.String("string"),
    																					Path: pulumi.String("string"),
    																				},
    																			},
    																			IgnoreMissingValueFiles: pulumi.Bool(false),
    																			Parameters: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSourceHelmParameterArray{
    																				&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSourceHelmParameterArgs{
    																					ForceString: pulumi.Bool(false),
    																					Name:        pulumi.String("string"),
    																					Value:       pulumi.String("string"),
    																				},
    																			},
    																			PassCredentials: pulumi.Bool(false),
    																			ReleaseName:     pulumi.String("string"),
    																			SkipCrds:        pulumi.Bool(false),
    																			ValueFiles: pulumi.StringArray{
    																				pulumi.String("string"),
    																			},
    																			Values:  pulumi.String("string"),
    																			Version: pulumi.String("string"),
    																		},
    																		Kustomize: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSourceKustomizeArgs{
    																			CommonAnnotations: pulumi.StringMap{
    																				"string": pulumi.String("string"),
    																			},
    																			CommonLabels: pulumi.StringMap{
    																				"string": pulumi.String("string"),
    																			},
    																			Images: pulumi.StringArray{
    																				pulumi.String("string"),
    																			},
    																			NamePrefix: pulumi.String("string"),
    																			NameSuffix: pulumi.String("string"),
    																			Patches: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSourceKustomizePatchArray{
    																				&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSourceKustomizePatchArgs{
    																					Target: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSourceKustomizePatchTargetArgs{
    																						AnnotationSelector: pulumi.String("string"),
    																						Group:              pulumi.String("string"),
    																						Kind:               pulumi.String("string"),
    																						LabelSelector:      pulumi.String("string"),
    																						Name:               pulumi.String("string"),
    																						Namespace:          pulumi.String("string"),
    																						Version:            pulumi.String("string"),
    																					},
    																					Options: pulumi.BoolMap{
    																						"string": pulumi.Bool(false),
    																					},
    																					Patch: pulumi.String("string"),
    																					Path:  pulumi.String("string"),
    																				},
    																			},
    																			Version: pulumi.String("string"),
    																		},
    																		Path: pulumi.String("string"),
    																		Plugin: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSourcePluginArgs{
    																			Envs: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSourcePluginEnvArray{
    																				&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSourcePluginEnvArgs{
    																					Name:  pulumi.String("string"),
    																					Value: pulumi.String("string"),
    																				},
    																			},
    																			Name: pulumi.String("string"),
    																		},
    																		Ref:            pulumi.String("string"),
    																		RepoUrl:        pulumi.String("string"),
    																		TargetRevision: pulumi.String("string"),
    																	},
    																},
    																SyncPolicy: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSyncPolicyArgs{
    																	Automated: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSyncPolicyAutomatedArgs{
    																		AllowEmpty: pulumi.Bool(false),
    																		Prune:      pulumi.Bool(false),
    																		SelfHeal:   pulumi.Bool(false),
    																	},
    																	ManagedNamespaceMetadata: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadataArgs{
    																		Annotations: pulumi.StringMap{
    																			"string": pulumi.String("string"),
    																		},
    																		Labels: pulumi.StringMap{
    																			"string": pulumi.String("string"),
    																		},
    																	},
    																	Retry: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSyncPolicyRetryArgs{
    																		Backoff: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSyncPolicyRetryBackoffArgs{
    																			Duration:    pulumi.String("string"),
    																			Factor:      pulumi.String("string"),
    																			MaxDuration: pulumi.String("string"),
    																		},
    																		Limit: pulumi.String("string"),
    																	},
    																	SyncOptions: pulumi.StringArray{
    																		pulumi.String("string"),
    																	},
    																},
    															},
    														},
    													},
    												},
    												PullRequests: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestArray{
    													&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestArgs{
    														BitbucketServer: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestBitbucketServerArgs{
    															Api:     pulumi.String("string"),
    															Project: pulumi.String("string"),
    															Repo:    pulumi.String("string"),
    															BasicAuth: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestBitbucketServerBasicAuthArgs{
    																PasswordRef: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestBitbucketServerBasicAuthPasswordRefArgs{
    																	Key:        pulumi.String("string"),
    																	SecretName: pulumi.String("string"),
    																},
    																Username: pulumi.String("string"),
    															},
    														},
    														Filters: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestFilterArray{
    															&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestFilterArgs{
    																BranchMatch: pulumi.String("string"),
    															},
    														},
    														Gitea: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestGiteaArgs{
    															Api:      pulumi.String("string"),
    															Owner:    pulumi.String("string"),
    															Repo:     pulumi.String("string"),
    															Insecure: pulumi.Bool(false),
    															TokenRef: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestGiteaTokenRefArgs{
    																Key:        pulumi.String("string"),
    																SecretName: pulumi.String("string"),
    															},
    														},
    														Github: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestGithubArgs{
    															Owner:         pulumi.String("string"),
    															Repo:          pulumi.String("string"),
    															Api:           pulumi.String("string"),
    															AppSecretName: pulumi.String("string"),
    															Labels: pulumi.StringArray{
    																pulumi.String("string"),
    															},
    															TokenRef: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestGithubTokenRefArgs{
    																Key:        pulumi.String("string"),
    																SecretName: pulumi.String("string"),
    															},
    														},
    														Gitlab: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestGitlabArgs{
    															Project: pulumi.String("string"),
    															Api:     pulumi.String("string"),
    															Labels: pulumi.StringArray{
    																pulumi.String("string"),
    															},
    															PullRequestState: pulumi.String("string"),
    															TokenRef: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestGitlabTokenRefArgs{
    																Key:        pulumi.String("string"),
    																SecretName: pulumi.String("string"),
    															},
    														},
    														RequeueAfterSeconds: pulumi.String("string"),
    														Template: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateArgs{
    															Metadata: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateMetadataArgs{
    																Annotations: pulumi.StringMap{
    																	"string": pulumi.String("string"),
    																},
    																Finalizers: pulumi.StringArray{
    																	pulumi.String("string"),
    																},
    																Labels: pulumi.StringMap{
    																	"string": pulumi.String("string"),
    																},
    																Name:      pulumi.String("string"),
    																Namespace: pulumi.String("string"),
    															},
    															Spec: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecArgs{
    																Destination: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecDestinationArgs{
    																	Name:      pulumi.String("string"),
    																	Namespace: pulumi.String("string"),
    																	Server:    pulumi.String("string"),
    																},
    																IgnoreDifferences: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecIgnoreDifferenceArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecIgnoreDifferenceArgs{
    																		Group: pulumi.String("string"),
    																		JqPathExpressions: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		JsonPointers: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		Kind: pulumi.String("string"),
    																		ManagedFieldsManagers: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		Name:      pulumi.String("string"),
    																		Namespace: pulumi.String("string"),
    																	},
    																},
    																Infos: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecInfoArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecInfoArgs{
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    																Project:              pulumi.String("string"),
    																RevisionHistoryLimit: pulumi.Int(0),
    																Sources: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSourceArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSourceArgs{
    																		Chart: pulumi.String("string"),
    																		Directory: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryArgs{
    																			Exclude: pulumi.String("string"),
    																			Include: pulumi.String("string"),
    																			Jsonnet: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetArgs{
    																				ExtVars: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetExtVarArray{
    																					&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetExtVarArgs{
    																						Code:  pulumi.Bool(false),
    																						Name:  pulumi.String("string"),
    																						Value: pulumi.String("string"),
    																					},
    																				},
    																				Libs: pulumi.StringArray{
    																					pulumi.String("string"),
    																				},
    																				Tlas: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetTlaArray{
    																					&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetTlaArgs{
    																						Code:  pulumi.Bool(false),
    																						Name:  pulumi.String("string"),
    																						Value: pulumi.String("string"),
    																					},
    																				},
    																			},
    																			Recurse: pulumi.Bool(false),
    																		},
    																		Helm: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmArgs{
    																			FileParameters: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmFileParameterArray{
    																				&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmFileParameterArgs{
    																					Name: pulumi.String("string"),
    																					Path: pulumi.String("string"),
    																				},
    																			},
    																			IgnoreMissingValueFiles: pulumi.Bool(false),
    																			Parameters: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmParameterArray{
    																				&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmParameterArgs{
    																					ForceString: pulumi.Bool(false),
    																					Name:        pulumi.String("string"),
    																					Value:       pulumi.String("string"),
    																				},
    																			},
    																			PassCredentials: pulumi.Bool(false),
    																			ReleaseName:     pulumi.String("string"),
    																			SkipCrds:        pulumi.Bool(false),
    																			ValueFiles: pulumi.StringArray{
    																				pulumi.String("string"),
    																			},
    																			Values:  pulumi.String("string"),
    																			Version: pulumi.String("string"),
    																		},
    																		Kustomize: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomizeArgs{
    																			CommonAnnotations: pulumi.StringMap{
    																				"string": pulumi.String("string"),
    																			},
    																			CommonLabels: pulumi.StringMap{
    																				"string": pulumi.String("string"),
    																			},
    																			Images: pulumi.StringArray{
    																				pulumi.String("string"),
    																			},
    																			NamePrefix: pulumi.String("string"),
    																			NameSuffix: pulumi.String("string"),
    																			Patches: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomizePatchArray{
    																				&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomizePatchArgs{
    																					Target: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomizePatchTargetArgs{
    																						AnnotationSelector: pulumi.String("string"),
    																						Group:              pulumi.String("string"),
    																						Kind:               pulumi.String("string"),
    																						LabelSelector:      pulumi.String("string"),
    																						Name:               pulumi.String("string"),
    																						Namespace:          pulumi.String("string"),
    																						Version:            pulumi.String("string"),
    																					},
    																					Options: pulumi.BoolMap{
    																						"string": pulumi.Bool(false),
    																					},
    																					Patch: pulumi.String("string"),
    																					Path:  pulumi.String("string"),
    																				},
    																			},
    																			Version: pulumi.String("string"),
    																		},
    																		Path: pulumi.String("string"),
    																		Plugin: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSourcePluginArgs{
    																			Envs: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSourcePluginEnvArray{
    																				&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSourcePluginEnvArgs{
    																					Name:  pulumi.String("string"),
    																					Value: pulumi.String("string"),
    																				},
    																			},
    																			Name: pulumi.String("string"),
    																		},
    																		Ref:            pulumi.String("string"),
    																		RepoUrl:        pulumi.String("string"),
    																		TargetRevision: pulumi.String("string"),
    																	},
    																},
    																SyncPolicy: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyArgs{
    																	Automated: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyAutomatedArgs{
    																		AllowEmpty: pulumi.Bool(false),
    																		Prune:      pulumi.Bool(false),
    																		SelfHeal:   pulumi.Bool(false),
    																	},
    																	ManagedNamespaceMetadata: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyManagedNamespaceMetadataArgs{
    																		Annotations: pulumi.StringMap{
    																			"string": pulumi.String("string"),
    																		},
    																		Labels: pulumi.StringMap{
    																			"string": pulumi.String("string"),
    																		},
    																	},
    																	Retry: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyRetryArgs{
    																		Backoff: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyRetryBackoffArgs{
    																			Duration:    pulumi.String("string"),
    																			Factor:      pulumi.String("string"),
    																			MaxDuration: pulumi.String("string"),
    																		},
    																		Limit: pulumi.String("string"),
    																	},
    																	SyncOptions: pulumi.StringArray{
    																		pulumi.String("string"),
    																	},
    																},
    															},
    														},
    													},
    												},
    												ScmProviders: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderArray{
    													&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderArgs{
    														AzureDevops: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderAzureDevopsArgs{
    															Organization: pulumi.String("string"),
    															TeamProject:  pulumi.String("string"),
    															AccessTokenRef: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderAzureDevopsAccessTokenRefArgs{
    																Key:        pulumi.String("string"),
    																SecretName: pulumi.String("string"),
    															},
    															AllBranches: pulumi.Bool(false),
    															Api:         pulumi.String("string"),
    														},
    														BitbucketCloud: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderBitbucketCloudArgs{
    															Owner:       pulumi.String("string"),
    															User:        pulumi.String("string"),
    															AllBranches: pulumi.Bool(false),
    															AppPasswordRef: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderBitbucketCloudAppPasswordRefArgs{
    																Key:        pulumi.String("string"),
    																SecretName: pulumi.String("string"),
    															},
    														},
    														BitbucketServer: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderBitbucketServerArgs{
    															Api:         pulumi.String("string"),
    															Project:     pulumi.String("string"),
    															AllBranches: pulumi.Bool(false),
    															BasicAuth: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderBitbucketServerBasicAuthArgs{
    																PasswordRef: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderBitbucketServerBasicAuthPasswordRefArgs{
    																	Key:        pulumi.String("string"),
    																	SecretName: pulumi.String("string"),
    																},
    																Username: pulumi.String("string"),
    															},
    														},
    														CloneProtocol: pulumi.String("string"),
    														Filters: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderFilterArray{
    															&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderFilterArgs{
    																BranchMatch: pulumi.String("string"),
    																LabelMatch:  pulumi.String("string"),
    																PathsDoNotExists: pulumi.StringArray{
    																	pulumi.String("string"),
    																},
    																PathsExists: pulumi.StringArray{
    																	pulumi.String("string"),
    																},
    																RepositoryMatch: pulumi.String("string"),
    															},
    														},
    														Gitea: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderGiteaArgs{
    															Owner:       pulumi.String("string"),
    															AllBranches: pulumi.Bool(false),
    															Api:         pulumi.String("string"),
    															Insecure:    pulumi.Bool(false),
    															TokenRef: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderGiteaTokenRefArgs{
    																Key:        pulumi.String("string"),
    																SecretName: pulumi.String("string"),
    															},
    														},
    														Github: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderGithubArgs{
    															Organization:  pulumi.String("string"),
    															AllBranches:   pulumi.Bool(false),
    															Api:           pulumi.String("string"),
    															AppSecretName: pulumi.String("string"),
    															TokenRef: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderGithubTokenRefArgs{
    																Key:        pulumi.String("string"),
    																SecretName: pulumi.String("string"),
    															},
    														},
    														Gitlab: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderGitlabArgs{
    															Group:            pulumi.String("string"),
    															AllBranches:      pulumi.Bool(false),
    															Api:              pulumi.String("string"),
    															IncludeSubgroups: pulumi.Bool(false),
    															TokenRef: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderGitlabTokenRefArgs{
    																Key:        pulumi.String("string"),
    																SecretName: pulumi.String("string"),
    															},
    														},
    														RequeueAfterSeconds: pulumi.String("string"),
    														Template: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateArgs{
    															Metadata: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateMetadataArgs{
    																Annotations: pulumi.StringMap{
    																	"string": pulumi.String("string"),
    																},
    																Finalizers: pulumi.StringArray{
    																	pulumi.String("string"),
    																},
    																Labels: pulumi.StringMap{
    																	"string": pulumi.String("string"),
    																},
    																Name:      pulumi.String("string"),
    																Namespace: pulumi.String("string"),
    															},
    															Spec: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecArgs{
    																Destination: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecDestinationArgs{
    																	Name:      pulumi.String("string"),
    																	Namespace: pulumi.String("string"),
    																	Server:    pulumi.String("string"),
    																},
    																IgnoreDifferences: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecIgnoreDifferenceArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecIgnoreDifferenceArgs{
    																		Group: pulumi.String("string"),
    																		JqPathExpressions: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		JsonPointers: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		Kind: pulumi.String("string"),
    																		ManagedFieldsManagers: pulumi.StringArray{
    																			pulumi.String("string"),
    																		},
    																		Name:      pulumi.String("string"),
    																		Namespace: pulumi.String("string"),
    																	},
    																},
    																Infos: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecInfoArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecInfoArgs{
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    																Project:              pulumi.String("string"),
    																RevisionHistoryLimit: pulumi.Int(0),
    																Sources: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSourceArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSourceArgs{
    																		Chart: pulumi.String("string"),
    																		Directory: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryArgs{
    																			Exclude: pulumi.String("string"),
    																			Include: pulumi.String("string"),
    																			Jsonnet: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetArgs{
    																				ExtVars: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetExtVarArray{
    																					&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetExtVarArgs{
    																						Code:  pulumi.Bool(false),
    																						Name:  pulumi.String("string"),
    																						Value: pulumi.String("string"),
    																					},
    																				},
    																				Libs: pulumi.StringArray{
    																					pulumi.String("string"),
    																				},
    																				Tlas: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetTlaArray{
    																					&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetTlaArgs{
    																						Code:  pulumi.Bool(false),
    																						Name:  pulumi.String("string"),
    																						Value: pulumi.String("string"),
    																					},
    																				},
    																			},
    																			Recurse: pulumi.Bool(false),
    																		},
    																		Helm: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmArgs{
    																			FileParameters: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmFileParameterArray{
    																				&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmFileParameterArgs{
    																					Name: pulumi.String("string"),
    																					Path: pulumi.String("string"),
    																				},
    																			},
    																			IgnoreMissingValueFiles: pulumi.Bool(false),
    																			Parameters: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmParameterArray{
    																				&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmParameterArgs{
    																					ForceString: pulumi.Bool(false),
    																					Name:        pulumi.String("string"),
    																					Value:       pulumi.String("string"),
    																				},
    																			},
    																			PassCredentials: pulumi.Bool(false),
    																			ReleaseName:     pulumi.String("string"),
    																			SkipCrds:        pulumi.Bool(false),
    																			ValueFiles: pulumi.StringArray{
    																				pulumi.String("string"),
    																			},
    																			Values:  pulumi.String("string"),
    																			Version: pulumi.String("string"),
    																		},
    																		Kustomize: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomizeArgs{
    																			CommonAnnotations: pulumi.StringMap{
    																				"string": pulumi.String("string"),
    																			},
    																			CommonLabels: pulumi.StringMap{
    																				"string": pulumi.String("string"),
    																			},
    																			Images: pulumi.StringArray{
    																				pulumi.String("string"),
    																			},
    																			NamePrefix: pulumi.String("string"),
    																			NameSuffix: pulumi.String("string"),
    																			Patches: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomizePatchArray{
    																				&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomizePatchArgs{
    																					Target: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomizePatchTargetArgs{
    																						AnnotationSelector: pulumi.String("string"),
    																						Group:              pulumi.String("string"),
    																						Kind:               pulumi.String("string"),
    																						LabelSelector:      pulumi.String("string"),
    																						Name:               pulumi.String("string"),
    																						Namespace:          pulumi.String("string"),
    																						Version:            pulumi.String("string"),
    																					},
    																					Options: pulumi.BoolMap{
    																						"string": pulumi.Bool(false),
    																					},
    																					Patch: pulumi.String("string"),
    																					Path:  pulumi.String("string"),
    																				},
    																			},
    																			Version: pulumi.String("string"),
    																		},
    																		Path: pulumi.String("string"),
    																		Plugin: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSourcePluginArgs{
    																			Envs: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSourcePluginEnvArray{
    																				&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSourcePluginEnvArgs{
    																					Name:  pulumi.String("string"),
    																					Value: pulumi.String("string"),
    																				},
    																			},
    																			Name: pulumi.String("string"),
    																		},
    																		Ref:            pulumi.String("string"),
    																		RepoUrl:        pulumi.String("string"),
    																		TargetRevision: pulumi.String("string"),
    																	},
    																},
    																SyncPolicy: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyArgs{
    																	Automated: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyAutomatedArgs{
    																		AllowEmpty: pulumi.Bool(false),
    																		Prune:      pulumi.Bool(false),
    																		SelfHeal:   pulumi.Bool(false),
    																	},
    																	ManagedNamespaceMetadata: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyManagedNamespaceMetadataArgs{
    																		Annotations: pulumi.StringMap{
    																			"string": pulumi.String("string"),
    																		},
    																		Labels: pulumi.StringMap{
    																			"string": pulumi.String("string"),
    																		},
    																	},
    																	Retry: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyRetryArgs{
    																		Backoff: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyRetryBackoffArgs{
    																			Duration:    pulumi.String("string"),
    																			Factor:      pulumi.String("string"),
    																			MaxDuration: pulumi.String("string"),
    																		},
    																		Limit: pulumi.String("string"),
    																	},
    																	SyncOptions: pulumi.StringArray{
    																		pulumi.String("string"),
    																	},
    																},
    															},
    														},
    													},
    												},
    												Selector: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorSelectorArgs{
    													MatchExpressions: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorSelectorMatchExpressionArray{
    														&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorSelectorMatchExpressionArgs{
    															Key:      pulumi.String("string"),
    															Operator: pulumi.String("string"),
    															Values: pulumi.StringArray{
    																pulumi.String("string"),
    															},
    														},
    													},
    													MatchLabels: pulumi.StringMap{
    														"string": pulumi.String("string"),
    													},
    												},
    											},
    										},
    										MergeKeys: pulumi.StringArray{
    											pulumi.String("string"),
    										},
    										Template: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateArgs{
    											Metadata: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateMetadataArgs{
    												Annotations: pulumi.StringMap{
    													"string": pulumi.String("string"),
    												},
    												Finalizers: pulumi.StringArray{
    													pulumi.String("string"),
    												},
    												Labels: pulumi.StringMap{
    													"string": pulumi.String("string"),
    												},
    												Name:      pulumi.String("string"),
    												Namespace: pulumi.String("string"),
    											},
    											Spec: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecArgs{
    												Destination: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecDestinationArgs{
    													Name:      pulumi.String("string"),
    													Namespace: pulumi.String("string"),
    													Server:    pulumi.String("string"),
    												},
    												IgnoreDifferences: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecIgnoreDifferenceArray{
    													&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecIgnoreDifferenceArgs{
    														Group: pulumi.String("string"),
    														JqPathExpressions: pulumi.StringArray{
    															pulumi.String("string"),
    														},
    														JsonPointers: pulumi.StringArray{
    															pulumi.String("string"),
    														},
    														Kind: pulumi.String("string"),
    														ManagedFieldsManagers: pulumi.StringArray{
    															pulumi.String("string"),
    														},
    														Name:      pulumi.String("string"),
    														Namespace: pulumi.String("string"),
    													},
    												},
    												Infos: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecInfoArray{
    													&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecInfoArgs{
    														Name:  pulumi.String("string"),
    														Value: pulumi.String("string"),
    													},
    												},
    												Project:              pulumi.String("string"),
    												RevisionHistoryLimit: pulumi.Int(0),
    												Sources: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSourceArray{
    													&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSourceArgs{
    														Chart: pulumi.String("string"),
    														Directory: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSourceDirectoryArgs{
    															Exclude: pulumi.String("string"),
    															Include: pulumi.String("string"),
    															Jsonnet: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSourceDirectoryJsonnetArgs{
    																ExtVars: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSourceDirectoryJsonnetExtVarArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSourceDirectoryJsonnetExtVarArgs{
    																		Code:  pulumi.Bool(false),
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    																Libs: pulumi.StringArray{
    																	pulumi.String("string"),
    																},
    																Tlas: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSourceDirectoryJsonnetTlaArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSourceDirectoryJsonnetTlaArgs{
    																		Code:  pulumi.Bool(false),
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    															},
    															Recurse: pulumi.Bool(false),
    														},
    														Helm: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSourceHelmArgs{
    															FileParameters: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSourceHelmFileParameterArray{
    																&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSourceHelmFileParameterArgs{
    																	Name: pulumi.String("string"),
    																	Path: pulumi.String("string"),
    																},
    															},
    															IgnoreMissingValueFiles: pulumi.Bool(false),
    															Parameters: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSourceHelmParameterArray{
    																&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSourceHelmParameterArgs{
    																	ForceString: pulumi.Bool(false),
    																	Name:        pulumi.String("string"),
    																	Value:       pulumi.String("string"),
    																},
    															},
    															PassCredentials: pulumi.Bool(false),
    															ReleaseName:     pulumi.String("string"),
    															SkipCrds:        pulumi.Bool(false),
    															ValueFiles: pulumi.StringArray{
    																pulumi.String("string"),
    															},
    															Values:  pulumi.String("string"),
    															Version: pulumi.String("string"),
    														},
    														Kustomize: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSourceKustomizeArgs{
    															CommonAnnotations: pulumi.StringMap{
    																"string": pulumi.String("string"),
    															},
    															CommonLabels: pulumi.StringMap{
    																"string": pulumi.String("string"),
    															},
    															Images: pulumi.StringArray{
    																pulumi.String("string"),
    															},
    															NamePrefix: pulumi.String("string"),
    															NameSuffix: pulumi.String("string"),
    															Patches: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSourceKustomizePatchArray{
    																&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSourceKustomizePatchArgs{
    																	Target: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSourceKustomizePatchTargetArgs{
    																		AnnotationSelector: pulumi.String("string"),
    																		Group:              pulumi.String("string"),
    																		Kind:               pulumi.String("string"),
    																		LabelSelector:      pulumi.String("string"),
    																		Name:               pulumi.String("string"),
    																		Namespace:          pulumi.String("string"),
    																		Version:            pulumi.String("string"),
    																	},
    																	Options: pulumi.BoolMap{
    																		"string": pulumi.Bool(false),
    																	},
    																	Patch: pulumi.String("string"),
    																	Path:  pulumi.String("string"),
    																},
    															},
    															Version: pulumi.String("string"),
    														},
    														Path: pulumi.String("string"),
    														Plugin: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSourcePluginArgs{
    															Envs: argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSourcePluginEnvArray{
    																&argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSourcePluginEnvArgs{
    																	Name:  pulumi.String("string"),
    																	Value: pulumi.String("string"),
    																},
    															},
    															Name: pulumi.String("string"),
    														},
    														Ref:            pulumi.String("string"),
    														RepoUrl:        pulumi.String("string"),
    														TargetRevision: pulumi.String("string"),
    													},
    												},
    												SyncPolicy: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSyncPolicyArgs{
    													Automated: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSyncPolicyAutomatedArgs{
    														AllowEmpty: pulumi.Bool(false),
    														Prune:      pulumi.Bool(false),
    														SelfHeal:   pulumi.Bool(false),
    													},
    													ManagedNamespaceMetadata: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSyncPolicyManagedNamespaceMetadataArgs{
    														Annotations: pulumi.StringMap{
    															"string": pulumi.String("string"),
    														},
    														Labels: pulumi.StringMap{
    															"string": pulumi.String("string"),
    														},
    													},
    													Retry: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSyncPolicyRetryArgs{
    														Backoff: &argocd.ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSyncPolicyRetryBackoffArgs{
    															Duration:    pulumi.String("string"),
    															Factor:      pulumi.String("string"),
    															MaxDuration: pulumi.String("string"),
    														},
    														Limit: pulumi.String("string"),
    													},
    													SyncOptions: pulumi.StringArray{
    														pulumi.String("string"),
    													},
    												},
    											},
    										},
    									},
    								},
    								PullRequests: argocd.ApplicationSetSpecGeneratorMergeGeneratorPullRequestArray{
    									&argocd.ApplicationSetSpecGeneratorMergeGeneratorPullRequestArgs{
    										BitbucketServer: &argocd.ApplicationSetSpecGeneratorMergeGeneratorPullRequestBitbucketServerArgs{
    											Api:     pulumi.String("string"),
    											Project: pulumi.String("string"),
    											Repo:    pulumi.String("string"),
    											BasicAuth: &argocd.ApplicationSetSpecGeneratorMergeGeneratorPullRequestBitbucketServerBasicAuthArgs{
    												PasswordRef: &argocd.ApplicationSetSpecGeneratorMergeGeneratorPullRequestBitbucketServerBasicAuthPasswordRefArgs{
    													Key:        pulumi.String("string"),
    													SecretName: pulumi.String("string"),
    												},
    												Username: pulumi.String("string"),
    											},
    										},
    										Filters: argocd.ApplicationSetSpecGeneratorMergeGeneratorPullRequestFilterArray{
    											&argocd.ApplicationSetSpecGeneratorMergeGeneratorPullRequestFilterArgs{
    												BranchMatch: pulumi.String("string"),
    											},
    										},
    										Gitea: &argocd.ApplicationSetSpecGeneratorMergeGeneratorPullRequestGiteaArgs{
    											Api:      pulumi.String("string"),
    											Owner:    pulumi.String("string"),
    											Repo:     pulumi.String("string"),
    											Insecure: pulumi.Bool(false),
    											TokenRef: &argocd.ApplicationSetSpecGeneratorMergeGeneratorPullRequestGiteaTokenRefArgs{
    												Key:        pulumi.String("string"),
    												SecretName: pulumi.String("string"),
    											},
    										},
    										Github: &argocd.ApplicationSetSpecGeneratorMergeGeneratorPullRequestGithubArgs{
    											Owner:         pulumi.String("string"),
    											Repo:          pulumi.String("string"),
    											Api:           pulumi.String("string"),
    											AppSecretName: pulumi.String("string"),
    											Labels: pulumi.StringArray{
    												pulumi.String("string"),
    											},
    											TokenRef: &argocd.ApplicationSetSpecGeneratorMergeGeneratorPullRequestGithubTokenRefArgs{
    												Key:        pulumi.String("string"),
    												SecretName: pulumi.String("string"),
    											},
    										},
    										Gitlab: &argocd.ApplicationSetSpecGeneratorMergeGeneratorPullRequestGitlabArgs{
    											Project: pulumi.String("string"),
    											Api:     pulumi.String("string"),
    											Labels: pulumi.StringArray{
    												pulumi.String("string"),
    											},
    											PullRequestState: pulumi.String("string"),
    											TokenRef: &argocd.ApplicationSetSpecGeneratorMergeGeneratorPullRequestGitlabTokenRefArgs{
    												Key:        pulumi.String("string"),
    												SecretName: pulumi.String("string"),
    											},
    										},
    										RequeueAfterSeconds: pulumi.String("string"),
    										Template: &argocd.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateArgs{
    											Metadata: &argocd.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateMetadataArgs{
    												Annotations: pulumi.StringMap{
    													"string": pulumi.String("string"),
    												},
    												Finalizers: pulumi.StringArray{
    													pulumi.String("string"),
    												},
    												Labels: pulumi.StringMap{
    													"string": pulumi.String("string"),
    												},
    												Name:      pulumi.String("string"),
    												Namespace: pulumi.String("string"),
    											},
    											Spec: &argocd.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecArgs{
    												Destination: &argocd.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecDestinationArgs{
    													Name:      pulumi.String("string"),
    													Namespace: pulumi.String("string"),
    													Server:    pulumi.String("string"),
    												},
    												IgnoreDifferences: argocd.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecIgnoreDifferenceArray{
    													&argocd.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecIgnoreDifferenceArgs{
    														Group: pulumi.String("string"),
    														JqPathExpressions: pulumi.StringArray{
    															pulumi.String("string"),
    														},
    														JsonPointers: pulumi.StringArray{
    															pulumi.String("string"),
    														},
    														Kind: pulumi.String("string"),
    														ManagedFieldsManagers: pulumi.StringArray{
    															pulumi.String("string"),
    														},
    														Name:      pulumi.String("string"),
    														Namespace: pulumi.String("string"),
    													},
    												},
    												Infos: argocd.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecInfoArray{
    													&argocd.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecInfoArgs{
    														Name:  pulumi.String("string"),
    														Value: pulumi.String("string"),
    													},
    												},
    												Project:              pulumi.String("string"),
    												RevisionHistoryLimit: pulumi.Int(0),
    												Sources: argocd.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSourceArray{
    													&argocd.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSourceArgs{
    														Chart: pulumi.String("string"),
    														Directory: &argocd.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryArgs{
    															Exclude: pulumi.String("string"),
    															Include: pulumi.String("string"),
    															Jsonnet: &argocd.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetArgs{
    																ExtVars: argocd.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetExtVarArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetExtVarArgs{
    																		Code:  pulumi.Bool(false),
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    																Libs: pulumi.StringArray{
    																	pulumi.String("string"),
    																},
    																Tlas: argocd.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetTlaArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetTlaArgs{
    																		Code:  pulumi.Bool(false),
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    															},
    															Recurse: pulumi.Bool(false),
    														},
    														Helm: &argocd.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmArgs{
    															FileParameters: argocd.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmFileParameterArray{
    																&argocd.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmFileParameterArgs{
    																	Name: pulumi.String("string"),
    																	Path: pulumi.String("string"),
    																},
    															},
    															IgnoreMissingValueFiles: pulumi.Bool(false),
    															Parameters: argocd.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmParameterArray{
    																&argocd.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmParameterArgs{
    																	ForceString: pulumi.Bool(false),
    																	Name:        pulumi.String("string"),
    																	Value:       pulumi.String("string"),
    																},
    															},
    															PassCredentials: pulumi.Bool(false),
    															ReleaseName:     pulumi.String("string"),
    															SkipCrds:        pulumi.Bool(false),
    															ValueFiles: pulumi.StringArray{
    																pulumi.String("string"),
    															},
    															Values:  pulumi.String("string"),
    															Version: pulumi.String("string"),
    														},
    														Kustomize: &argocd.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomizeArgs{
    															CommonAnnotations: pulumi.StringMap{
    																"string": pulumi.String("string"),
    															},
    															CommonLabels: pulumi.StringMap{
    																"string": pulumi.String("string"),
    															},
    															Images: pulumi.StringArray{
    																pulumi.String("string"),
    															},
    															NamePrefix: pulumi.String("string"),
    															NameSuffix: pulumi.String("string"),
    															Patches: argocd.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomizePatchArray{
    																&argocd.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomizePatchArgs{
    																	Target: &argocd.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomizePatchTargetArgs{
    																		AnnotationSelector: pulumi.String("string"),
    																		Group:              pulumi.String("string"),
    																		Kind:               pulumi.String("string"),
    																		LabelSelector:      pulumi.String("string"),
    																		Name:               pulumi.String("string"),
    																		Namespace:          pulumi.String("string"),
    																		Version:            pulumi.String("string"),
    																	},
    																	Options: pulumi.BoolMap{
    																		"string": pulumi.Bool(false),
    																	},
    																	Patch: pulumi.String("string"),
    																	Path:  pulumi.String("string"),
    																},
    															},
    															Version: pulumi.String("string"),
    														},
    														Path: pulumi.String("string"),
    														Plugin: &argocd.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSourcePluginArgs{
    															Envs: argocd.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSourcePluginEnvArray{
    																&argocd.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSourcePluginEnvArgs{
    																	Name:  pulumi.String("string"),
    																	Value: pulumi.String("string"),
    																},
    															},
    															Name: pulumi.String("string"),
    														},
    														Ref:            pulumi.String("string"),
    														RepoUrl:        pulumi.String("string"),
    														TargetRevision: pulumi.String("string"),
    													},
    												},
    												SyncPolicy: &argocd.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyArgs{
    													Automated: &argocd.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyAutomatedArgs{
    														AllowEmpty: pulumi.Bool(false),
    														Prune:      pulumi.Bool(false),
    														SelfHeal:   pulumi.Bool(false),
    													},
    													ManagedNamespaceMetadata: &argocd.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyManagedNamespaceMetadataArgs{
    														Annotations: pulumi.StringMap{
    															"string": pulumi.String("string"),
    														},
    														Labels: pulumi.StringMap{
    															"string": pulumi.String("string"),
    														},
    													},
    													Retry: &argocd.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyRetryArgs{
    														Backoff: &argocd.ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyRetryBackoffArgs{
    															Duration:    pulumi.String("string"),
    															Factor:      pulumi.String("string"),
    															MaxDuration: pulumi.String("string"),
    														},
    														Limit: pulumi.String("string"),
    													},
    													SyncOptions: pulumi.StringArray{
    														pulumi.String("string"),
    													},
    												},
    											},
    										},
    									},
    								},
    								ScmProviders: argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderArray{
    									&argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderArgs{
    										AzureDevops: &argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderAzureDevopsArgs{
    											Organization: pulumi.String("string"),
    											TeamProject:  pulumi.String("string"),
    											AccessTokenRef: &argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderAzureDevopsAccessTokenRefArgs{
    												Key:        pulumi.String("string"),
    												SecretName: pulumi.String("string"),
    											},
    											AllBranches: pulumi.Bool(false),
    											Api:         pulumi.String("string"),
    										},
    										BitbucketCloud: &argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderBitbucketCloudArgs{
    											Owner:       pulumi.String("string"),
    											User:        pulumi.String("string"),
    											AllBranches: pulumi.Bool(false),
    											AppPasswordRef: &argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderBitbucketCloudAppPasswordRefArgs{
    												Key:        pulumi.String("string"),
    												SecretName: pulumi.String("string"),
    											},
    										},
    										BitbucketServer: &argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderBitbucketServerArgs{
    											Api:         pulumi.String("string"),
    											Project:     pulumi.String("string"),
    											AllBranches: pulumi.Bool(false),
    											BasicAuth: &argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderBitbucketServerBasicAuthArgs{
    												PasswordRef: &argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderBitbucketServerBasicAuthPasswordRefArgs{
    													Key:        pulumi.String("string"),
    													SecretName: pulumi.String("string"),
    												},
    												Username: pulumi.String("string"),
    											},
    										},
    										CloneProtocol: pulumi.String("string"),
    										Filters: argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderFilterArray{
    											&argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderFilterArgs{
    												BranchMatch: pulumi.String("string"),
    												LabelMatch:  pulumi.String("string"),
    												PathsDoNotExists: pulumi.StringArray{
    													pulumi.String("string"),
    												},
    												PathsExists: pulumi.StringArray{
    													pulumi.String("string"),
    												},
    												RepositoryMatch: pulumi.String("string"),
    											},
    										},
    										Gitea: &argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderGiteaArgs{
    											Owner:       pulumi.String("string"),
    											AllBranches: pulumi.Bool(false),
    											Api:         pulumi.String("string"),
    											Insecure:    pulumi.Bool(false),
    											TokenRef: &argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderGiteaTokenRefArgs{
    												Key:        pulumi.String("string"),
    												SecretName: pulumi.String("string"),
    											},
    										},
    										Github: &argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderGithubArgs{
    											Organization:  pulumi.String("string"),
    											AllBranches:   pulumi.Bool(false),
    											Api:           pulumi.String("string"),
    											AppSecretName: pulumi.String("string"),
    											TokenRef: &argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderGithubTokenRefArgs{
    												Key:        pulumi.String("string"),
    												SecretName: pulumi.String("string"),
    											},
    										},
    										Gitlab: &argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderGitlabArgs{
    											Group:            pulumi.String("string"),
    											AllBranches:      pulumi.Bool(false),
    											Api:              pulumi.String("string"),
    											IncludeSubgroups: pulumi.Bool(false),
    											TokenRef: &argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderGitlabTokenRefArgs{
    												Key:        pulumi.String("string"),
    												SecretName: pulumi.String("string"),
    											},
    										},
    										RequeueAfterSeconds: pulumi.String("string"),
    										Template: &argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateArgs{
    											Metadata: &argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateMetadataArgs{
    												Annotations: pulumi.StringMap{
    													"string": pulumi.String("string"),
    												},
    												Finalizers: pulumi.StringArray{
    													pulumi.String("string"),
    												},
    												Labels: pulumi.StringMap{
    													"string": pulumi.String("string"),
    												},
    												Name:      pulumi.String("string"),
    												Namespace: pulumi.String("string"),
    											},
    											Spec: &argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecArgs{
    												Destination: &argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecDestinationArgs{
    													Name:      pulumi.String("string"),
    													Namespace: pulumi.String("string"),
    													Server:    pulumi.String("string"),
    												},
    												IgnoreDifferences: argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecIgnoreDifferenceArray{
    													&argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecIgnoreDifferenceArgs{
    														Group: pulumi.String("string"),
    														JqPathExpressions: pulumi.StringArray{
    															pulumi.String("string"),
    														},
    														JsonPointers: pulumi.StringArray{
    															pulumi.String("string"),
    														},
    														Kind: pulumi.String("string"),
    														ManagedFieldsManagers: pulumi.StringArray{
    															pulumi.String("string"),
    														},
    														Name:      pulumi.String("string"),
    														Namespace: pulumi.String("string"),
    													},
    												},
    												Infos: argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecInfoArray{
    													&argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecInfoArgs{
    														Name:  pulumi.String("string"),
    														Value: pulumi.String("string"),
    													},
    												},
    												Project:              pulumi.String("string"),
    												RevisionHistoryLimit: pulumi.Int(0),
    												Sources: argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSourceArray{
    													&argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSourceArgs{
    														Chart: pulumi.String("string"),
    														Directory: &argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryArgs{
    															Exclude: pulumi.String("string"),
    															Include: pulumi.String("string"),
    															Jsonnet: &argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetArgs{
    																ExtVars: argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetExtVarArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetExtVarArgs{
    																		Code:  pulumi.Bool(false),
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    																Libs: pulumi.StringArray{
    																	pulumi.String("string"),
    																},
    																Tlas: argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetTlaArray{
    																	&argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetTlaArgs{
    																		Code:  pulumi.Bool(false),
    																		Name:  pulumi.String("string"),
    																		Value: pulumi.String("string"),
    																	},
    																},
    															},
    															Recurse: pulumi.Bool(false),
    														},
    														Helm: &argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmArgs{
    															FileParameters: argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmFileParameterArray{
    																&argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmFileParameterArgs{
    																	Name: pulumi.String("string"),
    																	Path: pulumi.String("string"),
    																},
    															},
    															IgnoreMissingValueFiles: pulumi.Bool(false),
    															Parameters: argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmParameterArray{
    																&argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmParameterArgs{
    																	ForceString: pulumi.Bool(false),
    																	Name:        pulumi.String("string"),
    																	Value:       pulumi.String("string"),
    																},
    															},
    															PassCredentials: pulumi.Bool(false),
    															ReleaseName:     pulumi.String("string"),
    															SkipCrds:        pulumi.Bool(false),
    															ValueFiles: pulumi.StringArray{
    																pulumi.String("string"),
    															},
    															Values:  pulumi.String("string"),
    															Version: pulumi.String("string"),
    														},
    														Kustomize: &argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomizeArgs{
    															CommonAnnotations: pulumi.StringMap{
    																"string": pulumi.String("string"),
    															},
    															CommonLabels: pulumi.StringMap{
    																"string": pulumi.String("string"),
    															},
    															Images: pulumi.StringArray{
    																pulumi.String("string"),
    															},
    															NamePrefix: pulumi.String("string"),
    															NameSuffix: pulumi.String("string"),
    															Patches: argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomizePatchArray{
    																&argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomizePatchArgs{
    																	Target: &argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomizePatchTargetArgs{
    																		AnnotationSelector: pulumi.String("string"),
    																		Group:              pulumi.String("string"),
    																		Kind:               pulumi.String("string"),
    																		LabelSelector:      pulumi.String("string"),
    																		Name:               pulumi.String("string"),
    																		Namespace:          pulumi.String("string"),
    																		Version:            pulumi.String("string"),
    																	},
    																	Options: pulumi.BoolMap{
    																		"string": pulumi.Bool(false),
    																	},
    																	Patch: pulumi.String("string"),
    																	Path:  pulumi.String("string"),
    																},
    															},
    															Version: pulumi.String("string"),
    														},
    														Path: pulumi.String("string"),
    														Plugin: &argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSourcePluginArgs{
    															Envs: argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSourcePluginEnvArray{
    																&argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSourcePluginEnvArgs{
    																	Name:  pulumi.String("string"),
    																	Value: pulumi.String("string"),
    																},
    															},
    															Name: pulumi.String("string"),
    														},
    														Ref:            pulumi.String("string"),
    														RepoUrl:        pulumi.String("string"),
    														TargetRevision: pulumi.String("string"),
    													},
    												},
    												SyncPolicy: &argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyArgs{
    													Automated: &argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyAutomatedArgs{
    														AllowEmpty: pulumi.Bool(false),
    														Prune:      pulumi.Bool(false),
    														SelfHeal:   pulumi.Bool(false),
    													},
    													ManagedNamespaceMetadata: &argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyManagedNamespaceMetadataArgs{
    														Annotations: pulumi.StringMap{
    															"string": pulumi.String("string"),
    														},
    														Labels: pulumi.StringMap{
    															"string": pulumi.String("string"),
    														},
    													},
    													Retry: &argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyRetryArgs{
    														Backoff: &argocd.ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyRetryBackoffArgs{
    															Duration:    pulumi.String("string"),
    															Factor:      pulumi.String("string"),
    															MaxDuration: pulumi.String("string"),
    														},
    														Limit: pulumi.String("string"),
    													},
    													SyncOptions: pulumi.StringArray{
    														pulumi.String("string"),
    													},
    												},
    											},
    										},
    									},
    								},
    								Selector: &argocd.ApplicationSetSpecGeneratorMergeGeneratorSelectorArgs{
    									MatchExpressions: argocd.ApplicationSetSpecGeneratorMergeGeneratorSelectorMatchExpressionArray{
    										&argocd.ApplicationSetSpecGeneratorMergeGeneratorSelectorMatchExpressionArgs{
    											Key:      pulumi.String("string"),
    											Operator: pulumi.String("string"),
    											Values: pulumi.StringArray{
    												pulumi.String("string"),
    											},
    										},
    									},
    									MatchLabels: pulumi.StringMap{
    										"string": pulumi.String("string"),
    									},
    								},
    							},
    						},
    						MergeKeys: pulumi.StringArray{
    							pulumi.String("string"),
    						},
    						Template: &argocd.ApplicationSetSpecGeneratorMergeTemplateArgs{
    							Metadata: &argocd.ApplicationSetSpecGeneratorMergeTemplateMetadataArgs{
    								Annotations: pulumi.StringMap{
    									"string": pulumi.String("string"),
    								},
    								Finalizers: pulumi.StringArray{
    									pulumi.String("string"),
    								},
    								Labels: pulumi.StringMap{
    									"string": pulumi.String("string"),
    								},
    								Name:      pulumi.String("string"),
    								Namespace: pulumi.String("string"),
    							},
    							Spec: &argocd.ApplicationSetSpecGeneratorMergeTemplateSpecArgs{
    								Destination: &argocd.ApplicationSetSpecGeneratorMergeTemplateSpecDestinationArgs{
    									Name:      pulumi.String("string"),
    									Namespace: pulumi.String("string"),
    									Server:    pulumi.String("string"),
    								},
    								IgnoreDifferences: argocd.ApplicationSetSpecGeneratorMergeTemplateSpecIgnoreDifferenceArray{
    									&argocd.ApplicationSetSpecGeneratorMergeTemplateSpecIgnoreDifferenceArgs{
    										Group: pulumi.String("string"),
    										JqPathExpressions: pulumi.StringArray{
    											pulumi.String("string"),
    										},
    										JsonPointers: pulumi.StringArray{
    											pulumi.String("string"),
    										},
    										Kind: pulumi.String("string"),
    										ManagedFieldsManagers: pulumi.StringArray{
    											pulumi.String("string"),
    										},
    										Name:      pulumi.String("string"),
    										Namespace: pulumi.String("string"),
    									},
    								},
    								Infos: argocd.ApplicationSetSpecGeneratorMergeTemplateSpecInfoArray{
    									&argocd.ApplicationSetSpecGeneratorMergeTemplateSpecInfoArgs{
    										Name:  pulumi.String("string"),
    										Value: pulumi.String("string"),
    									},
    								},
    								Project:              pulumi.String("string"),
    								RevisionHistoryLimit: pulumi.Int(0),
    								Sources: argocd.ApplicationSetSpecGeneratorMergeTemplateSpecSourceArray{
    									&argocd.ApplicationSetSpecGeneratorMergeTemplateSpecSourceArgs{
    										Chart: pulumi.String("string"),
    										Directory: &argocd.ApplicationSetSpecGeneratorMergeTemplateSpecSourceDirectoryArgs{
    											Exclude: pulumi.String("string"),
    											Include: pulumi.String("string"),
    											Jsonnet: &argocd.ApplicationSetSpecGeneratorMergeTemplateSpecSourceDirectoryJsonnetArgs{
    												ExtVars: argocd.ApplicationSetSpecGeneratorMergeTemplateSpecSourceDirectoryJsonnetExtVarArray{
    													&argocd.ApplicationSetSpecGeneratorMergeTemplateSpecSourceDirectoryJsonnetExtVarArgs{
    														Code:  pulumi.Bool(false),
    														Name:  pulumi.String("string"),
    														Value: pulumi.String("string"),
    													},
    												},
    												Libs: pulumi.StringArray{
    													pulumi.String("string"),
    												},
    												Tlas: argocd.ApplicationSetSpecGeneratorMergeTemplateSpecSourceDirectoryJsonnetTlaArray{
    													&argocd.ApplicationSetSpecGeneratorMergeTemplateSpecSourceDirectoryJsonnetTlaArgs{
    														Code:  pulumi.Bool(false),
    														Name:  pulumi.String("string"),
    														Value: pulumi.String("string"),
    													},
    												},
    											},
    											Recurse: pulumi.Bool(false),
    										},
    										Helm: &argocd.ApplicationSetSpecGeneratorMergeTemplateSpecSourceHelmArgs{
    											FileParameters: argocd.ApplicationSetSpecGeneratorMergeTemplateSpecSourceHelmFileParameterArray{
    												&argocd.ApplicationSetSpecGeneratorMergeTemplateSpecSourceHelmFileParameterArgs{
    													Name: pulumi.String("string"),
    													Path: pulumi.String("string"),
    												},
    											},
    											IgnoreMissingValueFiles: pulumi.Bool(false),
    											Parameters: argocd.ApplicationSetSpecGeneratorMergeTemplateSpecSourceHelmParameterArray{
    												&argocd.ApplicationSetSpecGeneratorMergeTemplateSpecSourceHelmParameterArgs{
    													ForceString: pulumi.Bool(false),
    													Name:        pulumi.String("string"),
    													Value:       pulumi.String("string"),
    												},
    											},
    											PassCredentials: pulumi.Bool(false),
    											ReleaseName:     pulumi.String("string"),
    											SkipCrds:        pulumi.Bool(false),
    											ValueFiles: pulumi.StringArray{
    												pulumi.String("string"),
    											},
    											Values:  pulumi.String("string"),
    											Version: pulumi.String("string"),
    										},
    										Kustomize: &argocd.ApplicationSetSpecGeneratorMergeTemplateSpecSourceKustomizeArgs{
    											CommonAnnotations: pulumi.StringMap{
    												"string": pulumi.String("string"),
    											},
    											CommonLabels: pulumi.StringMap{
    												"string": pulumi.String("string"),
    											},
    											Images: pulumi.StringArray{
    												pulumi.String("string"),
    											},
    											NamePrefix: pulumi.String("string"),
    											NameSuffix: pulumi.String("string"),
    											Patches: argocd.ApplicationSetSpecGeneratorMergeTemplateSpecSourceKustomizePatchArray{
    												&argocd.ApplicationSetSpecGeneratorMergeTemplateSpecSourceKustomizePatchArgs{
    													Target: &argocd.ApplicationSetSpecGeneratorMergeTemplateSpecSourceKustomizePatchTargetArgs{
    														AnnotationSelector: pulumi.String("string"),
    														Group:              pulumi.String("string"),
    														Kind:               pulumi.String("string"),
    														LabelSelector:      pulumi.String("string"),
    														Name:               pulumi.String("string"),
    														Namespace:          pulumi.String("string"),
    														Version:            pulumi.String("string"),
    													},
    													Options: pulumi.BoolMap{
    														"string": pulumi.Bool(false),
    													},
    													Patch: pulumi.String("string"),
    													Path:  pulumi.String("string"),
    												},
    											},
    											Version: pulumi.String("string"),
    										},
    										Path: pulumi.String("string"),
    										Plugin: &argocd.ApplicationSetSpecGeneratorMergeTemplateSpecSourcePluginArgs{
    											Envs: argocd.ApplicationSetSpecGeneratorMergeTemplateSpecSourcePluginEnvArray{
    												&argocd.ApplicationSetSpecGeneratorMergeTemplateSpecSourcePluginEnvArgs{
    													Name:  pulumi.String("string"),
    													Value: pulumi.String("string"),
    												},
    											},
    											Name: pulumi.String("string"),
    										},
    										Ref:            pulumi.String("string"),
    										RepoUrl:        pulumi.String("string"),
    										TargetRevision: pulumi.String("string"),
    									},
    								},
    								SyncPolicy: &argocd.ApplicationSetSpecGeneratorMergeTemplateSpecSyncPolicyArgs{
    									Automated: &argocd.ApplicationSetSpecGeneratorMergeTemplateSpecSyncPolicyAutomatedArgs{
    										AllowEmpty: pulumi.Bool(false),
    										Prune:      pulumi.Bool(false),
    										SelfHeal:   pulumi.Bool(false),
    									},
    									ManagedNamespaceMetadata: &argocd.ApplicationSetSpecGeneratorMergeTemplateSpecSyncPolicyManagedNamespaceMetadataArgs{
    										Annotations: pulumi.StringMap{
    											"string": pulumi.String("string"),
    										},
    										Labels: pulumi.StringMap{
    											"string": pulumi.String("string"),
    										},
    									},
    									Retry: &argocd.ApplicationSetSpecGeneratorMergeTemplateSpecSyncPolicyRetryArgs{
    										Backoff: &argocd.ApplicationSetSpecGeneratorMergeTemplateSpecSyncPolicyRetryBackoffArgs{
    											Duration:    pulumi.String("string"),
    											Factor:      pulumi.String("string"),
    											MaxDuration: pulumi.String("string"),
    										},
    										Limit: pulumi.String("string"),
    									},
    									SyncOptions: pulumi.StringArray{
    										pulumi.String("string"),
    									},
    								},
    							},
    						},
    					},
    				},
    				PullRequests: argocd.ApplicationSetSpecGeneratorPullRequestArray{
    					&argocd.ApplicationSetSpecGeneratorPullRequestArgs{
    						BitbucketServer: &argocd.ApplicationSetSpecGeneratorPullRequestBitbucketServerArgs{
    							Api:     pulumi.String("string"),
    							Project: pulumi.String("string"),
    							Repo:    pulumi.String("string"),
    							BasicAuth: &argocd.ApplicationSetSpecGeneratorPullRequestBitbucketServerBasicAuthArgs{
    								PasswordRef: &argocd.ApplicationSetSpecGeneratorPullRequestBitbucketServerBasicAuthPasswordRefArgs{
    									Key:        pulumi.String("string"),
    									SecretName: pulumi.String("string"),
    								},
    								Username: pulumi.String("string"),
    							},
    						},
    						Filters: argocd.ApplicationSetSpecGeneratorPullRequestFilterArray{
    							&argocd.ApplicationSetSpecGeneratorPullRequestFilterArgs{
    								BranchMatch: pulumi.String("string"),
    							},
    						},
    						Gitea: &argocd.ApplicationSetSpecGeneratorPullRequestGiteaArgs{
    							Api:      pulumi.String("string"),
    							Owner:    pulumi.String("string"),
    							Repo:     pulumi.String("string"),
    							Insecure: pulumi.Bool(false),
    							TokenRef: &argocd.ApplicationSetSpecGeneratorPullRequestGiteaTokenRefArgs{
    								Key:        pulumi.String("string"),
    								SecretName: pulumi.String("string"),
    							},
    						},
    						Github: &argocd.ApplicationSetSpecGeneratorPullRequestGithubArgs{
    							Owner:         pulumi.String("string"),
    							Repo:          pulumi.String("string"),
    							Api:           pulumi.String("string"),
    							AppSecretName: pulumi.String("string"),
    							Labels: pulumi.StringArray{
    								pulumi.String("string"),
    							},
    							TokenRef: &argocd.ApplicationSetSpecGeneratorPullRequestGithubTokenRefArgs{
    								Key:        pulumi.String("string"),
    								SecretName: pulumi.String("string"),
    							},
    						},
    						Gitlab: &argocd.ApplicationSetSpecGeneratorPullRequestGitlabArgs{
    							Project: pulumi.String("string"),
    							Api:     pulumi.String("string"),
    							Labels: pulumi.StringArray{
    								pulumi.String("string"),
    							},
    							PullRequestState: pulumi.String("string"),
    							TokenRef: &argocd.ApplicationSetSpecGeneratorPullRequestGitlabTokenRefArgs{
    								Key:        pulumi.String("string"),
    								SecretName: pulumi.String("string"),
    							},
    						},
    						RequeueAfterSeconds: pulumi.String("string"),
    						Template: &argocd.ApplicationSetSpecGeneratorPullRequestTemplateArgs{
    							Metadata: &argocd.ApplicationSetSpecGeneratorPullRequestTemplateMetadataArgs{
    								Annotations: pulumi.StringMap{
    									"string": pulumi.String("string"),
    								},
    								Finalizers: pulumi.StringArray{
    									pulumi.String("string"),
    								},
    								Labels: pulumi.StringMap{
    									"string": pulumi.String("string"),
    								},
    								Name:      pulumi.String("string"),
    								Namespace: pulumi.String("string"),
    							},
    							Spec: &argocd.ApplicationSetSpecGeneratorPullRequestTemplateSpecArgs{
    								Destination: &argocd.ApplicationSetSpecGeneratorPullRequestTemplateSpecDestinationArgs{
    									Name:      pulumi.String("string"),
    									Namespace: pulumi.String("string"),
    									Server:    pulumi.String("string"),
    								},
    								IgnoreDifferences: argocd.ApplicationSetSpecGeneratorPullRequestTemplateSpecIgnoreDifferenceArray{
    									&argocd.ApplicationSetSpecGeneratorPullRequestTemplateSpecIgnoreDifferenceArgs{
    										Group: pulumi.String("string"),
    										JqPathExpressions: pulumi.StringArray{
    											pulumi.String("string"),
    										},
    										JsonPointers: pulumi.StringArray{
    											pulumi.String("string"),
    										},
    										Kind: pulumi.String("string"),
    										ManagedFieldsManagers: pulumi.StringArray{
    											pulumi.String("string"),
    										},
    										Name:      pulumi.String("string"),
    										Namespace: pulumi.String("string"),
    									},
    								},
    								Infos: argocd.ApplicationSetSpecGeneratorPullRequestTemplateSpecInfoArray{
    									&argocd.ApplicationSetSpecGeneratorPullRequestTemplateSpecInfoArgs{
    										Name:  pulumi.String("string"),
    										Value: pulumi.String("string"),
    									},
    								},
    								Project:              pulumi.String("string"),
    								RevisionHistoryLimit: pulumi.Int(0),
    								Sources: argocd.ApplicationSetSpecGeneratorPullRequestTemplateSpecSourceArray{
    									&argocd.ApplicationSetSpecGeneratorPullRequestTemplateSpecSourceArgs{
    										Chart: pulumi.String("string"),
    										Directory: &argocd.ApplicationSetSpecGeneratorPullRequestTemplateSpecSourceDirectoryArgs{
    											Exclude: pulumi.String("string"),
    											Include: pulumi.String("string"),
    											Jsonnet: &argocd.ApplicationSetSpecGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetArgs{
    												ExtVars: argocd.ApplicationSetSpecGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetExtVarArray{
    													&argocd.ApplicationSetSpecGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetExtVarArgs{
    														Code:  pulumi.Bool(false),
    														Name:  pulumi.String("string"),
    														Value: pulumi.String("string"),
    													},
    												},
    												Libs: pulumi.StringArray{
    													pulumi.String("string"),
    												},
    												Tlas: argocd.ApplicationSetSpecGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetTlaArray{
    													&argocd.ApplicationSetSpecGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetTlaArgs{
    														Code:  pulumi.Bool(false),
    														Name:  pulumi.String("string"),
    														Value: pulumi.String("string"),
    													},
    												},
    											},
    											Recurse: pulumi.Bool(false),
    										},
    										Helm: &argocd.ApplicationSetSpecGeneratorPullRequestTemplateSpecSourceHelmArgs{
    											FileParameters: argocd.ApplicationSetSpecGeneratorPullRequestTemplateSpecSourceHelmFileParameterArray{
    												&argocd.ApplicationSetSpecGeneratorPullRequestTemplateSpecSourceHelmFileParameterArgs{
    													Name: pulumi.String("string"),
    													Path: pulumi.String("string"),
    												},
    											},
    											IgnoreMissingValueFiles: pulumi.Bool(false),
    											Parameters: argocd.ApplicationSetSpecGeneratorPullRequestTemplateSpecSourceHelmParameterArray{
    												&argocd.ApplicationSetSpecGeneratorPullRequestTemplateSpecSourceHelmParameterArgs{
    													ForceString: pulumi.Bool(false),
    													Name:        pulumi.String("string"),
    													Value:       pulumi.String("string"),
    												},
    											},
    											PassCredentials: pulumi.Bool(false),
    											ReleaseName:     pulumi.String("string"),
    											SkipCrds:        pulumi.Bool(false),
    											ValueFiles: pulumi.StringArray{
    												pulumi.String("string"),
    											},
    											Values:  pulumi.String("string"),
    											Version: pulumi.String("string"),
    										},
    										Kustomize: &argocd.ApplicationSetSpecGeneratorPullRequestTemplateSpecSourceKustomizeArgs{
    											CommonAnnotations: pulumi.StringMap{
    												"string": pulumi.String("string"),
    											},
    											CommonLabels: pulumi.StringMap{
    												"string": pulumi.String("string"),
    											},
    											Images: pulumi.StringArray{
    												pulumi.String("string"),
    											},
    											NamePrefix: pulumi.String("string"),
    											NameSuffix: pulumi.String("string"),
    											Patches: argocd.ApplicationSetSpecGeneratorPullRequestTemplateSpecSourceKustomizePatchArray{
    												&argocd.ApplicationSetSpecGeneratorPullRequestTemplateSpecSourceKustomizePatchArgs{
    													Target: &argocd.ApplicationSetSpecGeneratorPullRequestTemplateSpecSourceKustomizePatchTargetArgs{
    														AnnotationSelector: pulumi.String("string"),
    														Group:              pulumi.String("string"),
    														Kind:               pulumi.String("string"),
    														LabelSelector:      pulumi.String("string"),
    														Name:               pulumi.String("string"),
    														Namespace:          pulumi.String("string"),
    														Version:            pulumi.String("string"),
    													},
    													Options: pulumi.BoolMap{
    														"string": pulumi.Bool(false),
    													},
    													Patch: pulumi.String("string"),
    													Path:  pulumi.String("string"),
    												},
    											},
    											Version: pulumi.String("string"),
    										},
    										Path: pulumi.String("string"),
    										Plugin: &argocd.ApplicationSetSpecGeneratorPullRequestTemplateSpecSourcePluginArgs{
    											Envs: argocd.ApplicationSetSpecGeneratorPullRequestTemplateSpecSourcePluginEnvArray{
    												&argocd.ApplicationSetSpecGeneratorPullRequestTemplateSpecSourcePluginEnvArgs{
    													Name:  pulumi.String("string"),
    													Value: pulumi.String("string"),
    												},
    											},
    											Name: pulumi.String("string"),
    										},
    										Ref:            pulumi.String("string"),
    										RepoUrl:        pulumi.String("string"),
    										TargetRevision: pulumi.String("string"),
    									},
    								},
    								SyncPolicy: &argocd.ApplicationSetSpecGeneratorPullRequestTemplateSpecSyncPolicyArgs{
    									Automated: &argocd.ApplicationSetSpecGeneratorPullRequestTemplateSpecSyncPolicyAutomatedArgs{
    										AllowEmpty: pulumi.Bool(false),
    										Prune:      pulumi.Bool(false),
    										SelfHeal:   pulumi.Bool(false),
    									},
    									ManagedNamespaceMetadata: &argocd.ApplicationSetSpecGeneratorPullRequestTemplateSpecSyncPolicyManagedNamespaceMetadataArgs{
    										Annotations: pulumi.StringMap{
    											"string": pulumi.String("string"),
    										},
    										Labels: pulumi.StringMap{
    											"string": pulumi.String("string"),
    										},
    									},
    									Retry: &argocd.ApplicationSetSpecGeneratorPullRequestTemplateSpecSyncPolicyRetryArgs{
    										Backoff: &argocd.ApplicationSetSpecGeneratorPullRequestTemplateSpecSyncPolicyRetryBackoffArgs{
    											Duration:    pulumi.String("string"),
    											Factor:      pulumi.String("string"),
    											MaxDuration: pulumi.String("string"),
    										},
    										Limit: pulumi.String("string"),
    									},
    									SyncOptions: pulumi.StringArray{
    										pulumi.String("string"),
    									},
    								},
    							},
    						},
    					},
    				},
    				ScmProviders: argocd.ApplicationSetSpecGeneratorScmProviderArray{
    					&argocd.ApplicationSetSpecGeneratorScmProviderArgs{
    						AzureDevops: &argocd.ApplicationSetSpecGeneratorScmProviderAzureDevopsArgs{
    							Organization: pulumi.String("string"),
    							TeamProject:  pulumi.String("string"),
    							AccessTokenRef: &argocd.ApplicationSetSpecGeneratorScmProviderAzureDevopsAccessTokenRefArgs{
    								Key:        pulumi.String("string"),
    								SecretName: pulumi.String("string"),
    							},
    							AllBranches: pulumi.Bool(false),
    							Api:         pulumi.String("string"),
    						},
    						BitbucketCloud: &argocd.ApplicationSetSpecGeneratorScmProviderBitbucketCloudArgs{
    							Owner:       pulumi.String("string"),
    							User:        pulumi.String("string"),
    							AllBranches: pulumi.Bool(false),
    							AppPasswordRef: &argocd.ApplicationSetSpecGeneratorScmProviderBitbucketCloudAppPasswordRefArgs{
    								Key:        pulumi.String("string"),
    								SecretName: pulumi.String("string"),
    							},
    						},
    						BitbucketServer: &argocd.ApplicationSetSpecGeneratorScmProviderBitbucketServerArgs{
    							Api:         pulumi.String("string"),
    							Project:     pulumi.String("string"),
    							AllBranches: pulumi.Bool(false),
    							BasicAuth: &argocd.ApplicationSetSpecGeneratorScmProviderBitbucketServerBasicAuthArgs{
    								PasswordRef: &argocd.ApplicationSetSpecGeneratorScmProviderBitbucketServerBasicAuthPasswordRefArgs{
    									Key:        pulumi.String("string"),
    									SecretName: pulumi.String("string"),
    								},
    								Username: pulumi.String("string"),
    							},
    						},
    						CloneProtocol: pulumi.String("string"),
    						Filters: argocd.ApplicationSetSpecGeneratorScmProviderFilterArray{
    							&argocd.ApplicationSetSpecGeneratorScmProviderFilterArgs{
    								BranchMatch: pulumi.String("string"),
    								LabelMatch:  pulumi.String("string"),
    								PathsDoNotExists: pulumi.StringArray{
    									pulumi.String("string"),
    								},
    								PathsExists: pulumi.StringArray{
    									pulumi.String("string"),
    								},
    								RepositoryMatch: pulumi.String("string"),
    							},
    						},
    						Gitea: &argocd.ApplicationSetSpecGeneratorScmProviderGiteaArgs{
    							Owner:       pulumi.String("string"),
    							AllBranches: pulumi.Bool(false),
    							Api:         pulumi.String("string"),
    							Insecure:    pulumi.Bool(false),
    							TokenRef: &argocd.ApplicationSetSpecGeneratorScmProviderGiteaTokenRefArgs{
    								Key:        pulumi.String("string"),
    								SecretName: pulumi.String("string"),
    							},
    						},
    						Github: &argocd.ApplicationSetSpecGeneratorScmProviderGithubArgs{
    							Organization:  pulumi.String("string"),
    							AllBranches:   pulumi.Bool(false),
    							Api:           pulumi.String("string"),
    							AppSecretName: pulumi.String("string"),
    							TokenRef: &argocd.ApplicationSetSpecGeneratorScmProviderGithubTokenRefArgs{
    								Key:        pulumi.String("string"),
    								SecretName: pulumi.String("string"),
    							},
    						},
    						Gitlab: &argocd.ApplicationSetSpecGeneratorScmProviderGitlabArgs{
    							Group:            pulumi.String("string"),
    							AllBranches:      pulumi.Bool(false),
    							Api:              pulumi.String("string"),
    							IncludeSubgroups: pulumi.Bool(false),
    							TokenRef: &argocd.ApplicationSetSpecGeneratorScmProviderGitlabTokenRefArgs{
    								Key:        pulumi.String("string"),
    								SecretName: pulumi.String("string"),
    							},
    						},
    						RequeueAfterSeconds: pulumi.String("string"),
    						Template: &argocd.ApplicationSetSpecGeneratorScmProviderTemplateArgs{
    							Metadata: &argocd.ApplicationSetSpecGeneratorScmProviderTemplateMetadataArgs{
    								Annotations: pulumi.StringMap{
    									"string": pulumi.String("string"),
    								},
    								Finalizers: pulumi.StringArray{
    									pulumi.String("string"),
    								},
    								Labels: pulumi.StringMap{
    									"string": pulumi.String("string"),
    								},
    								Name:      pulumi.String("string"),
    								Namespace: pulumi.String("string"),
    							},
    							Spec: &argocd.ApplicationSetSpecGeneratorScmProviderTemplateSpecArgs{
    								Destination: &argocd.ApplicationSetSpecGeneratorScmProviderTemplateSpecDestinationArgs{
    									Name:      pulumi.String("string"),
    									Namespace: pulumi.String("string"),
    									Server:    pulumi.String("string"),
    								},
    								IgnoreDifferences: argocd.ApplicationSetSpecGeneratorScmProviderTemplateSpecIgnoreDifferenceArray{
    									&argocd.ApplicationSetSpecGeneratorScmProviderTemplateSpecIgnoreDifferenceArgs{
    										Group: pulumi.String("string"),
    										JqPathExpressions: pulumi.StringArray{
    											pulumi.String("string"),
    										},
    										JsonPointers: pulumi.StringArray{
    											pulumi.String("string"),
    										},
    										Kind: pulumi.String("string"),
    										ManagedFieldsManagers: pulumi.StringArray{
    											pulumi.String("string"),
    										},
    										Name:      pulumi.String("string"),
    										Namespace: pulumi.String("string"),
    									},
    								},
    								Infos: argocd.ApplicationSetSpecGeneratorScmProviderTemplateSpecInfoArray{
    									&argocd.ApplicationSetSpecGeneratorScmProviderTemplateSpecInfoArgs{
    										Name:  pulumi.String("string"),
    										Value: pulumi.String("string"),
    									},
    								},
    								Project:              pulumi.String("string"),
    								RevisionHistoryLimit: pulumi.Int(0),
    								Sources: argocd.ApplicationSetSpecGeneratorScmProviderTemplateSpecSourceArray{
    									&argocd.ApplicationSetSpecGeneratorScmProviderTemplateSpecSourceArgs{
    										Chart: pulumi.String("string"),
    										Directory: &argocd.ApplicationSetSpecGeneratorScmProviderTemplateSpecSourceDirectoryArgs{
    											Exclude: pulumi.String("string"),
    											Include: pulumi.String("string"),
    											Jsonnet: &argocd.ApplicationSetSpecGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetArgs{
    												ExtVars: argocd.ApplicationSetSpecGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetExtVarArray{
    													&argocd.ApplicationSetSpecGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetExtVarArgs{
    														Code:  pulumi.Bool(false),
    														Name:  pulumi.String("string"),
    														Value: pulumi.String("string"),
    													},
    												},
    												Libs: pulumi.StringArray{
    													pulumi.String("string"),
    												},
    												Tlas: argocd.ApplicationSetSpecGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetTlaArray{
    													&argocd.ApplicationSetSpecGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetTlaArgs{
    														Code:  pulumi.Bool(false),
    														Name:  pulumi.String("string"),
    														Value: pulumi.String("string"),
    													},
    												},
    											},
    											Recurse: pulumi.Bool(false),
    										},
    										Helm: &argocd.ApplicationSetSpecGeneratorScmProviderTemplateSpecSourceHelmArgs{
    											FileParameters: argocd.ApplicationSetSpecGeneratorScmProviderTemplateSpecSourceHelmFileParameterArray{
    												&argocd.ApplicationSetSpecGeneratorScmProviderTemplateSpecSourceHelmFileParameterArgs{
    													Name: pulumi.String("string"),
    													Path: pulumi.String("string"),
    												},
    											},
    											IgnoreMissingValueFiles: pulumi.Bool(false),
    											Parameters: argocd.ApplicationSetSpecGeneratorScmProviderTemplateSpecSourceHelmParameterArray{
    												&argocd.ApplicationSetSpecGeneratorScmProviderTemplateSpecSourceHelmParameterArgs{
    													ForceString: pulumi.Bool(false),
    													Name:        pulumi.String("string"),
    													Value:       pulumi.String("string"),
    												},
    											},
    											PassCredentials: pulumi.Bool(false),
    											ReleaseName:     pulumi.String("string"),
    											SkipCrds:        pulumi.Bool(false),
    											ValueFiles: pulumi.StringArray{
    												pulumi.String("string"),
    											},
    											Values:  pulumi.String("string"),
    											Version: pulumi.String("string"),
    										},
    										Kustomize: &argocd.ApplicationSetSpecGeneratorScmProviderTemplateSpecSourceKustomizeArgs{
    											CommonAnnotations: pulumi.StringMap{
    												"string": pulumi.String("string"),
    											},
    											CommonLabels: pulumi.StringMap{
    												"string": pulumi.String("string"),
    											},
    											Images: pulumi.StringArray{
    												pulumi.String("string"),
    											},
    											NamePrefix: pulumi.String("string"),
    											NameSuffix: pulumi.String("string"),
    											Patches: argocd.ApplicationSetSpecGeneratorScmProviderTemplateSpecSourceKustomizePatchArray{
    												&argocd.ApplicationSetSpecGeneratorScmProviderTemplateSpecSourceKustomizePatchArgs{
    													Target: &argocd.ApplicationSetSpecGeneratorScmProviderTemplateSpecSourceKustomizePatchTargetArgs{
    														AnnotationSelector: pulumi.String("string"),
    														Group:              pulumi.String("string"),
    														Kind:               pulumi.String("string"),
    														LabelSelector:      pulumi.String("string"),
    														Name:               pulumi.String("string"),
    														Namespace:          pulumi.String("string"),
    														Version:            pulumi.String("string"),
    													},
    													Options: pulumi.BoolMap{
    														"string": pulumi.Bool(false),
    													},
    													Patch: pulumi.String("string"),
    													Path:  pulumi.String("string"),
    												},
    											},
    											Version: pulumi.String("string"),
    										},
    										Path: pulumi.String("string"),
    										Plugin: &argocd.ApplicationSetSpecGeneratorScmProviderTemplateSpecSourcePluginArgs{
    											Envs: argocd.ApplicationSetSpecGeneratorScmProviderTemplateSpecSourcePluginEnvArray{
    												&argocd.ApplicationSetSpecGeneratorScmProviderTemplateSpecSourcePluginEnvArgs{
    													Name:  pulumi.String("string"),
    													Value: pulumi.String("string"),
    												},
    											},
    											Name: pulumi.String("string"),
    										},
    										Ref:            pulumi.String("string"),
    										RepoUrl:        pulumi.String("string"),
    										TargetRevision: pulumi.String("string"),
    									},
    								},
    								SyncPolicy: &argocd.ApplicationSetSpecGeneratorScmProviderTemplateSpecSyncPolicyArgs{
    									Automated: &argocd.ApplicationSetSpecGeneratorScmProviderTemplateSpecSyncPolicyAutomatedArgs{
    										AllowEmpty: pulumi.Bool(false),
    										Prune:      pulumi.Bool(false),
    										SelfHeal:   pulumi.Bool(false),
    									},
    									ManagedNamespaceMetadata: &argocd.ApplicationSetSpecGeneratorScmProviderTemplateSpecSyncPolicyManagedNamespaceMetadataArgs{
    										Annotations: pulumi.StringMap{
    											"string": pulumi.String("string"),
    										},
    										Labels: pulumi.StringMap{
    											"string": pulumi.String("string"),
    										},
    									},
    									Retry: &argocd.ApplicationSetSpecGeneratorScmProviderTemplateSpecSyncPolicyRetryArgs{
    										Backoff: &argocd.ApplicationSetSpecGeneratorScmProviderTemplateSpecSyncPolicyRetryBackoffArgs{
    											Duration:    pulumi.String("string"),
    											Factor:      pulumi.String("string"),
    											MaxDuration: pulumi.String("string"),
    										},
    										Limit: pulumi.String("string"),
    									},
    									SyncOptions: pulumi.StringArray{
    										pulumi.String("string"),
    									},
    								},
    							},
    						},
    					},
    				},
    				Selector: &argocd.ApplicationSetSpecGeneratorSelectorArgs{
    					MatchExpressions: argocd.ApplicationSetSpecGeneratorSelectorMatchExpressionArray{
    						&argocd.ApplicationSetSpecGeneratorSelectorMatchExpressionArgs{
    							Key:      pulumi.String("string"),
    							Operator: pulumi.String("string"),
    							Values: pulumi.StringArray{
    								pulumi.String("string"),
    							},
    						},
    					},
    					MatchLabels: pulumi.StringMap{
    						"string": pulumi.String("string"),
    					},
    				},
    			},
    		},
    		Template: &argocd.ApplicationSetSpecTemplateArgs{
    			Metadata: &argocd.ApplicationSetSpecTemplateMetadataArgs{
    				Name: pulumi.String("string"),
    				Annotations: pulumi.StringMap{
    					"string": pulumi.String("string"),
    				},
    				Finalizers: pulumi.StringArray{
    					pulumi.String("string"),
    				},
    				Labels: pulumi.StringMap{
    					"string": pulumi.String("string"),
    				},
    				Namespace: pulumi.String("string"),
    			},
    			Spec: &argocd.ApplicationSetSpecTemplateSpecArgs{
    				Destination: &argocd.ApplicationSetSpecTemplateSpecDestinationArgs{
    					Name:      pulumi.String("string"),
    					Namespace: pulumi.String("string"),
    					Server:    pulumi.String("string"),
    				},
    				Sources: argocd.ApplicationSetSpecTemplateSpecSourceArray{
    					&argocd.ApplicationSetSpecTemplateSpecSourceArgs{
    						RepoUrl: pulumi.String("string"),
    						Chart:   pulumi.String("string"),
    						Directory: &argocd.ApplicationSetSpecTemplateSpecSourceDirectoryArgs{
    							Exclude: pulumi.String("string"),
    							Include: pulumi.String("string"),
    							Jsonnet: &argocd.ApplicationSetSpecTemplateSpecSourceDirectoryJsonnetArgs{
    								ExtVars: argocd.ApplicationSetSpecTemplateSpecSourceDirectoryJsonnetExtVarArray{
    									&argocd.ApplicationSetSpecTemplateSpecSourceDirectoryJsonnetExtVarArgs{
    										Code:  pulumi.Bool(false),
    										Name:  pulumi.String("string"),
    										Value: pulumi.String("string"),
    									},
    								},
    								Libs: pulumi.StringArray{
    									pulumi.String("string"),
    								},
    								Tlas: argocd.ApplicationSetSpecTemplateSpecSourceDirectoryJsonnetTlaArray{
    									&argocd.ApplicationSetSpecTemplateSpecSourceDirectoryJsonnetTlaArgs{
    										Code:  pulumi.Bool(false),
    										Name:  pulumi.String("string"),
    										Value: pulumi.String("string"),
    									},
    								},
    							},
    							Recurse: pulumi.Bool(false),
    						},
    						Helm: &argocd.ApplicationSetSpecTemplateSpecSourceHelmArgs{
    							FileParameters: argocd.ApplicationSetSpecTemplateSpecSourceHelmFileParameterArray{
    								&argocd.ApplicationSetSpecTemplateSpecSourceHelmFileParameterArgs{
    									Name: pulumi.String("string"),
    									Path: pulumi.String("string"),
    								},
    							},
    							IgnoreMissingValueFiles: pulumi.Bool(false),
    							Parameters: argocd.ApplicationSetSpecTemplateSpecSourceHelmParameterArray{
    								&argocd.ApplicationSetSpecTemplateSpecSourceHelmParameterArgs{
    									ForceString: pulumi.Bool(false),
    									Name:        pulumi.String("string"),
    									Value:       pulumi.String("string"),
    								},
    							},
    							PassCredentials: pulumi.Bool(false),
    							ReleaseName:     pulumi.String("string"),
    							SkipCrds:        pulumi.Bool(false),
    							ValueFiles: pulumi.StringArray{
    								pulumi.String("string"),
    							},
    							Values:  pulumi.String("string"),
    							Version: pulumi.String("string"),
    						},
    						Kustomize: &argocd.ApplicationSetSpecTemplateSpecSourceKustomizeArgs{
    							CommonAnnotations: pulumi.StringMap{
    								"string": pulumi.String("string"),
    							},
    							CommonLabels: pulumi.StringMap{
    								"string": pulumi.String("string"),
    							},
    							Images: pulumi.StringArray{
    								pulumi.String("string"),
    							},
    							NamePrefix: pulumi.String("string"),
    							NameSuffix: pulumi.String("string"),
    							Patches: argocd.ApplicationSetSpecTemplateSpecSourceKustomizePatchArray{
    								&argocd.ApplicationSetSpecTemplateSpecSourceKustomizePatchArgs{
    									Target: &argocd.ApplicationSetSpecTemplateSpecSourceKustomizePatchTargetArgs{
    										AnnotationSelector: pulumi.String("string"),
    										Group:              pulumi.String("string"),
    										Kind:               pulumi.String("string"),
    										LabelSelector:      pulumi.String("string"),
    										Name:               pulumi.String("string"),
    										Namespace:          pulumi.String("string"),
    										Version:            pulumi.String("string"),
    									},
    									Options: pulumi.BoolMap{
    										"string": pulumi.Bool(false),
    									},
    									Patch: pulumi.String("string"),
    									Path:  pulumi.String("string"),
    								},
    							},
    							Version: pulumi.String("string"),
    						},
    						Path: pulumi.String("string"),
    						Plugin: &argocd.ApplicationSetSpecTemplateSpecSourcePluginArgs{
    							Envs: argocd.ApplicationSetSpecTemplateSpecSourcePluginEnvArray{
    								&argocd.ApplicationSetSpecTemplateSpecSourcePluginEnvArgs{
    									Name:  pulumi.String("string"),
    									Value: pulumi.String("string"),
    								},
    							},
    							Name: pulumi.String("string"),
    						},
    						Ref:            pulumi.String("string"),
    						TargetRevision: pulumi.String("string"),
    					},
    				},
    				IgnoreDifferences: argocd.ApplicationSetSpecTemplateSpecIgnoreDifferenceArray{
    					&argocd.ApplicationSetSpecTemplateSpecIgnoreDifferenceArgs{
    						Group: pulumi.String("string"),
    						JqPathExpressions: pulumi.StringArray{
    							pulumi.String("string"),
    						},
    						JsonPointers: pulumi.StringArray{
    							pulumi.String("string"),
    						},
    						Kind: pulumi.String("string"),
    						ManagedFieldsManagers: pulumi.StringArray{
    							pulumi.String("string"),
    						},
    						Name:      pulumi.String("string"),
    						Namespace: pulumi.String("string"),
    					},
    				},
    				Infos: argocd.ApplicationSetSpecTemplateSpecInfoArray{
    					&argocd.ApplicationSetSpecTemplateSpecInfoArgs{
    						Name:  pulumi.String("string"),
    						Value: pulumi.String("string"),
    					},
    				},
    				Project:              pulumi.String("string"),
    				RevisionHistoryLimit: pulumi.Int(0),
    				SyncPolicy: &argocd.ApplicationSetSpecTemplateSpecSyncPolicyArgs{
    					Automated: &argocd.ApplicationSetSpecTemplateSpecSyncPolicyAutomatedArgs{
    						AllowEmpty: pulumi.Bool(false),
    						Prune:      pulumi.Bool(false),
    						SelfHeal:   pulumi.Bool(false),
    					},
    					ManagedNamespaceMetadata: &argocd.ApplicationSetSpecTemplateSpecSyncPolicyManagedNamespaceMetadataArgs{
    						Annotations: pulumi.StringMap{
    							"string": pulumi.String("string"),
    						},
    						Labels: pulumi.StringMap{
    							"string": pulumi.String("string"),
    						},
    					},
    					Retry: &argocd.ApplicationSetSpecTemplateSpecSyncPolicyRetryArgs{
    						Backoff: &argocd.ApplicationSetSpecTemplateSpecSyncPolicyRetryBackoffArgs{
    							Duration:    pulumi.String("string"),
    							Factor:      pulumi.String("string"),
    							MaxDuration: pulumi.String("string"),
    						},
    						Limit: pulumi.String("string"),
    					},
    					SyncOptions: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    				},
    			},
    		},
    		GoTemplate: pulumi.Bool(false),
    		GoTemplateOptions: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		IgnoreApplicationDifferences: argocd.ApplicationSetSpecIgnoreApplicationDifferenceArray{
    			&argocd.ApplicationSetSpecIgnoreApplicationDifferenceArgs{
    				JqPathExpressions: pulumi.StringArray{
    					pulumi.String("string"),
    				},
    				JsonPointers: pulumi.StringArray{
    					pulumi.String("string"),
    				},
    				Name: pulumi.String("string"),
    			},
    		},
    		Strategy: &argocd.ApplicationSetSpecStrategyArgs{
    			Type: pulumi.String("string"),
    			RollingSyncs: argocd.ApplicationSetSpecStrategyRollingSyncArray{
    				&argocd.ApplicationSetSpecStrategyRollingSyncArgs{
    					Steps: argocd.ApplicationSetSpecStrategyRollingSyncStepArray{
    						&argocd.ApplicationSetSpecStrategyRollingSyncStepArgs{
    							MatchExpressions: argocd.ApplicationSetSpecStrategyRollingSyncStepMatchExpressionArray{
    								&argocd.ApplicationSetSpecStrategyRollingSyncStepMatchExpressionArgs{
    									Key:      pulumi.String("string"),
    									Operator: pulumi.String("string"),
    									Values: pulumi.StringArray{
    										pulumi.String("string"),
    									},
    								},
    							},
    							MaxUpdate: pulumi.String("string"),
    						},
    					},
    				},
    			},
    		},
    		SyncPolicy: &argocd.ApplicationSetSpecSyncPolicyArgs{
    			ApplicationsSync:            pulumi.String("string"),
    			PreserveResourcesOnDeletion: pulumi.Bool(false),
    		},
    		TemplatePatch: pulumi.String("string"),
    	},
    })
    
    var applicationSetResource = new ApplicationSet("applicationSetResource", ApplicationSetArgs.builder()
        .metadata(ApplicationSetMetadataArgs.builder()
            .annotations(Map.of("string", "string"))
            .generation(0)
            .labels(Map.of("string", "string"))
            .name("string")
            .namespace("string")
            .resourceVersion("string")
            .uid("string")
            .build())
        .spec(ApplicationSetSpecArgs.builder()
            .generators(ApplicationSetSpecGeneratorArgs.builder()
                .clusterDecisionResources(ApplicationSetSpecGeneratorClusterDecisionResourceArgs.builder()
                    .configMapRef("string")
                    .labelSelector(ApplicationSetSpecGeneratorClusterDecisionResourceLabelSelectorArgs.builder()
                        .matchExpressions(ApplicationSetSpecGeneratorClusterDecisionResourceLabelSelectorMatchExpressionArgs.builder()
                            .key("string")
                            .operator("string")
                            .values("string")
                            .build())
                        .matchLabels(Map.of("string", "string"))
                        .build())
                    .name("string")
                    .requeueAfterSeconds("string")
                    .template(ApplicationSetSpecGeneratorClusterDecisionResourceTemplateArgs.builder()
                        .metadata(ApplicationSetSpecGeneratorClusterDecisionResourceTemplateMetadataArgs.builder()
                            .annotations(Map.of("string", "string"))
                            .finalizers("string")
                            .labels(Map.of("string", "string"))
                            .name("string")
                            .namespace("string")
                            .build())
                        .spec(ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecArgs.builder()
                            .destination(ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecDestinationArgs.builder()
                                .name("string")
                                .namespace("string")
                                .server("string")
                                .build())
                            .ignoreDifferences(ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecIgnoreDifferenceArgs.builder()
                                .group("string")
                                .jqPathExpressions("string")
                                .jsonPointers("string")
                                .kind("string")
                                .managedFieldsManagers("string")
                                .name("string")
                                .namespace("string")
                                .build())
                            .infos(ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecInfoArgs.builder()
                                .name("string")
                                .value("string")
                                .build())
                            .project("string")
                            .revisionHistoryLimit(0)
                            .sources(ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceArgs.builder()
                                .chart("string")
                                .directory(ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryArgs.builder()
                                    .exclude("string")
                                    .include("string")
                                    .jsonnet(ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetArgs.builder()
                                        .extVars(ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetExtVarArgs.builder()
                                            .code(false)
                                            .name("string")
                                            .value("string")
                                            .build())
                                        .libs("string")
                                        .tlas(ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetTlaArgs.builder()
                                            .code(false)
                                            .name("string")
                                            .value("string")
                                            .build())
                                        .build())
                                    .recurse(false)
                                    .build())
                                .helm(ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceHelmArgs.builder()
                                    .fileParameters(ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameterArgs.builder()
                                        .name("string")
                                        .path("string")
                                        .build())
                                    .ignoreMissingValueFiles(false)
                                    .parameters(ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameterArgs.builder()
                                        .forceString(false)
                                        .name("string")
                                        .value("string")
                                        .build())
                                    .passCredentials(false)
                                    .releaseName("string")
                                    .skipCrds(false)
                                    .valueFiles("string")
                                    .values("string")
                                    .version("string")
                                    .build())
                                .kustomize(ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceKustomizeArgs.builder()
                                    .commonAnnotations(Map.of("string", "string"))
                                    .commonLabels(Map.of("string", "string"))
                                    .images("string")
                                    .namePrefix("string")
                                    .nameSuffix("string")
                                    .patches(ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchArgs.builder()
                                        .target(ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTargetArgs.builder()
                                            .annotationSelector("string")
                                            .group("string")
                                            .kind("string")
                                            .labelSelector("string")
                                            .name("string")
                                            .namespace("string")
                                            .version("string")
                                            .build())
                                        .options(Map.of("string", false))
                                        .patch("string")
                                        .path("string")
                                        .build())
                                    .version("string")
                                    .build())
                                .path("string")
                                .plugin(ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourcePluginArgs.builder()
                                    .envs(ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnvArgs.builder()
                                        .name("string")
                                        .value("string")
                                        .build())
                                    .name("string")
                                    .build())
                                .ref("string")
                                .repoUrl("string")
                                .targetRevision("string")
                                .build())
                            .syncPolicy(ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicyArgs.builder()
                                .automated(ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomatedArgs.builder()
                                    .allowEmpty(false)
                                    .prune(false)
                                    .selfHeal(false)
                                    .build())
                                .managedNamespaceMetadata(ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadataArgs.builder()
                                    .annotations(Map.of("string", "string"))
                                    .labels(Map.of("string", "string"))
                                    .build())
                                .retry(ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryArgs.builder()
                                    .backoff(ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoffArgs.builder()
                                        .duration("string")
                                        .factor("string")
                                        .maxDuration("string")
                                        .build())
                                    .limit("string")
                                    .build())
                                .syncOptions("string")
                                .build())
                            .build())
                        .build())
                    .values(Map.of("string", "string"))
                    .build())
                .clusters(ApplicationSetSpecGeneratorClusterArgs.builder()
                    .enabled(false)
                    .selector(ApplicationSetSpecGeneratorClusterSelectorArgs.builder()
                        .matchExpressions(ApplicationSetSpecGeneratorClusterSelectorMatchExpressionArgs.builder()
                            .key("string")
                            .operator("string")
                            .values("string")
                            .build())
                        .matchLabels(Map.of("string", "string"))
                        .build())
                    .template(ApplicationSetSpecGeneratorClusterTemplateArgs.builder()
                        .metadata(ApplicationSetSpecGeneratorClusterTemplateMetadataArgs.builder()
                            .annotations(Map.of("string", "string"))
                            .finalizers("string")
                            .labels(Map.of("string", "string"))
                            .name("string")
                            .namespace("string")
                            .build())
                        .spec(ApplicationSetSpecGeneratorClusterTemplateSpecArgs.builder()
                            .destination(ApplicationSetSpecGeneratorClusterTemplateSpecDestinationArgs.builder()
                                .name("string")
                                .namespace("string")
                                .server("string")
                                .build())
                            .ignoreDifferences(ApplicationSetSpecGeneratorClusterTemplateSpecIgnoreDifferenceArgs.builder()
                                .group("string")
                                .jqPathExpressions("string")
                                .jsonPointers("string")
                                .kind("string")
                                .managedFieldsManagers("string")
                                .name("string")
                                .namespace("string")
                                .build())
                            .infos(ApplicationSetSpecGeneratorClusterTemplateSpecInfoArgs.builder()
                                .name("string")
                                .value("string")
                                .build())
                            .project("string")
                            .revisionHistoryLimit(0)
                            .sources(ApplicationSetSpecGeneratorClusterTemplateSpecSourceArgs.builder()
                                .chart("string")
                                .directory(ApplicationSetSpecGeneratorClusterTemplateSpecSourceDirectoryArgs.builder()
                                    .exclude("string")
                                    .include("string")
                                    .jsonnet(ApplicationSetSpecGeneratorClusterTemplateSpecSourceDirectoryJsonnetArgs.builder()
                                        .extVars(ApplicationSetSpecGeneratorClusterTemplateSpecSourceDirectoryJsonnetExtVarArgs.builder()
                                            .code(false)
                                            .name("string")
                                            .value("string")
                                            .build())
                                        .libs("string")
                                        .tlas(ApplicationSetSpecGeneratorClusterTemplateSpecSourceDirectoryJsonnetTlaArgs.builder()
                                            .code(false)
                                            .name("string")
                                            .value("string")
                                            .build())
                                        .build())
                                    .recurse(false)
                                    .build())
                                .helm(ApplicationSetSpecGeneratorClusterTemplateSpecSourceHelmArgs.builder()
                                    .fileParameters(ApplicationSetSpecGeneratorClusterTemplateSpecSourceHelmFileParameterArgs.builder()
                                        .name("string")
                                        .path("string")
                                        .build())
                                    .ignoreMissingValueFiles(false)
                                    .parameters(ApplicationSetSpecGeneratorClusterTemplateSpecSourceHelmParameterArgs.builder()
                                        .forceString(false)
                                        .name("string")
                                        .value("string")
                                        .build())
                                    .passCredentials(false)
                                    .releaseName("string")
                                    .skipCrds(false)
                                    .valueFiles("string")
                                    .values("string")
                                    .version("string")
                                    .build())
                                .kustomize(ApplicationSetSpecGeneratorClusterTemplateSpecSourceKustomizeArgs.builder()
                                    .commonAnnotations(Map.of("string", "string"))
                                    .commonLabels(Map.of("string", "string"))
                                    .images("string")
                                    .namePrefix("string")
                                    .nameSuffix("string")
                                    .patches(ApplicationSetSpecGeneratorClusterTemplateSpecSourceKustomizePatchArgs.builder()
                                        .target(ApplicationSetSpecGeneratorClusterTemplateSpecSourceKustomizePatchTargetArgs.builder()
                                            .annotationSelector("string")
                                            .group("string")
                                            .kind("string")
                                            .labelSelector("string")
                                            .name("string")
                                            .namespace("string")
                                            .version("string")
                                            .build())
                                        .options(Map.of("string", false))
                                        .patch("string")
                                        .path("string")
                                        .build())
                                    .version("string")
                                    .build())
                                .path("string")
                                .plugin(ApplicationSetSpecGeneratorClusterTemplateSpecSourcePluginArgs.builder()
                                    .envs(ApplicationSetSpecGeneratorClusterTemplateSpecSourcePluginEnvArgs.builder()
                                        .name("string")
                                        .value("string")
                                        .build())
                                    .name("string")
                                    .build())
                                .ref("string")
                                .repoUrl("string")
                                .targetRevision("string")
                                .build())
                            .syncPolicy(ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicyArgs.builder()
                                .automated(ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicyAutomatedArgs.builder()
                                    .allowEmpty(false)
                                    .prune(false)
                                    .selfHeal(false)
                                    .build())
                                .managedNamespaceMetadata(ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadataArgs.builder()
                                    .annotations(Map.of("string", "string"))
                                    .labels(Map.of("string", "string"))
                                    .build())
                                .retry(ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicyRetryArgs.builder()
                                    .backoff(ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicyRetryBackoffArgs.builder()
                                        .duration("string")
                                        .factor("string")
                                        .maxDuration("string")
                                        .build())
                                    .limit("string")
                                    .build())
                                .syncOptions("string")
                                .build())
                            .build())
                        .build())
                    .values(Map.of("string", "string"))
                    .build())
                .gits(ApplicationSetSpecGeneratorGitArgs.builder()
                    .repoUrl("string")
                    .directories(ApplicationSetSpecGeneratorGitDirectoryArgs.builder()
                        .path("string")
                        .exclude(false)
                        .build())
                    .files(ApplicationSetSpecGeneratorGitFileArgs.builder()
                        .path("string")
                        .build())
                    .pathParamPrefix("string")
                    .revision("string")
                    .template(ApplicationSetSpecGeneratorGitTemplateArgs.builder()
                        .metadata(ApplicationSetSpecGeneratorGitTemplateMetadataArgs.builder()
                            .annotations(Map.of("string", "string"))
                            .finalizers("string")
                            .labels(Map.of("string", "string"))
                            .name("string")
                            .namespace("string")
                            .build())
                        .spec(ApplicationSetSpecGeneratorGitTemplateSpecArgs.builder()
                            .destination(ApplicationSetSpecGeneratorGitTemplateSpecDestinationArgs.builder()
                                .name("string")
                                .namespace("string")
                                .server("string")
                                .build())
                            .ignoreDifferences(ApplicationSetSpecGeneratorGitTemplateSpecIgnoreDifferenceArgs.builder()
                                .group("string")
                                .jqPathExpressions("string")
                                .jsonPointers("string")
                                .kind("string")
                                .managedFieldsManagers("string")
                                .name("string")
                                .namespace("string")
                                .build())
                            .infos(ApplicationSetSpecGeneratorGitTemplateSpecInfoArgs.builder()
                                .name("string")
                                .value("string")
                                .build())
                            .project("string")
                            .revisionHistoryLimit(0)
                            .sources(ApplicationSetSpecGeneratorGitTemplateSpecSourceArgs.builder()
                                .chart("string")
                                .directory(ApplicationSetSpecGeneratorGitTemplateSpecSourceDirectoryArgs.builder()
                                    .exclude("string")
                                    .include("string")
                                    .jsonnet(ApplicationSetSpecGeneratorGitTemplateSpecSourceDirectoryJsonnetArgs.builder()
                                        .extVars(ApplicationSetSpecGeneratorGitTemplateSpecSourceDirectoryJsonnetExtVarArgs.builder()
                                            .code(false)
                                            .name("string")
                                            .value("string")
                                            .build())
                                        .libs("string")
                                        .tlas(ApplicationSetSpecGeneratorGitTemplateSpecSourceDirectoryJsonnetTlaArgs.builder()
                                            .code(false)
                                            .name("string")
                                            .value("string")
                                            .build())
                                        .build())
                                    .recurse(false)
                                    .build())
                                .helm(ApplicationSetSpecGeneratorGitTemplateSpecSourceHelmArgs.builder()
                                    .fileParameters(ApplicationSetSpecGeneratorGitTemplateSpecSourceHelmFileParameterArgs.builder()
                                        .name("string")
                                        .path("string")
                                        .build())
                                    .ignoreMissingValueFiles(false)
                                    .parameters(ApplicationSetSpecGeneratorGitTemplateSpecSourceHelmParameterArgs.builder()
                                        .forceString(false)
                                        .name("string")
                                        .value("string")
                                        .build())
                                    .passCredentials(false)
                                    .releaseName("string")
                                    .skipCrds(false)
                                    .valueFiles("string")
                                    .values("string")
                                    .version("string")
                                    .build())
                                .kustomize(ApplicationSetSpecGeneratorGitTemplateSpecSourceKustomizeArgs.builder()
                                    .commonAnnotations(Map.of("string", "string"))
                                    .commonLabels(Map.of("string", "string"))
                                    .images("string")
                                    .namePrefix("string")
                                    .nameSuffix("string")
                                    .patches(ApplicationSetSpecGeneratorGitTemplateSpecSourceKustomizePatchArgs.builder()
                                        .target(ApplicationSetSpecGeneratorGitTemplateSpecSourceKustomizePatchTargetArgs.builder()
                                            .annotationSelector("string")
                                            .group("string")
                                            .kind("string")
                                            .labelSelector("string")
                                            .name("string")
                                            .namespace("string")
                                            .version("string")
                                            .build())
                                        .options(Map.of("string", false))
                                        .patch("string")
                                        .path("string")
                                        .build())
                                    .version("string")
                                    .build())
                                .path("string")
                                .plugin(ApplicationSetSpecGeneratorGitTemplateSpecSourcePluginArgs.builder()
                                    .envs(ApplicationSetSpecGeneratorGitTemplateSpecSourcePluginEnvArgs.builder()
                                        .name("string")
                                        .value("string")
                                        .build())
                                    .name("string")
                                    .build())
                                .ref("string")
                                .repoUrl("string")
                                .targetRevision("string")
                                .build())
                            .syncPolicy(ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicyArgs.builder()
                                .automated(ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicyAutomatedArgs.builder()
                                    .allowEmpty(false)
                                    .prune(false)
                                    .selfHeal(false)
                                    .build())
                                .managedNamespaceMetadata(ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadataArgs.builder()
                                    .annotations(Map.of("string", "string"))
                                    .labels(Map.of("string", "string"))
                                    .build())
                                .retry(ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicyRetryArgs.builder()
                                    .backoff(ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicyRetryBackoffArgs.builder()
                                        .duration("string")
                                        .factor("string")
                                        .maxDuration("string")
                                        .build())
                                    .limit("string")
                                    .build())
                                .syncOptions("string")
                                .build())
                            .build())
                        .build())
                    .values(Map.of("string", "string"))
                    .build())
                .lists(ApplicationSetSpecGeneratorListArgs.builder()
                    .elements(Map.of("string", "string"))
                    .template(ApplicationSetSpecGeneratorListTemplateArgs.builder()
                        .metadata(ApplicationSetSpecGeneratorListTemplateMetadataArgs.builder()
                            .annotations(Map.of("string", "string"))
                            .finalizers("string")
                            .labels(Map.of("string", "string"))
                            .name("string")
                            .namespace("string")
                            .build())
                        .spec(ApplicationSetSpecGeneratorListTemplateSpecArgs.builder()
                            .destination(ApplicationSetSpecGeneratorListTemplateSpecDestinationArgs.builder()
                                .name("string")
                                .namespace("string")
                                .server("string")
                                .build())
                            .ignoreDifferences(ApplicationSetSpecGeneratorListTemplateSpecIgnoreDifferenceArgs.builder()
                                .group("string")
                                .jqPathExpressions("string")
                                .jsonPointers("string")
                                .kind("string")
                                .managedFieldsManagers("string")
                                .name("string")
                                .namespace("string")
                                .build())
                            .infos(ApplicationSetSpecGeneratorListTemplateSpecInfoArgs.builder()
                                .name("string")
                                .value("string")
                                .build())
                            .project("string")
                            .revisionHistoryLimit(0)
                            .sources(ApplicationSetSpecGeneratorListTemplateSpecSourceArgs.builder()
                                .chart("string")
                                .directory(ApplicationSetSpecGeneratorListTemplateSpecSourceDirectoryArgs.builder()
                                    .exclude("string")
                                    .include("string")
                                    .jsonnet(ApplicationSetSpecGeneratorListTemplateSpecSourceDirectoryJsonnetArgs.builder()
                                        .extVars(ApplicationSetSpecGeneratorListTemplateSpecSourceDirectoryJsonnetExtVarArgs.builder()
                                            .code(false)
                                            .name("string")
                                            .value("string")
                                            .build())
                                        .libs("string")
                                        .tlas(ApplicationSetSpecGeneratorListTemplateSpecSourceDirectoryJsonnetTlaArgs.builder()
                                            .code(false)
                                            .name("string")
                                            .value("string")
                                            .build())
                                        .build())
                                    .recurse(false)
                                    .build())
                                .helm(ApplicationSetSpecGeneratorListTemplateSpecSourceHelmArgs.builder()
                                    .fileParameters(ApplicationSetSpecGeneratorListTemplateSpecSourceHelmFileParameterArgs.builder()
                                        .name("string")
                                        .path("string")
                                        .build())
                                    .ignoreMissingValueFiles(false)
                                    .parameters(ApplicationSetSpecGeneratorListTemplateSpecSourceHelmParameterArgs.builder()
                                        .forceString(false)
                                        .name("string")
                                        .value("string")
                                        .build())
                                    .passCredentials(false)
                                    .releaseName("string")
                                    .skipCrds(false)
                                    .valueFiles("string")
                                    .values("string")
                                    .version("string")
                                    .build())
                                .kustomize(ApplicationSetSpecGeneratorListTemplateSpecSourceKustomizeArgs.builder()
                                    .commonAnnotations(Map.of("string", "string"))
                                    .commonLabels(Map.of("string", "string"))
                                    .images("string")
                                    .namePrefix("string")
                                    .nameSuffix("string")
                                    .patches(ApplicationSetSpecGeneratorListTemplateSpecSourceKustomizePatchArgs.builder()
                                        .target(ApplicationSetSpecGeneratorListTemplateSpecSourceKustomizePatchTargetArgs.builder()
                                            .annotationSelector("string")
                                            .group("string")
                                            .kind("string")
                                            .labelSelector("string")
                                            .name("string")
                                            .namespace("string")
                                            .version("string")
                                            .build())
                                        .options(Map.of("string", false))
                                        .patch("string")
                                        .path("string")
                                        .build())
                                    .version("string")
                                    .build())
                                .path("string")
                                .plugin(ApplicationSetSpecGeneratorListTemplateSpecSourcePluginArgs.builder()
                                    .envs(ApplicationSetSpecGeneratorListTemplateSpecSourcePluginEnvArgs.builder()
                                        .name("string")
                                        .value("string")
                                        .build())
                                    .name("string")
                                    .build())
                                .ref("string")
                                .repoUrl("string")
                                .targetRevision("string")
                                .build())
                            .syncPolicy(ApplicationSetSpecGeneratorListTemplateSpecSyncPolicyArgs.builder()
                                .automated(ApplicationSetSpecGeneratorListTemplateSpecSyncPolicyAutomatedArgs.builder()
                                    .allowEmpty(false)
                                    .prune(false)
                                    .selfHeal(false)
                                    .build())
                                .managedNamespaceMetadata(ApplicationSetSpecGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadataArgs.builder()
                                    .annotations(Map.of("string", "string"))
                                    .labels(Map.of("string", "string"))
                                    .build())
                                .retry(ApplicationSetSpecGeneratorListTemplateSpecSyncPolicyRetryArgs.builder()
                                    .backoff(ApplicationSetSpecGeneratorListTemplateSpecSyncPolicyRetryBackoffArgs.builder()
                                        .duration("string")
                                        .factor("string")
                                        .maxDuration("string")
                                        .build())
                                    .limit("string")
                                    .build())
                                .syncOptions("string")
                                .build())
                            .build())
                        .build())
                    .build())
                .matrices(ApplicationSetSpecGeneratorMatrixArgs.builder()
                    .generators(ApplicationSetSpecGeneratorMatrixGeneratorArgs.builder()
                        .clusterDecisionResources(ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceArgs.builder()
                            .configMapRef("string")
                            .labelSelector(ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceLabelSelectorArgs.builder()
                                .matchExpressions(ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceLabelSelectorMatchExpressionArgs.builder()
                                    .key("string")
                                    .operator("string")
                                    .values("string")
                                    .build())
                                .matchLabels(Map.of("string", "string"))
                                .build())
                            .name("string")
                            .requeueAfterSeconds("string")
                            .template(ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateArgs.builder()
                                .metadata(ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateMetadataArgs.builder()
                                    .annotations(Map.of("string", "string"))
                                    .finalizers("string")
                                    .labels(Map.of("string", "string"))
                                    .name("string")
                                    .namespace("string")
                                    .build())
                                .spec(ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecArgs.builder()
                                    .destination(ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecDestinationArgs.builder()
                                        .name("string")
                                        .namespace("string")
                                        .server("string")
                                        .build())
                                    .ignoreDifferences(ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecIgnoreDifferenceArgs.builder()
                                        .group("string")
                                        .jqPathExpressions("string")
                                        .jsonPointers("string")
                                        .kind("string")
                                        .managedFieldsManagers("string")
                                        .name("string")
                                        .namespace("string")
                                        .build())
                                    .infos(ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecInfoArgs.builder()
                                        .name("string")
                                        .value("string")
                                        .build())
                                    .project("string")
                                    .revisionHistoryLimit(0)
                                    .sources(ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceArgs.builder()
                                        .chart("string")
                                        .directory(ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryArgs.builder()
                                            .exclude("string")
                                            .include("string")
                                            .jsonnet(ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetArgs.builder()
                                                .extVars(ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetExtVarArgs.builder()
                                                    .code(false)
                                                    .name("string")
                                                    .value("string")
                                                    .build())
                                                .libs("string")
                                                .tlas(ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetTlaArgs.builder()
                                                    .code(false)
                                                    .name("string")
                                                    .value("string")
                                                    .build())
                                                .build())
                                            .recurse(false)
                                            .build())
                                        .helm(ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmArgs.builder()
                                            .fileParameters(ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameterArgs.builder()
                                                .name("string")
                                                .path("string")
                                                .build())
                                            .ignoreMissingValueFiles(false)
                                            .parameters(ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameterArgs.builder()
                                                .forceString(false)
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .passCredentials(false)
                                            .releaseName("string")
                                            .skipCrds(false)
                                            .valueFiles("string")
                                            .values("string")
                                            .version("string")
                                            .build())
                                        .kustomize(ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizeArgs.builder()
                                            .commonAnnotations(Map.of("string", "string"))
                                            .commonLabels(Map.of("string", "string"))
                                            .images("string")
                                            .namePrefix("string")
                                            .nameSuffix("string")
                                            .patches(ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchArgs.builder()
                                                .target(ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTargetArgs.builder()
                                                    .annotationSelector("string")
                                                    .group("string")
                                                    .kind("string")
                                                    .labelSelector("string")
                                                    .name("string")
                                                    .namespace("string")
                                                    .version("string")
                                                    .build())
                                                .options(Map.of("string", false))
                                                .patch("string")
                                                .path("string")
                                                .build())
                                            .version("string")
                                            .build())
                                        .path("string")
                                        .plugin(ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePluginArgs.builder()
                                            .envs(ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnvArgs.builder()
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .name("string")
                                            .build())
                                        .ref("string")
                                        .repoUrl("string")
                                        .targetRevision("string")
                                        .build())
                                    .syncPolicy(ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyArgs.builder()
                                        .automated(ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomatedArgs.builder()
                                            .allowEmpty(false)
                                            .prune(false)
                                            .selfHeal(false)
                                            .build())
                                        .managedNamespaceMetadata(ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadataArgs.builder()
                                            .annotations(Map.of("string", "string"))
                                            .labels(Map.of("string", "string"))
                                            .build())
                                        .retry(ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryArgs.builder()
                                            .backoff(ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoffArgs.builder()
                                                .duration("string")
                                                .factor("string")
                                                .maxDuration("string")
                                                .build())
                                            .limit("string")
                                            .build())
                                        .syncOptions("string")
                                        .build())
                                    .build())
                                .build())
                            .values(Map.of("string", "string"))
                            .build())
                        .clusters(ApplicationSetSpecGeneratorMatrixGeneratorClusterArgs.builder()
                            .enabled(false)
                            .selector(ApplicationSetSpecGeneratorMatrixGeneratorClusterSelectorArgs.builder()
                                .matchExpressions(ApplicationSetSpecGeneratorMatrixGeneratorClusterSelectorMatchExpressionArgs.builder()
                                    .key("string")
                                    .operator("string")
                                    .values("string")
                                    .build())
                                .matchLabels(Map.of("string", "string"))
                                .build())
                            .template(ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateArgs.builder()
                                .metadata(ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateMetadataArgs.builder()
                                    .annotations(Map.of("string", "string"))
                                    .finalizers("string")
                                    .labels(Map.of("string", "string"))
                                    .name("string")
                                    .namespace("string")
                                    .build())
                                .spec(ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecArgs.builder()
                                    .destination(ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecDestinationArgs.builder()
                                        .name("string")
                                        .namespace("string")
                                        .server("string")
                                        .build())
                                    .ignoreDifferences(ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecIgnoreDifferenceArgs.builder()
                                        .group("string")
                                        .jqPathExpressions("string")
                                        .jsonPointers("string")
                                        .kind("string")
                                        .managedFieldsManagers("string")
                                        .name("string")
                                        .namespace("string")
                                        .build())
                                    .infos(ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecInfoArgs.builder()
                                        .name("string")
                                        .value("string")
                                        .build())
                                    .project("string")
                                    .revisionHistoryLimit(0)
                                    .sources(ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceArgs.builder()
                                        .chart("string")
                                        .directory(ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryArgs.builder()
                                            .exclude("string")
                                            .include("string")
                                            .jsonnet(ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnetArgs.builder()
                                                .extVars(ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnetExtVarArgs.builder()
                                                    .code(false)
                                                    .name("string")
                                                    .value("string")
                                                    .build())
                                                .libs("string")
                                                .tlas(ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnetTlaArgs.builder()
                                                    .code(false)
                                                    .name("string")
                                                    .value("string")
                                                    .build())
                                                .build())
                                            .recurse(false)
                                            .build())
                                        .helm(ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmArgs.builder()
                                            .fileParameters(ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmFileParameterArgs.builder()
                                                .name("string")
                                                .path("string")
                                                .build())
                                            .ignoreMissingValueFiles(false)
                                            .parameters(ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmParameterArgs.builder()
                                                .forceString(false)
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .passCredentials(false)
                                            .releaseName("string")
                                            .skipCrds(false)
                                            .valueFiles("string")
                                            .values("string")
                                            .version("string")
                                            .build())
                                        .kustomize(ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizeArgs.builder()
                                            .commonAnnotations(Map.of("string", "string"))
                                            .commonLabels(Map.of("string", "string"))
                                            .images("string")
                                            .namePrefix("string")
                                            .nameSuffix("string")
                                            .patches(ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatchArgs.builder()
                                                .target(ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatchTargetArgs.builder()
                                                    .annotationSelector("string")
                                                    .group("string")
                                                    .kind("string")
                                                    .labelSelector("string")
                                                    .name("string")
                                                    .namespace("string")
                                                    .version("string")
                                                    .build())
                                                .options(Map.of("string", false))
                                                .patch("string")
                                                .path("string")
                                                .build())
                                            .version("string")
                                            .build())
                                        .path("string")
                                        .plugin(ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourcePluginArgs.builder()
                                            .envs(ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourcePluginEnvArgs.builder()
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .name("string")
                                            .build())
                                        .ref("string")
                                        .repoUrl("string")
                                        .targetRevision("string")
                                        .build())
                                    .syncPolicy(ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyArgs.builder()
                                        .automated(ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyAutomatedArgs.builder()
                                            .allowEmpty(false)
                                            .prune(false)
                                            .selfHeal(false)
                                            .build())
                                        .managedNamespaceMetadata(ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadataArgs.builder()
                                            .annotations(Map.of("string", "string"))
                                            .labels(Map.of("string", "string"))
                                            .build())
                                        .retry(ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetryArgs.builder()
                                            .backoff(ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetryBackoffArgs.builder()
                                                .duration("string")
                                                .factor("string")
                                                .maxDuration("string")
                                                .build())
                                            .limit("string")
                                            .build())
                                        .syncOptions("string")
                                        .build())
                                    .build())
                                .build())
                            .values(Map.of("string", "string"))
                            .build())
                        .gits(ApplicationSetSpecGeneratorMatrixGeneratorGitArgs.builder()
                            .repoUrl("string")
                            .directories(ApplicationSetSpecGeneratorMatrixGeneratorGitDirectoryArgs.builder()
                                .path("string")
                                .exclude(false)
                                .build())
                            .files(ApplicationSetSpecGeneratorMatrixGeneratorGitFileArgs.builder()
                                .path("string")
                                .build())
                            .pathParamPrefix("string")
                            .revision("string")
                            .template(ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateArgs.builder()
                                .metadata(ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateMetadataArgs.builder()
                                    .annotations(Map.of("string", "string"))
                                    .finalizers("string")
                                    .labels(Map.of("string", "string"))
                                    .name("string")
                                    .namespace("string")
                                    .build())
                                .spec(ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecArgs.builder()
                                    .destination(ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecDestinationArgs.builder()
                                        .name("string")
                                        .namespace("string")
                                        .server("string")
                                        .build())
                                    .ignoreDifferences(ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecIgnoreDifferenceArgs.builder()
                                        .group("string")
                                        .jqPathExpressions("string")
                                        .jsonPointers("string")
                                        .kind("string")
                                        .managedFieldsManagers("string")
                                        .name("string")
                                        .namespace("string")
                                        .build())
                                    .infos(ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecInfoArgs.builder()
                                        .name("string")
                                        .value("string")
                                        .build())
                                    .project("string")
                                    .revisionHistoryLimit(0)
                                    .sources(ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceArgs.builder()
                                        .chart("string")
                                        .directory(ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryArgs.builder()
                                            .exclude("string")
                                            .include("string")
                                            .jsonnet(ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnetArgs.builder()
                                                .extVars(ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnetExtVarArgs.builder()
                                                    .code(false)
                                                    .name("string")
                                                    .value("string")
                                                    .build())
                                                .libs("string")
                                                .tlas(ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnetTlaArgs.builder()
                                                    .code(false)
                                                    .name("string")
                                                    .value("string")
                                                    .build())
                                                .build())
                                            .recurse(false)
                                            .build())
                                        .helm(ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceHelmArgs.builder()
                                            .fileParameters(ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceHelmFileParameterArgs.builder()
                                                .name("string")
                                                .path("string")
                                                .build())
                                            .ignoreMissingValueFiles(false)
                                            .parameters(ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceHelmParameterArgs.builder()
                                                .forceString(false)
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .passCredentials(false)
                                            .releaseName("string")
                                            .skipCrds(false)
                                            .valueFiles("string")
                                            .values("string")
                                            .version("string")
                                            .build())
                                        .kustomize(ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizeArgs.builder()
                                            .commonAnnotations(Map.of("string", "string"))
                                            .commonLabels(Map.of("string", "string"))
                                            .images("string")
                                            .namePrefix("string")
                                            .nameSuffix("string")
                                            .patches(ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatchArgs.builder()
                                                .target(ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatchTargetArgs.builder()
                                                    .annotationSelector("string")
                                                    .group("string")
                                                    .kind("string")
                                                    .labelSelector("string")
                                                    .name("string")
                                                    .namespace("string")
                                                    .version("string")
                                                    .build())
                                                .options(Map.of("string", false))
                                                .patch("string")
                                                .path("string")
                                                .build())
                                            .version("string")
                                            .build())
                                        .path("string")
                                        .plugin(ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourcePluginArgs.builder()
                                            .envs(ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourcePluginEnvArgs.builder()
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .name("string")
                                            .build())
                                        .ref("string")
                                        .repoUrl("string")
                                        .targetRevision("string")
                                        .build())
                                    .syncPolicy(ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyArgs.builder()
                                        .automated(ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyAutomatedArgs.builder()
                                            .allowEmpty(false)
                                            .prune(false)
                                            .selfHeal(false)
                                            .build())
                                        .managedNamespaceMetadata(ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadataArgs.builder()
                                            .annotations(Map.of("string", "string"))
                                            .labels(Map.of("string", "string"))
                                            .build())
                                        .retry(ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetryArgs.builder()
                                            .backoff(ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetryBackoffArgs.builder()
                                                .duration("string")
                                                .factor("string")
                                                .maxDuration("string")
                                                .build())
                                            .limit("string")
                                            .build())
                                        .syncOptions("string")
                                        .build())
                                    .build())
                                .build())
                            .values(Map.of("string", "string"))
                            .build())
                        .lists(ApplicationSetSpecGeneratorMatrixGeneratorListArgs.builder()
                            .elements(Map.of("string", "string"))
                            .template(ApplicationSetSpecGeneratorMatrixGeneratorListTemplateArgs.builder()
                                .metadata(ApplicationSetSpecGeneratorMatrixGeneratorListTemplateMetadataArgs.builder()
                                    .annotations(Map.of("string", "string"))
                                    .finalizers("string")
                                    .labels(Map.of("string", "string"))
                                    .name("string")
                                    .namespace("string")
                                    .build())
                                .spec(ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecArgs.builder()
                                    .destination(ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecDestinationArgs.builder()
                                        .name("string")
                                        .namespace("string")
                                        .server("string")
                                        .build())
                                    .ignoreDifferences(ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecIgnoreDifferenceArgs.builder()
                                        .group("string")
                                        .jqPathExpressions("string")
                                        .jsonPointers("string")
                                        .kind("string")
                                        .managedFieldsManagers("string")
                                        .name("string")
                                        .namespace("string")
                                        .build())
                                    .infos(ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecInfoArgs.builder()
                                        .name("string")
                                        .value("string")
                                        .build())
                                    .project("string")
                                    .revisionHistoryLimit(0)
                                    .sources(ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceArgs.builder()
                                        .chart("string")
                                        .directory(ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryArgs.builder()
                                            .exclude("string")
                                            .include("string")
                                            .jsonnet(ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnetArgs.builder()
                                                .extVars(ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnetExtVarArgs.builder()
                                                    .code(false)
                                                    .name("string")
                                                    .value("string")
                                                    .build())
                                                .libs("string")
                                                .tlas(ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnetTlaArgs.builder()
                                                    .code(false)
                                                    .name("string")
                                                    .value("string")
                                                    .build())
                                                .build())
                                            .recurse(false)
                                            .build())
                                        .helm(ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceHelmArgs.builder()
                                            .fileParameters(ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceHelmFileParameterArgs.builder()
                                                .name("string")
                                                .path("string")
                                                .build())
                                            .ignoreMissingValueFiles(false)
                                            .parameters(ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceHelmParameterArgs.builder()
                                                .forceString(false)
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .passCredentials(false)
                                            .releaseName("string")
                                            .skipCrds(false)
                                            .valueFiles("string")
                                            .values("string")
                                            .version("string")
                                            .build())
                                        .kustomize(ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceKustomizeArgs.builder()
                                            .commonAnnotations(Map.of("string", "string"))
                                            .commonLabels(Map.of("string", "string"))
                                            .images("string")
                                            .namePrefix("string")
                                            .nameSuffix("string")
                                            .patches(ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatchArgs.builder()
                                                .target(ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatchTargetArgs.builder()
                                                    .annotationSelector("string")
                                                    .group("string")
                                                    .kind("string")
                                                    .labelSelector("string")
                                                    .name("string")
                                                    .namespace("string")
                                                    .version("string")
                                                    .build())
                                                .options(Map.of("string", false))
                                                .patch("string")
                                                .path("string")
                                                .build())
                                            .version("string")
                                            .build())
                                        .path("string")
                                        .plugin(ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourcePluginArgs.builder()
                                            .envs(ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourcePluginEnvArgs.builder()
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .name("string")
                                            .build())
                                        .ref("string")
                                        .repoUrl("string")
                                        .targetRevision("string")
                                        .build())
                                    .syncPolicy(ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicyArgs.builder()
                                        .automated(ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicyAutomatedArgs.builder()
                                            .allowEmpty(false)
                                            .prune(false)
                                            .selfHeal(false)
                                            .build())
                                        .managedNamespaceMetadata(ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadataArgs.builder()
                                            .annotations(Map.of("string", "string"))
                                            .labels(Map.of("string", "string"))
                                            .build())
                                        .retry(ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetryArgs.builder()
                                            .backoff(ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetryBackoffArgs.builder()
                                                .duration("string")
                                                .factor("string")
                                                .maxDuration("string")
                                                .build())
                                            .limit("string")
                                            .build())
                                        .syncOptions("string")
                                        .build())
                                    .build())
                                .build())
                            .build())
                        .matrices(ApplicationSetSpecGeneratorMatrixGeneratorMatrixArgs.builder()
                            .generators(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorArgs.builder()
                                .clusterDecisionResources(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceArgs.builder()
                                    .configMapRef("string")
                                    .labelSelector(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceLabelSelectorArgs.builder()
                                        .matchExpressions(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceLabelSelectorMatchExpressionArgs.builder()
                                            .key("string")
                                            .operator("string")
                                            .values("string")
                                            .build())
                                        .matchLabels(Map.of("string", "string"))
                                        .build())
                                    .name("string")
                                    .requeueAfterSeconds("string")
                                    .template(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateArgs.builder()
                                        .metadata(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateMetadataArgs.builder()
                                            .annotations(Map.of("string", "string"))
                                            .finalizers("string")
                                            .labels(Map.of("string", "string"))
                                            .name("string")
                                            .namespace("string")
                                            .build())
                                        .spec(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecArgs.builder()
                                            .destination(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecDestinationArgs.builder()
                                                .name("string")
                                                .namespace("string")
                                                .server("string")
                                                .build())
                                            .ignoreDifferences(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecIgnoreDifferenceArgs.builder()
                                                .group("string")
                                                .jqPathExpressions("string")
                                                .jsonPointers("string")
                                                .kind("string")
                                                .managedFieldsManagers("string")
                                                .name("string")
                                                .namespace("string")
                                                .build())
                                            .infos(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecInfoArgs.builder()
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .project("string")
                                            .revisionHistoryLimit(0)
                                            .sources(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceArgs.builder()
                                                .chart("string")
                                                .directory(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryArgs.builder()
                                                    .exclude("string")
                                                    .include("string")
                                                    .jsonnet(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetArgs.builder()
                                                        .extVars(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetExtVarArgs.builder()
                                                            .code(false)
                                                            .name("string")
                                                            .value("string")
                                                            .build())
                                                        .libs("string")
                                                        .tlas(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetTlaArgs.builder()
                                                            .code(false)
                                                            .name("string")
                                                            .value("string")
                                                            .build())
                                                        .build())
                                                    .recurse(false)
                                                    .build())
                                                .helm(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmArgs.builder()
                                                    .fileParameters(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameterArgs.builder()
                                                        .name("string")
                                                        .path("string")
                                                        .build())
                                                    .ignoreMissingValueFiles(false)
                                                    .parameters(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameterArgs.builder()
                                                        .forceString(false)
                                                        .name("string")
                                                        .value("string")
                                                        .build())
                                                    .passCredentials(false)
                                                    .releaseName("string")
                                                    .skipCrds(false)
                                                    .valueFiles("string")
                                                    .values("string")
                                                    .version("string")
                                                    .build())
                                                .kustomize(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizeArgs.builder()
                                                    .commonAnnotations(Map.of("string", "string"))
                                                    .commonLabels(Map.of("string", "string"))
                                                    .images("string")
                                                    .namePrefix("string")
                                                    .nameSuffix("string")
                                                    .patches(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchArgs.builder()
                                                        .target(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTargetArgs.builder()
                                                            .annotationSelector("string")
                                                            .group("string")
                                                            .kind("string")
                                                            .labelSelector("string")
                                                            .name("string")
                                                            .namespace("string")
                                                            .version("string")
                                                            .build())
                                                        .options(Map.of("string", false))
                                                        .patch("string")
                                                        .path("string")
                                                        .build())
                                                    .version("string")
                                                    .build())
                                                .path("string")
                                                .plugin(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePluginArgs.builder()
                                                    .envs(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnvArgs.builder()
                                                        .name("string")
                                                        .value("string")
                                                        .build())
                                                    .name("string")
                                                    .build())
                                                .ref("string")
                                                .repoUrl("string")
                                                .targetRevision("string")
                                                .build())
                                            .syncPolicy(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyArgs.builder()
                                                .automated(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomatedArgs.builder()
                                                    .allowEmpty(false)
                                                    .prune(false)
                                                    .selfHeal(false)
                                                    .build())
                                                .managedNamespaceMetadata(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadataArgs.builder()
                                                    .annotations(Map.of("string", "string"))
                                                    .labels(Map.of("string", "string"))
                                                    .build())
                                                .retry(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryArgs.builder()
                                                    .backoff(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoffArgs.builder()
                                                        .duration("string")
                                                        .factor("string")
                                                        .maxDuration("string")
                                                        .build())
                                                    .limit("string")
                                                    .build())
                                                .syncOptions("string")
                                                .build())
                                            .build())
                                        .build())
                                    .values(Map.of("string", "string"))
                                    .build())
                                .clusters(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterArgs.builder()
                                    .enabled(false)
                                    .selector(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterSelectorArgs.builder()
                                        .matchExpressions(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterSelectorMatchExpressionArgs.builder()
                                            .key("string")
                                            .operator("string")
                                            .values("string")
                                            .build())
                                        .matchLabels(Map.of("string", "string"))
                                        .build())
                                    .template(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateArgs.builder()
                                        .metadata(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateMetadataArgs.builder()
                                            .annotations(Map.of("string", "string"))
                                            .finalizers("string")
                                            .labels(Map.of("string", "string"))
                                            .name("string")
                                            .namespace("string")
                                            .build())
                                        .spec(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecArgs.builder()
                                            .destination(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecDestinationArgs.builder()
                                                .name("string")
                                                .namespace("string")
                                                .server("string")
                                                .build())
                                            .ignoreDifferences(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecIgnoreDifferenceArgs.builder()
                                                .group("string")
                                                .jqPathExpressions("string")
                                                .jsonPointers("string")
                                                .kind("string")
                                                .managedFieldsManagers("string")
                                                .name("string")
                                                .namespace("string")
                                                .build())
                                            .infos(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecInfoArgs.builder()
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .project("string")
                                            .revisionHistoryLimit(0)
                                            .sources(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceArgs.builder()
                                                .chart("string")
                                                .directory(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryArgs.builder()
                                                    .exclude("string")
                                                    .include("string")
                                                    .jsonnet(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnetArgs.builder()
                                                        .extVars(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnetExtVarArgs.builder()
                                                            .code(false)
                                                            .name("string")
                                                            .value("string")
                                                            .build())
                                                        .libs("string")
                                                        .tlas(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnetTlaArgs.builder()
                                                            .code(false)
                                                            .name("string")
                                                            .value("string")
                                                            .build())
                                                        .build())
                                                    .recurse(false)
                                                    .build())
                                                .helm(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmArgs.builder()
                                                    .fileParameters(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmFileParameterArgs.builder()
                                                        .name("string")
                                                        .path("string")
                                                        .build())
                                                    .ignoreMissingValueFiles(false)
                                                    .parameters(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmParameterArgs.builder()
                                                        .forceString(false)
                                                        .name("string")
                                                        .value("string")
                                                        .build())
                                                    .passCredentials(false)
                                                    .releaseName("string")
                                                    .skipCrds(false)
                                                    .valueFiles("string")
                                                    .values("string")
                                                    .version("string")
                                                    .build())
                                                .kustomize(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizeArgs.builder()
                                                    .commonAnnotations(Map.of("string", "string"))
                                                    .commonLabels(Map.of("string", "string"))
                                                    .images("string")
                                                    .namePrefix("string")
                                                    .nameSuffix("string")
                                                    .patches(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatchArgs.builder()
                                                        .target(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatchTargetArgs.builder()
                                                            .annotationSelector("string")
                                                            .group("string")
                                                            .kind("string")
                                                            .labelSelector("string")
                                                            .name("string")
                                                            .namespace("string")
                                                            .version("string")
                                                            .build())
                                                        .options(Map.of("string", false))
                                                        .patch("string")
                                                        .path("string")
                                                        .build())
                                                    .version("string")
                                                    .build())
                                                .path("string")
                                                .plugin(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourcePluginArgs.builder()
                                                    .envs(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourcePluginEnvArgs.builder()
                                                        .name("string")
                                                        .value("string")
                                                        .build())
                                                    .name("string")
                                                    .build())
                                                .ref("string")
                                                .repoUrl("string")
                                                .targetRevision("string")
                                                .build())
                                            .syncPolicy(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyArgs.builder()
                                                .automated(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyAutomatedArgs.builder()
                                                    .allowEmpty(false)
                                                    .prune(false)
                                                    .selfHeal(false)
                                                    .build())
                                                .managedNamespaceMetadata(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadataArgs.builder()
                                                    .annotations(Map.of("string", "string"))
                                                    .labels(Map.of("string", "string"))
                                                    .build())
                                                .retry(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetryArgs.builder()
                                                    .backoff(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetryBackoffArgs.builder()
                                                        .duration("string")
                                                        .factor("string")
                                                        .maxDuration("string")
                                                        .build())
                                                    .limit("string")
                                                    .build())
                                                .syncOptions("string")
                                                .build())
                                            .build())
                                        .build())
                                    .values(Map.of("string", "string"))
                                    .build())
                                .gits(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitArgs.builder()
                                    .repoUrl("string")
                                    .directories(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitDirectoryArgs.builder()
                                        .path("string")
                                        .exclude(false)
                                        .build())
                                    .files(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitFileArgs.builder()
                                        .path("string")
                                        .build())
                                    .pathParamPrefix("string")
                                    .revision("string")
                                    .template(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateArgs.builder()
                                        .metadata(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateMetadataArgs.builder()
                                            .annotations(Map.of("string", "string"))
                                            .finalizers("string")
                                            .labels(Map.of("string", "string"))
                                            .name("string")
                                            .namespace("string")
                                            .build())
                                        .spec(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecArgs.builder()
                                            .destination(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecDestinationArgs.builder()
                                                .name("string")
                                                .namespace("string")
                                                .server("string")
                                                .build())
                                            .ignoreDifferences(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecIgnoreDifferenceArgs.builder()
                                                .group("string")
                                                .jqPathExpressions("string")
                                                .jsonPointers("string")
                                                .kind("string")
                                                .managedFieldsManagers("string")
                                                .name("string")
                                                .namespace("string")
                                                .build())
                                            .infos(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecInfoArgs.builder()
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .project("string")
                                            .revisionHistoryLimit(0)
                                            .sources(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceArgs.builder()
                                                .chart("string")
                                                .directory(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryArgs.builder()
                                                    .exclude("string")
                                                    .include("string")
                                                    .jsonnet(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnetArgs.builder()
                                                        .extVars(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnetExtVarArgs.builder()
                                                            .code(false)
                                                            .name("string")
                                                            .value("string")
                                                            .build())
                                                        .libs("string")
                                                        .tlas(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnetTlaArgs.builder()
                                                            .code(false)
                                                            .name("string")
                                                            .value("string")
                                                            .build())
                                                        .build())
                                                    .recurse(false)
                                                    .build())
                                                .helm(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceHelmArgs.builder()
                                                    .fileParameters(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceHelmFileParameterArgs.builder()
                                                        .name("string")
                                                        .path("string")
                                                        .build())
                                                    .ignoreMissingValueFiles(false)
                                                    .parameters(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceHelmParameterArgs.builder()
                                                        .forceString(false)
                                                        .name("string")
                                                        .value("string")
                                                        .build())
                                                    .passCredentials(false)
                                                    .releaseName("string")
                                                    .skipCrds(false)
                                                    .valueFiles("string")
                                                    .values("string")
                                                    .version("string")
                                                    .build())
                                                .kustomize(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizeArgs.builder()
                                                    .commonAnnotations(Map.of("string", "string"))
                                                    .commonLabels(Map.of("string", "string"))
                                                    .images("string")
                                                    .namePrefix("string")
                                                    .nameSuffix("string")
                                                    .patches(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatchArgs.builder()
                                                        .target(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatchTargetArgs.builder()
                                                            .annotationSelector("string")
                                                            .group("string")
                                                            .kind("string")
                                                            .labelSelector("string")
                                                            .name("string")
                                                            .namespace("string")
                                                            .version("string")
                                                            .build())
                                                        .options(Map.of("string", false))
                                                        .patch("string")
                                                        .path("string")
                                                        .build())
                                                    .version("string")
                                                    .build())
                                                .path("string")
                                                .plugin(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourcePluginArgs.builder()
                                                    .envs(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourcePluginEnvArgs.builder()
                                                        .name("string")
                                                        .value("string")
                                                        .build())
                                                    .name("string")
                                                    .build())
                                                .ref("string")
                                                .repoUrl("string")
                                                .targetRevision("string")
                                                .build())
                                            .syncPolicy(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyArgs.builder()
                                                .automated(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyAutomatedArgs.builder()
                                                    .allowEmpty(false)
                                                    .prune(false)
                                                    .selfHeal(false)
                                                    .build())
                                                .managedNamespaceMetadata(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadataArgs.builder()
                                                    .annotations(Map.of("string", "string"))
                                                    .labels(Map.of("string", "string"))
                                                    .build())
                                                .retry(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetryArgs.builder()
                                                    .backoff(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetryBackoffArgs.builder()
                                                        .duration("string")
                                                        .factor("string")
                                                        .maxDuration("string")
                                                        .build())
                                                    .limit("string")
                                                    .build())
                                                .syncOptions("string")
                                                .build())
                                            .build())
                                        .build())
                                    .values(Map.of("string", "string"))
                                    .build())
                                .lists(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListArgs.builder()
                                    .elements(Map.of("string", "string"))
                                    .template(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateArgs.builder()
                                        .metadata(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateMetadataArgs.builder()
                                            .annotations(Map.of("string", "string"))
                                            .finalizers("string")
                                            .labels(Map.of("string", "string"))
                                            .name("string")
                                            .namespace("string")
                                            .build())
                                        .spec(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecArgs.builder()
                                            .destination(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecDestinationArgs.builder()
                                                .name("string")
                                                .namespace("string")
                                                .server("string")
                                                .build())
                                            .ignoreDifferences(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecIgnoreDifferenceArgs.builder()
                                                .group("string")
                                                .jqPathExpressions("string")
                                                .jsonPointers("string")
                                                .kind("string")
                                                .managedFieldsManagers("string")
                                                .name("string")
                                                .namespace("string")
                                                .build())
                                            .infos(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecInfoArgs.builder()
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .project("string")
                                            .revisionHistoryLimit(0)
                                            .sources(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceArgs.builder()
                                                .chart("string")
                                                .directory(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryArgs.builder()
                                                    .exclude("string")
                                                    .include("string")
                                                    .jsonnet(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnetArgs.builder()
                                                        .extVars(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnetExtVarArgs.builder()
                                                            .code(false)
                                                            .name("string")
                                                            .value("string")
                                                            .build())
                                                        .libs("string")
                                                        .tlas(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnetTlaArgs.builder()
                                                            .code(false)
                                                            .name("string")
                                                            .value("string")
                                                            .build())
                                                        .build())
                                                    .recurse(false)
                                                    .build())
                                                .helm(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceHelmArgs.builder()
                                                    .fileParameters(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceHelmFileParameterArgs.builder()
                                                        .name("string")
                                                        .path("string")
                                                        .build())
                                                    .ignoreMissingValueFiles(false)
                                                    .parameters(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceHelmParameterArgs.builder()
                                                        .forceString(false)
                                                        .name("string")
                                                        .value("string")
                                                        .build())
                                                    .passCredentials(false)
                                                    .releaseName("string")
                                                    .skipCrds(false)
                                                    .valueFiles("string")
                                                    .values("string")
                                                    .version("string")
                                                    .build())
                                                .kustomize(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceKustomizeArgs.builder()
                                                    .commonAnnotations(Map.of("string", "string"))
                                                    .commonLabels(Map.of("string", "string"))
                                                    .images("string")
                                                    .namePrefix("string")
                                                    .nameSuffix("string")
                                                    .patches(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatchArgs.builder()
                                                        .target(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatchTargetArgs.builder()
                                                            .annotationSelector("string")
                                                            .group("string")
                                                            .kind("string")
                                                            .labelSelector("string")
                                                            .name("string")
                                                            .namespace("string")
                                                            .version("string")
                                                            .build())
                                                        .options(Map.of("string", false))
                                                        .patch("string")
                                                        .path("string")
                                                        .build())
                                                    .version("string")
                                                    .build())
                                                .path("string")
                                                .plugin(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourcePluginArgs.builder()
                                                    .envs(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourcePluginEnvArgs.builder()
                                                        .name("string")
                                                        .value("string")
                                                        .build())
                                                    .name("string")
                                                    .build())
                                                .ref("string")
                                                .repoUrl("string")
                                                .targetRevision("string")
                                                .build())
                                            .syncPolicy(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicyArgs.builder()
                                                .automated(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicyAutomatedArgs.builder()
                                                    .allowEmpty(false)
                                                    .prune(false)
                                                    .selfHeal(false)
                                                    .build())
                                                .managedNamespaceMetadata(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadataArgs.builder()
                                                    .annotations(Map.of("string", "string"))
                                                    .labels(Map.of("string", "string"))
                                                    .build())
                                                .retry(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetryArgs.builder()
                                                    .backoff(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetryBackoffArgs.builder()
                                                        .duration("string")
                                                        .factor("string")
                                                        .maxDuration("string")
                                                        .build())
                                                    .limit("string")
                                                    .build())
                                                .syncOptions("string")
                                                .build())
                                            .build())
                                        .build())
                                    .build())
                                .pullRequests(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestArgs.builder()
                                    .bitbucketServer(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestBitbucketServerArgs.builder()
                                        .api("string")
                                        .project("string")
                                        .repo("string")
                                        .basicAuth(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestBitbucketServerBasicAuthArgs.builder()
                                            .passwordRef(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestBitbucketServerBasicAuthPasswordRefArgs.builder()
                                                .key("string")
                                                .secretName("string")
                                                .build())
                                            .username("string")
                                            .build())
                                        .build())
                                    .filters(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestFilterArgs.builder()
                                        .branchMatch("string")
                                        .build())
                                    .gitea(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGiteaArgs.builder()
                                        .api("string")
                                        .owner("string")
                                        .repo("string")
                                        .insecure(false)
                                        .tokenRef(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGiteaTokenRefArgs.builder()
                                            .key("string")
                                            .secretName("string")
                                            .build())
                                        .build())
                                    .github(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGithubArgs.builder()
                                        .owner("string")
                                        .repo("string")
                                        .api("string")
                                        .appSecretName("string")
                                        .labels("string")
                                        .tokenRef(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGithubTokenRefArgs.builder()
                                            .key("string")
                                            .secretName("string")
                                            .build())
                                        .build())
                                    .gitlab(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGitlabArgs.builder()
                                        .project("string")
                                        .api("string")
                                        .labels("string")
                                        .pullRequestState("string")
                                        .tokenRef(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGitlabTokenRefArgs.builder()
                                            .key("string")
                                            .secretName("string")
                                            .build())
                                        .build())
                                    .requeueAfterSeconds("string")
                                    .template(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateArgs.builder()
                                        .metadata(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateMetadataArgs.builder()
                                            .annotations(Map.of("string", "string"))
                                            .finalizers("string")
                                            .labels(Map.of("string", "string"))
                                            .name("string")
                                            .namespace("string")
                                            .build())
                                        .spec(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecArgs.builder()
                                            .destination(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecDestinationArgs.builder()
                                                .name("string")
                                                .namespace("string")
                                                .server("string")
                                                .build())
                                            .ignoreDifferences(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecIgnoreDifferenceArgs.builder()
                                                .group("string")
                                                .jqPathExpressions("string")
                                                .jsonPointers("string")
                                                .kind("string")
                                                .managedFieldsManagers("string")
                                                .name("string")
                                                .namespace("string")
                                                .build())
                                            .infos(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecInfoArgs.builder()
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .project("string")
                                            .revisionHistoryLimit(0)
                                            .sources(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceArgs.builder()
                                                .chart("string")
                                                .directory(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryArgs.builder()
                                                    .exclude("string")
                                                    .include("string")
                                                    .jsonnet(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetArgs.builder()
                                                        .extVars(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetExtVarArgs.builder()
                                                            .code(false)
                                                            .name("string")
                                                            .value("string")
                                                            .build())
                                                        .libs("string")
                                                        .tlas(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetTlaArgs.builder()
                                                            .code(false)
                                                            .name("string")
                                                            .value("string")
                                                            .build())
                                                        .build())
                                                    .recurse(false)
                                                    .build())
                                                .helm(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmArgs.builder()
                                                    .fileParameters(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmFileParameterArgs.builder()
                                                        .name("string")
                                                        .path("string")
                                                        .build())
                                                    .ignoreMissingValueFiles(false)
                                                    .parameters(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmParameterArgs.builder()
                                                        .forceString(false)
                                                        .name("string")
                                                        .value("string")
                                                        .build())
                                                    .passCredentials(false)
                                                    .releaseName("string")
                                                    .skipCrds(false)
                                                    .valueFiles("string")
                                                    .values("string")
                                                    .version("string")
                                                    .build())
                                                .kustomize(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizeArgs.builder()
                                                    .commonAnnotations(Map.of("string", "string"))
                                                    .commonLabels(Map.of("string", "string"))
                                                    .images("string")
                                                    .namePrefix("string")
                                                    .nameSuffix("string")
                                                    .patches(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatchArgs.builder()
                                                        .target(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatchTargetArgs.builder()
                                                            .annotationSelector("string")
                                                            .group("string")
                                                            .kind("string")
                                                            .labelSelector("string")
                                                            .name("string")
                                                            .namespace("string")
                                                            .version("string")
                                                            .build())
                                                        .options(Map.of("string", false))
                                                        .patch("string")
                                                        .path("string")
                                                        .build())
                                                    .version("string")
                                                    .build())
                                                .path("string")
                                                .plugin(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePluginArgs.builder()
                                                    .envs(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePluginEnvArgs.builder()
                                                        .name("string")
                                                        .value("string")
                                                        .build())
                                                    .name("string")
                                                    .build())
                                                .ref("string")
                                                .repoUrl("string")
                                                .targetRevision("string")
                                                .build())
                                            .syncPolicy(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyArgs.builder()
                                                .automated(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyAutomatedArgs.builder()
                                                    .allowEmpty(false)
                                                    .prune(false)
                                                    .selfHeal(false)
                                                    .build())
                                                .managedNamespaceMetadata(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyManagedNamespaceMetadataArgs.builder()
                                                    .annotations(Map.of("string", "string"))
                                                    .labels(Map.of("string", "string"))
                                                    .build())
                                                .retry(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetryArgs.builder()
                                                    .backoff(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetryBackoffArgs.builder()
                                                        .duration("string")
                                                        .factor("string")
                                                        .maxDuration("string")
                                                        .build())
                                                    .limit("string")
                                                    .build())
                                                .syncOptions("string")
                                                .build())
                                            .build())
                                        .build())
                                    .build())
                                .scmProviders(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderArgs.builder()
                                    .azureDevops(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderAzureDevopsArgs.builder()
                                        .organization("string")
                                        .teamProject("string")
                                        .accessTokenRef(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderAzureDevopsAccessTokenRefArgs.builder()
                                            .key("string")
                                            .secretName("string")
                                            .build())
                                        .allBranches(false)
                                        .api("string")
                                        .build())
                                    .bitbucketCloud(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderBitbucketCloudArgs.builder()
                                        .owner("string")
                                        .user("string")
                                        .allBranches(false)
                                        .appPasswordRef(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderBitbucketCloudAppPasswordRefArgs.builder()
                                            .key("string")
                                            .secretName("string")
                                            .build())
                                        .build())
                                    .bitbucketServer(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderBitbucketServerArgs.builder()
                                        .api("string")
                                        .project("string")
                                        .allBranches(false)
                                        .basicAuth(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderBitbucketServerBasicAuthArgs.builder()
                                            .passwordRef(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderBitbucketServerBasicAuthPasswordRefArgs.builder()
                                                .key("string")
                                                .secretName("string")
                                                .build())
                                            .username("string")
                                            .build())
                                        .build())
                                    .cloneProtocol("string")
                                    .filters(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderFilterArgs.builder()
                                        .branchMatch("string")
                                        .labelMatch("string")
                                        .pathsDoNotExists("string")
                                        .pathsExists("string")
                                        .repositoryMatch("string")
                                        .build())
                                    .gitea(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGiteaArgs.builder()
                                        .owner("string")
                                        .allBranches(false)
                                        .api("string")
                                        .insecure(false)
                                        .tokenRef(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGiteaTokenRefArgs.builder()
                                            .key("string")
                                            .secretName("string")
                                            .build())
                                        .build())
                                    .github(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGithubArgs.builder()
                                        .organization("string")
                                        .allBranches(false)
                                        .api("string")
                                        .appSecretName("string")
                                        .tokenRef(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGithubTokenRefArgs.builder()
                                            .key("string")
                                            .secretName("string")
                                            .build())
                                        .build())
                                    .gitlab(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGitlabArgs.builder()
                                        .group("string")
                                        .allBranches(false)
                                        .api("string")
                                        .includeSubgroups(false)
                                        .tokenRef(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGitlabTokenRefArgs.builder()
                                            .key("string")
                                            .secretName("string")
                                            .build())
                                        .build())
                                    .requeueAfterSeconds("string")
                                    .template(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateArgs.builder()
                                        .metadata(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateMetadataArgs.builder()
                                            .annotations(Map.of("string", "string"))
                                            .finalizers("string")
                                            .labels(Map.of("string", "string"))
                                            .name("string")
                                            .namespace("string")
                                            .build())
                                        .spec(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecArgs.builder()
                                            .destination(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecDestinationArgs.builder()
                                                .name("string")
                                                .namespace("string")
                                                .server("string")
                                                .build())
                                            .ignoreDifferences(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecIgnoreDifferenceArgs.builder()
                                                .group("string")
                                                .jqPathExpressions("string")
                                                .jsonPointers("string")
                                                .kind("string")
                                                .managedFieldsManagers("string")
                                                .name("string")
                                                .namespace("string")
                                                .build())
                                            .infos(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecInfoArgs.builder()
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .project("string")
                                            .revisionHistoryLimit(0)
                                            .sources(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceArgs.builder()
                                                .chart("string")
                                                .directory(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryArgs.builder()
                                                    .exclude("string")
                                                    .include("string")
                                                    .jsonnet(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetArgs.builder()
                                                        .extVars(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetExtVarArgs.builder()
                                                            .code(false)
                                                            .name("string")
                                                            .value("string")
                                                            .build())
                                                        .libs("string")
                                                        .tlas(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetTlaArgs.builder()
                                                            .code(false)
                                                            .name("string")
                                                            .value("string")
                                                            .build())
                                                        .build())
                                                    .recurse(false)
                                                    .build())
                                                .helm(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmArgs.builder()
                                                    .fileParameters(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmFileParameterArgs.builder()
                                                        .name("string")
                                                        .path("string")
                                                        .build())
                                                    .ignoreMissingValueFiles(false)
                                                    .parameters(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmParameterArgs.builder()
                                                        .forceString(false)
                                                        .name("string")
                                                        .value("string")
                                                        .build())
                                                    .passCredentials(false)
                                                    .releaseName("string")
                                                    .skipCrds(false)
                                                    .valueFiles("string")
                                                    .values("string")
                                                    .version("string")
                                                    .build())
                                                .kustomize(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizeArgs.builder()
                                                    .commonAnnotations(Map.of("string", "string"))
                                                    .commonLabels(Map.of("string", "string"))
                                                    .images("string")
                                                    .namePrefix("string")
                                                    .nameSuffix("string")
                                                    .patches(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizePatchArgs.builder()
                                                        .target(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizePatchTargetArgs.builder()
                                                            .annotationSelector("string")
                                                            .group("string")
                                                            .kind("string")
                                                            .labelSelector("string")
                                                            .name("string")
                                                            .namespace("string")
                                                            .version("string")
                                                            .build())
                                                        .options(Map.of("string", false))
                                                        .patch("string")
                                                        .path("string")
                                                        .build())
                                                    .version("string")
                                                    .build())
                                                .path("string")
                                                .plugin(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourcePluginArgs.builder()
                                                    .envs(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourcePluginEnvArgs.builder()
                                                        .name("string")
                                                        .value("string")
                                                        .build())
                                                    .name("string")
                                                    .build())
                                                .ref("string")
                                                .repoUrl("string")
                                                .targetRevision("string")
                                                .build())
                                            .syncPolicy(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyArgs.builder()
                                                .automated(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyAutomatedArgs.builder()
                                                    .allowEmpty(false)
                                                    .prune(false)
                                                    .selfHeal(false)
                                                    .build())
                                                .managedNamespaceMetadata(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyManagedNamespaceMetadataArgs.builder()
                                                    .annotations(Map.of("string", "string"))
                                                    .labels(Map.of("string", "string"))
                                                    .build())
                                                .retry(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyRetryArgs.builder()
                                                    .backoff(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyRetryBackoffArgs.builder()
                                                        .duration("string")
                                                        .factor("string")
                                                        .maxDuration("string")
                                                        .build())
                                                    .limit("string")
                                                    .build())
                                                .syncOptions("string")
                                                .build())
                                            .build())
                                        .build())
                                    .build())
                                .selector(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorSelectorArgs.builder()
                                    .matchExpressions(ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorSelectorMatchExpressionArgs.builder()
                                        .key("string")
                                        .operator("string")
                                        .values("string")
                                        .build())
                                    .matchLabels(Map.of("string", "string"))
                                    .build())
                                .build())
                            .template(ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateArgs.builder()
                                .metadata(ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateMetadataArgs.builder()
                                    .annotations(Map.of("string", "string"))
                                    .finalizers("string")
                                    .labels(Map.of("string", "string"))
                                    .name("string")
                                    .namespace("string")
                                    .build())
                                .spec(ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecArgs.builder()
                                    .destination(ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecDestinationArgs.builder()
                                        .name("string")
                                        .namespace("string")
                                        .server("string")
                                        .build())
                                    .ignoreDifferences(ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecIgnoreDifferenceArgs.builder()
                                        .group("string")
                                        .jqPathExpressions("string")
                                        .jsonPointers("string")
                                        .kind("string")
                                        .managedFieldsManagers("string")
                                        .name("string")
                                        .namespace("string")
                                        .build())
                                    .infos(ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecInfoArgs.builder()
                                        .name("string")
                                        .value("string")
                                        .build())
                                    .project("string")
                                    .revisionHistoryLimit(0)
                                    .sources(ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceArgs.builder()
                                        .chart("string")
                                        .directory(ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceDirectoryArgs.builder()
                                            .exclude("string")
                                            .include("string")
                                            .jsonnet(ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceDirectoryJsonnetArgs.builder()
                                                .extVars(ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceDirectoryJsonnetExtVarArgs.builder()
                                                    .code(false)
                                                    .name("string")
                                                    .value("string")
                                                    .build())
                                                .libs("string")
                                                .tlas(ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceDirectoryJsonnetTlaArgs.builder()
                                                    .code(false)
                                                    .name("string")
                                                    .value("string")
                                                    .build())
                                                .build())
                                            .recurse(false)
                                            .build())
                                        .helm(ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceHelmArgs.builder()
                                            .fileParameters(ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceHelmFileParameterArgs.builder()
                                                .name("string")
                                                .path("string")
                                                .build())
                                            .ignoreMissingValueFiles(false)
                                            .parameters(ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceHelmParameterArgs.builder()
                                                .forceString(false)
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .passCredentials(false)
                                            .releaseName("string")
                                            .skipCrds(false)
                                            .valueFiles("string")
                                            .values("string")
                                            .version("string")
                                            .build())
                                        .kustomize(ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceKustomizeArgs.builder()
                                            .commonAnnotations(Map.of("string", "string"))
                                            .commonLabels(Map.of("string", "string"))
                                            .images("string")
                                            .namePrefix("string")
                                            .nameSuffix("string")
                                            .patches(ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceKustomizePatchArgs.builder()
                                                .target(ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceKustomizePatchTargetArgs.builder()
                                                    .annotationSelector("string")
                                                    .group("string")
                                                    .kind("string")
                                                    .labelSelector("string")
                                                    .name("string")
                                                    .namespace("string")
                                                    .version("string")
                                                    .build())
                                                .options(Map.of("string", false))
                                                .patch("string")
                                                .path("string")
                                                .build())
                                            .version("string")
                                            .build())
                                        .path("string")
                                        .plugin(ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourcePluginArgs.builder()
                                            .envs(ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourcePluginEnvArgs.builder()
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .name("string")
                                            .build())
                                        .ref("string")
                                        .repoUrl("string")
                                        .targetRevision("string")
                                        .build())
                                    .syncPolicy(ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicyArgs.builder()
                                        .automated(ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicyAutomatedArgs.builder()
                                            .allowEmpty(false)
                                            .prune(false)
                                            .selfHeal(false)
                                            .build())
                                        .managedNamespaceMetadata(ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicyManagedNamespaceMetadataArgs.builder()
                                            .annotations(Map.of("string", "string"))
                                            .labels(Map.of("string", "string"))
                                            .build())
                                        .retry(ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicyRetryArgs.builder()
                                            .backoff(ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicyRetryBackoffArgs.builder()
                                                .duration("string")
                                                .factor("string")
                                                .maxDuration("string")
                                                .build())
                                            .limit("string")
                                            .build())
                                        .syncOptions("string")
                                        .build())
                                    .build())
                                .build())
                            .build())
                        .merges(ApplicationSetSpecGeneratorMatrixGeneratorMergeArgs.builder()
                            .generators(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorArgs.builder()
                                .clusterDecisionResources(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceArgs.builder()
                                    .configMapRef("string")
                                    .labelSelector(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceLabelSelectorArgs.builder()
                                        .matchExpressions(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceLabelSelectorMatchExpressionArgs.builder()
                                            .key("string")
                                            .operator("string")
                                            .values("string")
                                            .build())
                                        .matchLabels(Map.of("string", "string"))
                                        .build())
                                    .name("string")
                                    .requeueAfterSeconds("string")
                                    .template(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateArgs.builder()
                                        .metadata(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateMetadataArgs.builder()
                                            .annotations(Map.of("string", "string"))
                                            .finalizers("string")
                                            .labels(Map.of("string", "string"))
                                            .name("string")
                                            .namespace("string")
                                            .build())
                                        .spec(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecArgs.builder()
                                            .destination(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecDestinationArgs.builder()
                                                .name("string")
                                                .namespace("string")
                                                .server("string")
                                                .build())
                                            .ignoreDifferences(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecIgnoreDifferenceArgs.builder()
                                                .group("string")
                                                .jqPathExpressions("string")
                                                .jsonPointers("string")
                                                .kind("string")
                                                .managedFieldsManagers("string")
                                                .name("string")
                                                .namespace("string")
                                                .build())
                                            .infos(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecInfoArgs.builder()
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .project("string")
                                            .revisionHistoryLimit(0)
                                            .sources(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceArgs.builder()
                                                .chart("string")
                                                .directory(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryArgs.builder()
                                                    .exclude("string")
                                                    .include("string")
                                                    .jsonnet(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetArgs.builder()
                                                        .extVars(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetExtVarArgs.builder()
                                                            .code(false)
                                                            .name("string")
                                                            .value("string")
                                                            .build())
                                                        .libs("string")
                                                        .tlas(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetTlaArgs.builder()
                                                            .code(false)
                                                            .name("string")
                                                            .value("string")
                                                            .build())
                                                        .build())
                                                    .recurse(false)
                                                    .build())
                                                .helm(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmArgs.builder()
                                                    .fileParameters(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameterArgs.builder()
                                                        .name("string")
                                                        .path("string")
                                                        .build())
                                                    .ignoreMissingValueFiles(false)
                                                    .parameters(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameterArgs.builder()
                                                        .forceString(false)
                                                        .name("string")
                                                        .value("string")
                                                        .build())
                                                    .passCredentials(false)
                                                    .releaseName("string")
                                                    .skipCrds(false)
                                                    .valueFiles("string")
                                                    .values("string")
                                                    .version("string")
                                                    .build())
                                                .kustomize(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizeArgs.builder()
                                                    .commonAnnotations(Map.of("string", "string"))
                                                    .commonLabels(Map.of("string", "string"))
                                                    .images("string")
                                                    .namePrefix("string")
                                                    .nameSuffix("string")
                                                    .patches(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchArgs.builder()
                                                        .target(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTargetArgs.builder()
                                                            .annotationSelector("string")
                                                            .group("string")
                                                            .kind("string")
                                                            .labelSelector("string")
                                                            .name("string")
                                                            .namespace("string")
                                                            .version("string")
                                                            .build())
                                                        .options(Map.of("string", false))
                                                        .patch("string")
                                                        .path("string")
                                                        .build())
                                                    .version("string")
                                                    .build())
                                                .path("string")
                                                .plugin(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourcePluginArgs.builder()
                                                    .envs(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnvArgs.builder()
                                                        .name("string")
                                                        .value("string")
                                                        .build())
                                                    .name("string")
                                                    .build())
                                                .ref("string")
                                                .repoUrl("string")
                                                .targetRevision("string")
                                                .build())
                                            .syncPolicy(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyArgs.builder()
                                                .automated(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomatedArgs.builder()
                                                    .allowEmpty(false)
                                                    .prune(false)
                                                    .selfHeal(false)
                                                    .build())
                                                .managedNamespaceMetadata(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadataArgs.builder()
                                                    .annotations(Map.of("string", "string"))
                                                    .labels(Map.of("string", "string"))
                                                    .build())
                                                .retry(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryArgs.builder()
                                                    .backoff(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoffArgs.builder()
                                                        .duration("string")
                                                        .factor("string")
                                                        .maxDuration("string")
                                                        .build())
                                                    .limit("string")
                                                    .build())
                                                .syncOptions("string")
                                                .build())
                                            .build())
                                        .build())
                                    .values(Map.of("string", "string"))
                                    .build())
                                .clusters(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterArgs.builder()
                                    .enabled(false)
                                    .selector(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterSelectorArgs.builder()
                                        .matchExpressions(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterSelectorMatchExpressionArgs.builder()
                                            .key("string")
                                            .operator("string")
                                            .values("string")
                                            .build())
                                        .matchLabels(Map.of("string", "string"))
                                        .build())
                                    .template(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateArgs.builder()
                                        .metadata(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateMetadataArgs.builder()
                                            .annotations(Map.of("string", "string"))
                                            .finalizers("string")
                                            .labels(Map.of("string", "string"))
                                            .name("string")
                                            .namespace("string")
                                            .build())
                                        .spec(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecArgs.builder()
                                            .destination(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecDestinationArgs.builder()
                                                .name("string")
                                                .namespace("string")
                                                .server("string")
                                                .build())
                                            .ignoreDifferences(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecIgnoreDifferenceArgs.builder()
                                                .group("string")
                                                .jqPathExpressions("string")
                                                .jsonPointers("string")
                                                .kind("string")
                                                .managedFieldsManagers("string")
                                                .name("string")
                                                .namespace("string")
                                                .build())
                                            .infos(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecInfoArgs.builder()
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .project("string")
                                            .revisionHistoryLimit(0)
                                            .sources(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceArgs.builder()
                                                .chart("string")
                                                .directory(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryArgs.builder()
                                                    .exclude("string")
                                                    .include("string")
                                                    .jsonnet(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnetArgs.builder()
                                                        .extVars(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnetExtVarArgs.builder()
                                                            .code(false)
                                                            .name("string")
                                                            .value("string")
                                                            .build())
                                                        .libs("string")
                                                        .tlas(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnetTlaArgs.builder()
                                                            .code(false)
                                                            .name("string")
                                                            .value("string")
                                                            .build())
                                                        .build())
                                                    .recurse(false)
                                                    .build())
                                                .helm(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceHelmArgs.builder()
                                                    .fileParameters(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceHelmFileParameterArgs.builder()
                                                        .name("string")
                                                        .path("string")
                                                        .build())
                                                    .ignoreMissingValueFiles(false)
                                                    .parameters(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceHelmParameterArgs.builder()
                                                        .forceString(false)
                                                        .name("string")
                                                        .value("string")
                                                        .build())
                                                    .passCredentials(false)
                                                    .releaseName("string")
                                                    .skipCrds(false)
                                                    .valueFiles("string")
                                                    .values("string")
                                                    .version("string")
                                                    .build())
                                                .kustomize(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizeArgs.builder()
                                                    .commonAnnotations(Map.of("string", "string"))
                                                    .commonLabels(Map.of("string", "string"))
                                                    .images("string")
                                                    .namePrefix("string")
                                                    .nameSuffix("string")
                                                    .patches(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizePatchArgs.builder()
                                                        .target(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizePatchTargetArgs.builder()
                                                            .annotationSelector("string")
                                                            .group("string")
                                                            .kind("string")
                                                            .labelSelector("string")
                                                            .name("string")
                                                            .namespace("string")
                                                            .version("string")
                                                            .build())
                                                        .options(Map.of("string", false))
                                                        .patch("string")
                                                        .path("string")
                                                        .build())
                                                    .version("string")
                                                    .build())
                                                .path("string")
                                                .plugin(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourcePluginArgs.builder()
                                                    .envs(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourcePluginEnvArgs.builder()
                                                        .name("string")
                                                        .value("string")
                                                        .build())
                                                    .name("string")
                                                    .build())
                                                .ref("string")
                                                .repoUrl("string")
                                                .targetRevision("string")
                                                .build())
                                            .syncPolicy(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyArgs.builder()
                                                .automated(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyAutomatedArgs.builder()
                                                    .allowEmpty(false)
                                                    .prune(false)
                                                    .selfHeal(false)
                                                    .build())
                                                .managedNamespaceMetadata(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadataArgs.builder()
                                                    .annotations(Map.of("string", "string"))
                                                    .labels(Map.of("string", "string"))
                                                    .build())
                                                .retry(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyRetryArgs.builder()
                                                    .backoff(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyRetryBackoffArgs.builder()
                                                        .duration("string")
                                                        .factor("string")
                                                        .maxDuration("string")
                                                        .build())
                                                    .limit("string")
                                                    .build())
                                                .syncOptions("string")
                                                .build())
                                            .build())
                                        .build())
                                    .values(Map.of("string", "string"))
                                    .build())
                                .gits(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitArgs.builder()
                                    .repoUrl("string")
                                    .directories(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitDirectoryArgs.builder()
                                        .path("string")
                                        .exclude(false)
                                        .build())
                                    .files(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitFileArgs.builder()
                                        .path("string")
                                        .build())
                                    .pathParamPrefix("string")
                                    .revision("string")
                                    .template(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateArgs.builder()
                                        .metadata(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateMetadataArgs.builder()
                                            .annotations(Map.of("string", "string"))
                                            .finalizers("string")
                                            .labels(Map.of("string", "string"))
                                            .name("string")
                                            .namespace("string")
                                            .build())
                                        .spec(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecArgs.builder()
                                            .destination(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecDestinationArgs.builder()
                                                .name("string")
                                                .namespace("string")
                                                .server("string")
                                                .build())
                                            .ignoreDifferences(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecIgnoreDifferenceArgs.builder()
                                                .group("string")
                                                .jqPathExpressions("string")
                                                .jsonPointers("string")
                                                .kind("string")
                                                .managedFieldsManagers("string")
                                                .name("string")
                                                .namespace("string")
                                                .build())
                                            .infos(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecInfoArgs.builder()
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .project("string")
                                            .revisionHistoryLimit(0)
                                            .sources(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceArgs.builder()
                                                .chart("string")
                                                .directory(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryArgs.builder()
                                                    .exclude("string")
                                                    .include("string")
                                                    .jsonnet(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnetArgs.builder()
                                                        .extVars(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnetExtVarArgs.builder()
                                                            .code(false)
                                                            .name("string")
                                                            .value("string")
                                                            .build())
                                                        .libs("string")
                                                        .tlas(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnetTlaArgs.builder()
                                                            .code(false)
                                                            .name("string")
                                                            .value("string")
                                                            .build())
                                                        .build())
                                                    .recurse(false)
                                                    .build())
                                                .helm(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceHelmArgs.builder()
                                                    .fileParameters(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceHelmFileParameterArgs.builder()
                                                        .name("string")
                                                        .path("string")
                                                        .build())
                                                    .ignoreMissingValueFiles(false)
                                                    .parameters(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceHelmParameterArgs.builder()
                                                        .forceString(false)
                                                        .name("string")
                                                        .value("string")
                                                        .build())
                                                    .passCredentials(false)
                                                    .releaseName("string")
                                                    .skipCrds(false)
                                                    .valueFiles("string")
                                                    .values("string")
                                                    .version("string")
                                                    .build())
                                                .kustomize(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceKustomizeArgs.builder()
                                                    .commonAnnotations(Map.of("string", "string"))
                                                    .commonLabels(Map.of("string", "string"))
                                                    .images("string")
                                                    .namePrefix("string")
                                                    .nameSuffix("string")
                                                    .patches(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceKustomizePatchArgs.builder()
                                                        .target(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceKustomizePatchTargetArgs.builder()
                                                            .annotationSelector("string")
                                                            .group("string")
                                                            .kind("string")
                                                            .labelSelector("string")
                                                            .name("string")
                                                            .namespace("string")
                                                            .version("string")
                                                            .build())
                                                        .options(Map.of("string", false))
                                                        .patch("string")
                                                        .path("string")
                                                        .build())
                                                    .version("string")
                                                    .build())
                                                .path("string")
                                                .plugin(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourcePluginArgs.builder()
                                                    .envs(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourcePluginEnvArgs.builder()
                                                        .name("string")
                                                        .value("string")
                                                        .build())
                                                    .name("string")
                                                    .build())
                                                .ref("string")
                                                .repoUrl("string")
                                                .targetRevision("string")
                                                .build())
                                            .syncPolicy(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicyArgs.builder()
                                                .automated(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicyAutomatedArgs.builder()
                                                    .allowEmpty(false)
                                                    .prune(false)
                                                    .selfHeal(false)
                                                    .build())
                                                .managedNamespaceMetadata(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadataArgs.builder()
                                                    .annotations(Map.of("string", "string"))
                                                    .labels(Map.of("string", "string"))
                                                    .build())
                                                .retry(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicyRetryArgs.builder()
                                                    .backoff(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicyRetryBackoffArgs.builder()
                                                        .duration("string")
                                                        .factor("string")
                                                        .maxDuration("string")
                                                        .build())
                                                    .limit("string")
                                                    .build())
                                                .syncOptions("string")
                                                .build())
                                            .build())
                                        .build())
                                    .values(Map.of("string", "string"))
                                    .build())
                                .lists(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListArgs.builder()
                                    .elements(Map.of("string", "string"))
                                    .template(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateArgs.builder()
                                        .metadata(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateMetadataArgs.builder()
                                            .annotations(Map.of("string", "string"))
                                            .finalizers("string")
                                            .labels(Map.of("string", "string"))
                                            .name("string")
                                            .namespace("string")
                                            .build())
                                        .spec(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecArgs.builder()
                                            .destination(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecDestinationArgs.builder()
                                                .name("string")
                                                .namespace("string")
                                                .server("string")
                                                .build())
                                            .ignoreDifferences(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecIgnoreDifferenceArgs.builder()
                                                .group("string")
                                                .jqPathExpressions("string")
                                                .jsonPointers("string")
                                                .kind("string")
                                                .managedFieldsManagers("string")
                                                .name("string")
                                                .namespace("string")
                                                .build())
                                            .infos(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecInfoArgs.builder()
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .project("string")
                                            .revisionHistoryLimit(0)
                                            .sources(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceArgs.builder()
                                                .chart("string")
                                                .directory(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceDirectoryArgs.builder()
                                                    .exclude("string")
                                                    .include("string")
                                                    .jsonnet(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnetArgs.builder()
                                                        .extVars(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnetExtVarArgs.builder()
                                                            .code(false)
                                                            .name("string")
                                                            .value("string")
                                                            .build())
                                                        .libs("string")
                                                        .tlas(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnetTlaArgs.builder()
                                                            .code(false)
                                                            .name("string")
                                                            .value("string")
                                                            .build())
                                                        .build())
                                                    .recurse(false)
                                                    .build())
                                                .helm(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceHelmArgs.builder()
                                                    .fileParameters(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceHelmFileParameterArgs.builder()
                                                        .name("string")
                                                        .path("string")
                                                        .build())
                                                    .ignoreMissingValueFiles(false)
                                                    .parameters(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceHelmParameterArgs.builder()
                                                        .forceString(false)
                                                        .name("string")
                                                        .value("string")
                                                        .build())
                                                    .passCredentials(false)
                                                    .releaseName("string")
                                                    .skipCrds(false)
                                                    .valueFiles("string")
                                                    .values("string")
                                                    .version("string")
                                                    .build())
                                                .kustomize(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceKustomizeArgs.builder()
                                                    .commonAnnotations(Map.of("string", "string"))
                                                    .commonLabels(Map.of("string", "string"))
                                                    .images("string")
                                                    .namePrefix("string")
                                                    .nameSuffix("string")
                                                    .patches(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceKustomizePatchArgs.builder()
                                                        .target(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceKustomizePatchTargetArgs.builder()
                                                            .annotationSelector("string")
                                                            .group("string")
                                                            .kind("string")
                                                            .labelSelector("string")
                                                            .name("string")
                                                            .namespace("string")
                                                            .version("string")
                                                            .build())
                                                        .options(Map.of("string", false))
                                                        .patch("string")
                                                        .path("string")
                                                        .build())
                                                    .version("string")
                                                    .build())
                                                .path("string")
                                                .plugin(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourcePluginArgs.builder()
                                                    .envs(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourcePluginEnvArgs.builder()
                                                        .name("string")
                                                        .value("string")
                                                        .build())
                                                    .name("string")
                                                    .build())
                                                .ref("string")
                                                .repoUrl("string")
                                                .targetRevision("string")
                                                .build())
                                            .syncPolicy(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicyArgs.builder()
                                                .automated(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicyAutomatedArgs.builder()
                                                    .allowEmpty(false)
                                                    .prune(false)
                                                    .selfHeal(false)
                                                    .build())
                                                .managedNamespaceMetadata(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadataArgs.builder()
                                                    .annotations(Map.of("string", "string"))
                                                    .labels(Map.of("string", "string"))
                                                    .build())
                                                .retry(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicyRetryArgs.builder()
                                                    .backoff(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicyRetryBackoffArgs.builder()
                                                        .duration("string")
                                                        .factor("string")
                                                        .maxDuration("string")
                                                        .build())
                                                    .limit("string")
                                                    .build())
                                                .syncOptions("string")
                                                .build())
                                            .build())
                                        .build())
                                    .build())
                                .pullRequests(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestArgs.builder()
                                    .bitbucketServer(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestBitbucketServerArgs.builder()
                                        .api("string")
                                        .project("string")
                                        .repo("string")
                                        .basicAuth(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestBitbucketServerBasicAuthArgs.builder()
                                            .passwordRef(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestBitbucketServerBasicAuthPasswordRefArgs.builder()
                                                .key("string")
                                                .secretName("string")
                                                .build())
                                            .username("string")
                                            .build())
                                        .build())
                                    .filters(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestFilterArgs.builder()
                                        .branchMatch("string")
                                        .build())
                                    .gitea(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGiteaArgs.builder()
                                        .api("string")
                                        .owner("string")
                                        .repo("string")
                                        .insecure(false)
                                        .tokenRef(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGiteaTokenRefArgs.builder()
                                            .key("string")
                                            .secretName("string")
                                            .build())
                                        .build())
                                    .github(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGithubArgs.builder()
                                        .owner("string")
                                        .repo("string")
                                        .api("string")
                                        .appSecretName("string")
                                        .labels("string")
                                        .tokenRef(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGithubTokenRefArgs.builder()
                                            .key("string")
                                            .secretName("string")
                                            .build())
                                        .build())
                                    .gitlab(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGitlabArgs.builder()
                                        .project("string")
                                        .api("string")
                                        .labels("string")
                                        .pullRequestState("string")
                                        .tokenRef(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGitlabTokenRefArgs.builder()
                                            .key("string")
                                            .secretName("string")
                                            .build())
                                        .build())
                                    .requeueAfterSeconds("string")
                                    .template(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateArgs.builder()
                                        .metadata(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateMetadataArgs.builder()
                                            .annotations(Map.of("string", "string"))
                                            .finalizers("string")
                                            .labels(Map.of("string", "string"))
                                            .name("string")
                                            .namespace("string")
                                            .build())
                                        .spec(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecArgs.builder()
                                            .destination(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecDestinationArgs.builder()
                                                .name("string")
                                                .namespace("string")
                                                .server("string")
                                                .build())
                                            .ignoreDifferences(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecIgnoreDifferenceArgs.builder()
                                                .group("string")
                                                .jqPathExpressions("string")
                                                .jsonPointers("string")
                                                .kind("string")
                                                .managedFieldsManagers("string")
                                                .name("string")
                                                .namespace("string")
                                                .build())
                                            .infos(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecInfoArgs.builder()
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .project("string")
                                            .revisionHistoryLimit(0)
                                            .sources(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceArgs.builder()
                                                .chart("string")
                                                .directory(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryArgs.builder()
                                                    .exclude("string")
                                                    .include("string")
                                                    .jsonnet(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetArgs.builder()
                                                        .extVars(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetExtVarArgs.builder()
                                                            .code(false)
                                                            .name("string")
                                                            .value("string")
                                                            .build())
                                                        .libs("string")
                                                        .tlas(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetTlaArgs.builder()
                                                            .code(false)
                                                            .name("string")
                                                            .value("string")
                                                            .build())
                                                        .build())
                                                    .recurse(false)
                                                    .build())
                                                .helm(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmArgs.builder()
                                                    .fileParameters(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmFileParameterArgs.builder()
                                                        .name("string")
                                                        .path("string")
                                                        .build())
                                                    .ignoreMissingValueFiles(false)
                                                    .parameters(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmParameterArgs.builder()
                                                        .forceString(false)
                                                        .name("string")
                                                        .value("string")
                                                        .build())
                                                    .passCredentials(false)
                                                    .releaseName("string")
                                                    .skipCrds(false)
                                                    .valueFiles("string")
                                                    .values("string")
                                                    .version("string")
                                                    .build())
                                                .kustomize(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomizeArgs.builder()
                                                    .commonAnnotations(Map.of("string", "string"))
                                                    .commonLabels(Map.of("string", "string"))
                                                    .images("string")
                                                    .namePrefix("string")
                                                    .nameSuffix("string")
                                                    .patches(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomizePatchArgs.builder()
                                                        .target(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomizePatchTargetArgs.builder()
                                                            .annotationSelector("string")
                                                            .group("string")
                                                            .kind("string")
                                                            .labelSelector("string")
                                                            .name("string")
                                                            .namespace("string")
                                                            .version("string")
                                                            .build())
                                                        .options(Map.of("string", false))
                                                        .patch("string")
                                                        .path("string")
                                                        .build())
                                                    .version("string")
                                                    .build())
                                                .path("string")
                                                .plugin(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourcePluginArgs.builder()
                                                    .envs(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourcePluginEnvArgs.builder()
                                                        .name("string")
                                                        .value("string")
                                                        .build())
                                                    .name("string")
                                                    .build())
                                                .ref("string")
                                                .repoUrl("string")
                                                .targetRevision("string")
                                                .build())
                                            .syncPolicy(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyArgs.builder()
                                                .automated(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyAutomatedArgs.builder()
                                                    .allowEmpty(false)
                                                    .prune(false)
                                                    .selfHeal(false)
                                                    .build())
                                                .managedNamespaceMetadata(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyManagedNamespaceMetadataArgs.builder()
                                                    .annotations(Map.of("string", "string"))
                                                    .labels(Map.of("string", "string"))
                                                    .build())
                                                .retry(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyRetryArgs.builder()
                                                    .backoff(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyRetryBackoffArgs.builder()
                                                        .duration("string")
                                                        .factor("string")
                                                        .maxDuration("string")
                                                        .build())
                                                    .limit("string")
                                                    .build())
                                                .syncOptions("string")
                                                .build())
                                            .build())
                                        .build())
                                    .build())
                                .scmProviders(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderArgs.builder()
                                    .azureDevops(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderAzureDevopsArgs.builder()
                                        .organization("string")
                                        .teamProject("string")
                                        .accessTokenRef(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderAzureDevopsAccessTokenRefArgs.builder()
                                            .key("string")
                                            .secretName("string")
                                            .build())
                                        .allBranches(false)
                                        .api("string")
                                        .build())
                                    .bitbucketCloud(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderBitbucketCloudArgs.builder()
                                        .owner("string")
                                        .user("string")
                                        .allBranches(false)
                                        .appPasswordRef(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderBitbucketCloudAppPasswordRefArgs.builder()
                                            .key("string")
                                            .secretName("string")
                                            .build())
                                        .build())
                                    .bitbucketServer(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderBitbucketServerArgs.builder()
                                        .api("string")
                                        .project("string")
                                        .allBranches(false)
                                        .basicAuth(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderBitbucketServerBasicAuthArgs.builder()
                                            .passwordRef(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderBitbucketServerBasicAuthPasswordRefArgs.builder()
                                                .key("string")
                                                .secretName("string")
                                                .build())
                                            .username("string")
                                            .build())
                                        .build())
                                    .cloneProtocol("string")
                                    .filters(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderFilterArgs.builder()
                                        .branchMatch("string")
                                        .labelMatch("string")
                                        .pathsDoNotExists("string")
                                        .pathsExists("string")
                                        .repositoryMatch("string")
                                        .build())
                                    .gitea(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGiteaArgs.builder()
                                        .owner("string")
                                        .allBranches(false)
                                        .api("string")
                                        .insecure(false)
                                        .tokenRef(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGiteaTokenRefArgs.builder()
                                            .key("string")
                                            .secretName("string")
                                            .build())
                                        .build())
                                    .github(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGithubArgs.builder()
                                        .organization("string")
                                        .allBranches(false)
                                        .api("string")
                                        .appSecretName("string")
                                        .tokenRef(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGithubTokenRefArgs.builder()
                                            .key("string")
                                            .secretName("string")
                                            .build())
                                        .build())
                                    .gitlab(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGitlabArgs.builder()
                                        .group("string")
                                        .allBranches(false)
                                        .api("string")
                                        .includeSubgroups(false)
                                        .tokenRef(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGitlabTokenRefArgs.builder()
                                            .key("string")
                                            .secretName("string")
                                            .build())
                                        .build())
                                    .requeueAfterSeconds("string")
                                    .template(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateArgs.builder()
                                        .metadata(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateMetadataArgs.builder()
                                            .annotations(Map.of("string", "string"))
                                            .finalizers("string")
                                            .labels(Map.of("string", "string"))
                                            .name("string")
                                            .namespace("string")
                                            .build())
                                        .spec(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecArgs.builder()
                                            .destination(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecDestinationArgs.builder()
                                                .name("string")
                                                .namespace("string")
                                                .server("string")
                                                .build())
                                            .ignoreDifferences(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecIgnoreDifferenceArgs.builder()
                                                .group("string")
                                                .jqPathExpressions("string")
                                                .jsonPointers("string")
                                                .kind("string")
                                                .managedFieldsManagers("string")
                                                .name("string")
                                                .namespace("string")
                                                .build())
                                            .infos(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecInfoArgs.builder()
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .project("string")
                                            .revisionHistoryLimit(0)
                                            .sources(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceArgs.builder()
                                                .chart("string")
                                                .directory(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryArgs.builder()
                                                    .exclude("string")
                                                    .include("string")
                                                    .jsonnet(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetArgs.builder()
                                                        .extVars(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetExtVarArgs.builder()
                                                            .code(false)
                                                            .name("string")
                                                            .value("string")
                                                            .build())
                                                        .libs("string")
                                                        .tlas(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetTlaArgs.builder()
                                                            .code(false)
                                                            .name("string")
                                                            .value("string")
                                                            .build())
                                                        .build())
                                                    .recurse(false)
                                                    .build())
                                                .helm(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmArgs.builder()
                                                    .fileParameters(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmFileParameterArgs.builder()
                                                        .name("string")
                                                        .path("string")
                                                        .build())
                                                    .ignoreMissingValueFiles(false)
                                                    .parameters(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmParameterArgs.builder()
                                                        .forceString(false)
                                                        .name("string")
                                                        .value("string")
                                                        .build())
                                                    .passCredentials(false)
                                                    .releaseName("string")
                                                    .skipCrds(false)
                                                    .valueFiles("string")
                                                    .values("string")
                                                    .version("string")
                                                    .build())
                                                .kustomize(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomizeArgs.builder()
                                                    .commonAnnotations(Map.of("string", "string"))
                                                    .commonLabels(Map.of("string", "string"))
                                                    .images("string")
                                                    .namePrefix("string")
                                                    .nameSuffix("string")
                                                    .patches(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomizePatchArgs.builder()
                                                        .target(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomizePatchTargetArgs.builder()
                                                            .annotationSelector("string")
                                                            .group("string")
                                                            .kind("string")
                                                            .labelSelector("string")
                                                            .name("string")
                                                            .namespace("string")
                                                            .version("string")
                                                            .build())
                                                        .options(Map.of("string", false))
                                                        .patch("string")
                                                        .path("string")
                                                        .build())
                                                    .version("string")
                                                    .build())
                                                .path("string")
                                                .plugin(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourcePluginArgs.builder()
                                                    .envs(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourcePluginEnvArgs.builder()
                                                        .name("string")
                                                        .value("string")
                                                        .build())
                                                    .name("string")
                                                    .build())
                                                .ref("string")
                                                .repoUrl("string")
                                                .targetRevision("string")
                                                .build())
                                            .syncPolicy(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyArgs.builder()
                                                .automated(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyAutomatedArgs.builder()
                                                    .allowEmpty(false)
                                                    .prune(false)
                                                    .selfHeal(false)
                                                    .build())
                                                .managedNamespaceMetadata(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyManagedNamespaceMetadataArgs.builder()
                                                    .annotations(Map.of("string", "string"))
                                                    .labels(Map.of("string", "string"))
                                                    .build())
                                                .retry(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyRetryArgs.builder()
                                                    .backoff(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyRetryBackoffArgs.builder()
                                                        .duration("string")
                                                        .factor("string")
                                                        .maxDuration("string")
                                                        .build())
                                                    .limit("string")
                                                    .build())
                                                .syncOptions("string")
                                                .build())
                                            .build())
                                        .build())
                                    .build())
                                .selector(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorSelectorArgs.builder()
                                    .matchExpressions(ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorSelectorMatchExpressionArgs.builder()
                                        .key("string")
                                        .operator("string")
                                        .values("string")
                                        .build())
                                    .matchLabels(Map.of("string", "string"))
                                    .build())
                                .build())
                            .mergeKeys("string")
                            .template(ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateArgs.builder()
                                .metadata(ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateMetadataArgs.builder()
                                    .annotations(Map.of("string", "string"))
                                    .finalizers("string")
                                    .labels(Map.of("string", "string"))
                                    .name("string")
                                    .namespace("string")
                                    .build())
                                .spec(ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecArgs.builder()
                                    .destination(ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecDestinationArgs.builder()
                                        .name("string")
                                        .namespace("string")
                                        .server("string")
                                        .build())
                                    .ignoreDifferences(ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecIgnoreDifferenceArgs.builder()
                                        .group("string")
                                        .jqPathExpressions("string")
                                        .jsonPointers("string")
                                        .kind("string")
                                        .managedFieldsManagers("string")
                                        .name("string")
                                        .namespace("string")
                                        .build())
                                    .infos(ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecInfoArgs.builder()
                                        .name("string")
                                        .value("string")
                                        .build())
                                    .project("string")
                                    .revisionHistoryLimit(0)
                                    .sources(ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceArgs.builder()
                                        .chart("string")
                                        .directory(ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceDirectoryArgs.builder()
                                            .exclude("string")
                                            .include("string")
                                            .jsonnet(ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceDirectoryJsonnetArgs.builder()
                                                .extVars(ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceDirectoryJsonnetExtVarArgs.builder()
                                                    .code(false)
                                                    .name("string")
                                                    .value("string")
                                                    .build())
                                                .libs("string")
                                                .tlas(ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceDirectoryJsonnetTlaArgs.builder()
                                                    .code(false)
                                                    .name("string")
                                                    .value("string")
                                                    .build())
                                                .build())
                                            .recurse(false)
                                            .build())
                                        .helm(ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceHelmArgs.builder()
                                            .fileParameters(ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceHelmFileParameterArgs.builder()
                                                .name("string")
                                                .path("string")
                                                .build())
                                            .ignoreMissingValueFiles(false)
                                            .parameters(ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceHelmParameterArgs.builder()
                                                .forceString(false)
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .passCredentials(false)
                                            .releaseName("string")
                                            .skipCrds(false)
                                            .valueFiles("string")
                                            .values("string")
                                            .version("string")
                                            .build())
                                        .kustomize(ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceKustomizeArgs.builder()
                                            .commonAnnotations(Map.of("string", "string"))
                                            .commonLabels(Map.of("string", "string"))
                                            .images("string")
                                            .namePrefix("string")
                                            .nameSuffix("string")
                                            .patches(ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceKustomizePatchArgs.builder()
                                                .target(ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceKustomizePatchTargetArgs.builder()
                                                    .annotationSelector("string")
                                                    .group("string")
                                                    .kind("string")
                                                    .labelSelector("string")
                                                    .name("string")
                                                    .namespace("string")
                                                    .version("string")
                                                    .build())
                                                .options(Map.of("string", false))
                                                .patch("string")
                                                .path("string")
                                                .build())
                                            .version("string")
                                            .build())
                                        .path("string")
                                        .plugin(ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourcePluginArgs.builder()
                                            .envs(ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourcePluginEnvArgs.builder()
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .name("string")
                                            .build())
                                        .ref("string")
                                        .repoUrl("string")
                                        .targetRevision("string")
                                        .build())
                                    .syncPolicy(ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicyArgs.builder()
                                        .automated(ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicyAutomatedArgs.builder()
                                            .allowEmpty(false)
                                            .prune(false)
                                            .selfHeal(false)
                                            .build())
                                        .managedNamespaceMetadata(ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicyManagedNamespaceMetadataArgs.builder()
                                            .annotations(Map.of("string", "string"))
                                            .labels(Map.of("string", "string"))
                                            .build())
                                        .retry(ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicyRetryArgs.builder()
                                            .backoff(ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicyRetryBackoffArgs.builder()
                                                .duration("string")
                                                .factor("string")
                                                .maxDuration("string")
                                                .build())
                                            .limit("string")
                                            .build())
                                        .syncOptions("string")
                                        .build())
                                    .build())
                                .build())
                            .build())
                        .pullRequests(ApplicationSetSpecGeneratorMatrixGeneratorPullRequestArgs.builder()
                            .bitbucketServer(ApplicationSetSpecGeneratorMatrixGeneratorPullRequestBitbucketServerArgs.builder()
                                .api("string")
                                .project("string")
                                .repo("string")
                                .basicAuth(ApplicationSetSpecGeneratorMatrixGeneratorPullRequestBitbucketServerBasicAuthArgs.builder()
                                    .passwordRef(ApplicationSetSpecGeneratorMatrixGeneratorPullRequestBitbucketServerBasicAuthPasswordRefArgs.builder()
                                        .key("string")
                                        .secretName("string")
                                        .build())
                                    .username("string")
                                    .build())
                                .build())
                            .filters(ApplicationSetSpecGeneratorMatrixGeneratorPullRequestFilterArgs.builder()
                                .branchMatch("string")
                                .build())
                            .gitea(ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGiteaArgs.builder()
                                .api("string")
                                .owner("string")
                                .repo("string")
                                .insecure(false)
                                .tokenRef(ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGiteaTokenRefArgs.builder()
                                    .key("string")
                                    .secretName("string")
                                    .build())
                                .build())
                            .github(ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGithubArgs.builder()
                                .owner("string")
                                .repo("string")
                                .api("string")
                                .appSecretName("string")
                                .labels("string")
                                .tokenRef(ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGithubTokenRefArgs.builder()
                                    .key("string")
                                    .secretName("string")
                                    .build())
                                .build())
                            .gitlab(ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGitlabArgs.builder()
                                .project("string")
                                .api("string")
                                .labels("string")
                                .pullRequestState("string")
                                .tokenRef(ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGitlabTokenRefArgs.builder()
                                    .key("string")
                                    .secretName("string")
                                    .build())
                                .build())
                            .requeueAfterSeconds("string")
                            .template(ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateArgs.builder()
                                .metadata(ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateMetadataArgs.builder()
                                    .annotations(Map.of("string", "string"))
                                    .finalizers("string")
                                    .labels(Map.of("string", "string"))
                                    .name("string")
                                    .namespace("string")
                                    .build())
                                .spec(ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecArgs.builder()
                                    .destination(ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecDestinationArgs.builder()
                                        .name("string")
                                        .namespace("string")
                                        .server("string")
                                        .build())
                                    .ignoreDifferences(ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecIgnoreDifferenceArgs.builder()
                                        .group("string")
                                        .jqPathExpressions("string")
                                        .jsonPointers("string")
                                        .kind("string")
                                        .managedFieldsManagers("string")
                                        .name("string")
                                        .namespace("string")
                                        .build())
                                    .infos(ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecInfoArgs.builder()
                                        .name("string")
                                        .value("string")
                                        .build())
                                    .project("string")
                                    .revisionHistoryLimit(0)
                                    .sources(ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceArgs.builder()
                                        .chart("string")
                                        .directory(ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryArgs.builder()
                                            .exclude("string")
                                            .include("string")
                                            .jsonnet(ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetArgs.builder()
                                                .extVars(ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetExtVarArgs.builder()
                                                    .code(false)
                                                    .name("string")
                                                    .value("string")
                                                    .build())
                                                .libs("string")
                                                .tlas(ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetTlaArgs.builder()
                                                    .code(false)
                                                    .name("string")
                                                    .value("string")
                                                    .build())
                                                .build())
                                            .recurse(false)
                                            .build())
                                        .helm(ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmArgs.builder()
                                            .fileParameters(ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmFileParameterArgs.builder()
                                                .name("string")
                                                .path("string")
                                                .build())
                                            .ignoreMissingValueFiles(false)
                                            .parameters(ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmParameterArgs.builder()
                                                .forceString(false)
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .passCredentials(false)
                                            .releaseName("string")
                                            .skipCrds(false)
                                            .valueFiles("string")
                                            .values("string")
                                            .version("string")
                                            .build())
                                        .kustomize(ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizeArgs.builder()
                                            .commonAnnotations(Map.of("string", "string"))
                                            .commonLabels(Map.of("string", "string"))
                                            .images("string")
                                            .namePrefix("string")
                                            .nameSuffix("string")
                                            .patches(ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatchArgs.builder()
                                                .target(ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatchTargetArgs.builder()
                                                    .annotationSelector("string")
                                                    .group("string")
                                                    .kind("string")
                                                    .labelSelector("string")
                                                    .name("string")
                                                    .namespace("string")
                                                    .version("string")
                                                    .build())
                                                .options(Map.of("string", false))
                                                .patch("string")
                                                .path("string")
                                                .build())
                                            .version("string")
                                            .build())
                                        .path("string")
                                        .plugin(ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePluginArgs.builder()
                                            .envs(ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePluginEnvArgs.builder()
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .name("string")
                                            .build())
                                        .ref("string")
                                        .repoUrl("string")
                                        .targetRevision("string")
                                        .build())
                                    .syncPolicy(ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyArgs.builder()
                                        .automated(ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyAutomatedArgs.builder()
                                            .allowEmpty(false)
                                            .prune(false)
                                            .selfHeal(false)
                                            .build())
                                        .managedNamespaceMetadata(ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyManagedNamespaceMetadataArgs.builder()
                                            .annotations(Map.of("string", "string"))
                                            .labels(Map.of("string", "string"))
                                            .build())
                                        .retry(ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetryArgs.builder()
                                            .backoff(ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetryBackoffArgs.builder()
                                                .duration("string")
                                                .factor("string")
                                                .maxDuration("string")
                                                .build())
                                            .limit("string")
                                            .build())
                                        .syncOptions("string")
                                        .build())
                                    .build())
                                .build())
                            .build())
                        .scmProviders(ApplicationSetSpecGeneratorMatrixGeneratorScmProviderArgs.builder()
                            .azureDevops(ApplicationSetSpecGeneratorMatrixGeneratorScmProviderAzureDevopsArgs.builder()
                                .organization("string")
                                .teamProject("string")
                                .accessTokenRef(ApplicationSetSpecGeneratorMatrixGeneratorScmProviderAzureDevopsAccessTokenRefArgs.builder()
                                    .key("string")
                                    .secretName("string")
                                    .build())
                                .allBranches(false)
                                .api("string")
                                .build())
                            .bitbucketCloud(ApplicationSetSpecGeneratorMatrixGeneratorScmProviderBitbucketCloudArgs.builder()
                                .owner("string")
                                .user("string")
                                .allBranches(false)
                                .appPasswordRef(ApplicationSetSpecGeneratorMatrixGeneratorScmProviderBitbucketCloudAppPasswordRefArgs.builder()
                                    .key("string")
                                    .secretName("string")
                                    .build())
                                .build())
                            .bitbucketServer(ApplicationSetSpecGeneratorMatrixGeneratorScmProviderBitbucketServerArgs.builder()
                                .api("string")
                                .project("string")
                                .allBranches(false)
                                .basicAuth(ApplicationSetSpecGeneratorMatrixGeneratorScmProviderBitbucketServerBasicAuthArgs.builder()
                                    .passwordRef(ApplicationSetSpecGeneratorMatrixGeneratorScmProviderBitbucketServerBasicAuthPasswordRefArgs.builder()
                                        .key("string")
                                        .secretName("string")
                                        .build())
                                    .username("string")
                                    .build())
                                .build())
                            .cloneProtocol("string")
                            .filters(ApplicationSetSpecGeneratorMatrixGeneratorScmProviderFilterArgs.builder()
                                .branchMatch("string")
                                .labelMatch("string")
                                .pathsDoNotExists("string")
                                .pathsExists("string")
                                .repositoryMatch("string")
                                .build())
                            .gitea(ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGiteaArgs.builder()
                                .owner("string")
                                .allBranches(false)
                                .api("string")
                                .insecure(false)
                                .tokenRef(ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGiteaTokenRefArgs.builder()
                                    .key("string")
                                    .secretName("string")
                                    .build())
                                .build())
                            .github(ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGithubArgs.builder()
                                .organization("string")
                                .allBranches(false)
                                .api("string")
                                .appSecretName("string")
                                .tokenRef(ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGithubTokenRefArgs.builder()
                                    .key("string")
                                    .secretName("string")
                                    .build())
                                .build())
                            .gitlab(ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGitlabArgs.builder()
                                .group("string")
                                .allBranches(false)
                                .api("string")
                                .includeSubgroups(false)
                                .tokenRef(ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGitlabTokenRefArgs.builder()
                                    .key("string")
                                    .secretName("string")
                                    .build())
                                .build())
                            .requeueAfterSeconds("string")
                            .template(ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateArgs.builder()
                                .metadata(ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateMetadataArgs.builder()
                                    .annotations(Map.of("string", "string"))
                                    .finalizers("string")
                                    .labels(Map.of("string", "string"))
                                    .name("string")
                                    .namespace("string")
                                    .build())
                                .spec(ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecArgs.builder()
                                    .destination(ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecDestinationArgs.builder()
                                        .name("string")
                                        .namespace("string")
                                        .server("string")
                                        .build())
                                    .ignoreDifferences(ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecIgnoreDifferenceArgs.builder()
                                        .group("string")
                                        .jqPathExpressions("string")
                                        .jsonPointers("string")
                                        .kind("string")
                                        .managedFieldsManagers("string")
                                        .name("string")
                                        .namespace("string")
                                        .build())
                                    .infos(ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecInfoArgs.builder()
                                        .name("string")
                                        .value("string")
                                        .build())
                                    .project("string")
                                    .revisionHistoryLimit(0)
                                    .sources(ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceArgs.builder()
                                        .chart("string")
                                        .directory(ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryArgs.builder()
                                            .exclude("string")
                                            .include("string")
                                            .jsonnet(ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetArgs.builder()
                                                .extVars(ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetExtVarArgs.builder()
                                                    .code(false)
                                                    .name("string")
                                                    .value("string")
                                                    .build())
                                                .libs("string")
                                                .tlas(ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetTlaArgs.builder()
                                                    .code(false)
                                                    .name("string")
                                                    .value("string")
                                                    .build())
                                                .build())
                                            .recurse(false)
                                            .build())
                                        .helm(ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmArgs.builder()
                                            .fileParameters(ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmFileParameterArgs.builder()
                                                .name("string")
                                                .path("string")
                                                .build())
                                            .ignoreMissingValueFiles(false)
                                            .parameters(ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmParameterArgs.builder()
                                                .forceString(false)
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .passCredentials(false)
                                            .releaseName("string")
                                            .skipCrds(false)
                                            .valueFiles("string")
                                            .values("string")
                                            .version("string")
                                            .build())
                                        .kustomize(ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizeArgs.builder()
                                            .commonAnnotations(Map.of("string", "string"))
                                            .commonLabels(Map.of("string", "string"))
                                            .images("string")
                                            .namePrefix("string")
                                            .nameSuffix("string")
                                            .patches(ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizePatchArgs.builder()
                                                .target(ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizePatchTargetArgs.builder()
                                                    .annotationSelector("string")
                                                    .group("string")
                                                    .kind("string")
                                                    .labelSelector("string")
                                                    .name("string")
                                                    .namespace("string")
                                                    .version("string")
                                                    .build())
                                                .options(Map.of("string", false))
                                                .patch("string")
                                                .path("string")
                                                .build())
                                            .version("string")
                                            .build())
                                        .path("string")
                                        .plugin(ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourcePluginArgs.builder()
                                            .envs(ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourcePluginEnvArgs.builder()
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .name("string")
                                            .build())
                                        .ref("string")
                                        .repoUrl("string")
                                        .targetRevision("string")
                                        .build())
                                    .syncPolicy(ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyArgs.builder()
                                        .automated(ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyAutomatedArgs.builder()
                                            .allowEmpty(false)
                                            .prune(false)
                                            .selfHeal(false)
                                            .build())
                                        .managedNamespaceMetadata(ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyManagedNamespaceMetadataArgs.builder()
                                            .annotations(Map.of("string", "string"))
                                            .labels(Map.of("string", "string"))
                                            .build())
                                        .retry(ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyRetryArgs.builder()
                                            .backoff(ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyRetryBackoffArgs.builder()
                                                .duration("string")
                                                .factor("string")
                                                .maxDuration("string")
                                                .build())
                                            .limit("string")
                                            .build())
                                        .syncOptions("string")
                                        .build())
                                    .build())
                                .build())
                            .build())
                        .selector(ApplicationSetSpecGeneratorMatrixGeneratorSelectorArgs.builder()
                            .matchExpressions(ApplicationSetSpecGeneratorMatrixGeneratorSelectorMatchExpressionArgs.builder()
                                .key("string")
                                .operator("string")
                                .values("string")
                                .build())
                            .matchLabels(Map.of("string", "string"))
                            .build())
                        .build())
                    .template(ApplicationSetSpecGeneratorMatrixTemplateArgs.builder()
                        .metadata(ApplicationSetSpecGeneratorMatrixTemplateMetadataArgs.builder()
                            .annotations(Map.of("string", "string"))
                            .finalizers("string")
                            .labels(Map.of("string", "string"))
                            .name("string")
                            .namespace("string")
                            .build())
                        .spec(ApplicationSetSpecGeneratorMatrixTemplateSpecArgs.builder()
                            .destination(ApplicationSetSpecGeneratorMatrixTemplateSpecDestinationArgs.builder()
                                .name("string")
                                .namespace("string")
                                .server("string")
                                .build())
                            .ignoreDifferences(ApplicationSetSpecGeneratorMatrixTemplateSpecIgnoreDifferenceArgs.builder()
                                .group("string")
                                .jqPathExpressions("string")
                                .jsonPointers("string")
                                .kind("string")
                                .managedFieldsManagers("string")
                                .name("string")
                                .namespace("string")
                                .build())
                            .infos(ApplicationSetSpecGeneratorMatrixTemplateSpecInfoArgs.builder()
                                .name("string")
                                .value("string")
                                .build())
                            .project("string")
                            .revisionHistoryLimit(0)
                            .sources(ApplicationSetSpecGeneratorMatrixTemplateSpecSourceArgs.builder()
                                .chart("string")
                                .directory(ApplicationSetSpecGeneratorMatrixTemplateSpecSourceDirectoryArgs.builder()
                                    .exclude("string")
                                    .include("string")
                                    .jsonnet(ApplicationSetSpecGeneratorMatrixTemplateSpecSourceDirectoryJsonnetArgs.builder()
                                        .extVars(ApplicationSetSpecGeneratorMatrixTemplateSpecSourceDirectoryJsonnetExtVarArgs.builder()
                                            .code(false)
                                            .name("string")
                                            .value("string")
                                            .build())
                                        .libs("string")
                                        .tlas(ApplicationSetSpecGeneratorMatrixTemplateSpecSourceDirectoryJsonnetTlaArgs.builder()
                                            .code(false)
                                            .name("string")
                                            .value("string")
                                            .build())
                                        .build())
                                    .recurse(false)
                                    .build())
                                .helm(ApplicationSetSpecGeneratorMatrixTemplateSpecSourceHelmArgs.builder()
                                    .fileParameters(ApplicationSetSpecGeneratorMatrixTemplateSpecSourceHelmFileParameterArgs.builder()
                                        .name("string")
                                        .path("string")
                                        .build())
                                    .ignoreMissingValueFiles(false)
                                    .parameters(ApplicationSetSpecGeneratorMatrixTemplateSpecSourceHelmParameterArgs.builder()
                                        .forceString(false)
                                        .name("string")
                                        .value("string")
                                        .build())
                                    .passCredentials(false)
                                    .releaseName("string")
                                    .skipCrds(false)
                                    .valueFiles("string")
                                    .values("string")
                                    .version("string")
                                    .build())
                                .kustomize(ApplicationSetSpecGeneratorMatrixTemplateSpecSourceKustomizeArgs.builder()
                                    .commonAnnotations(Map.of("string", "string"))
                                    .commonLabels(Map.of("string", "string"))
                                    .images("string")
                                    .namePrefix("string")
                                    .nameSuffix("string")
                                    .patches(ApplicationSetSpecGeneratorMatrixTemplateSpecSourceKustomizePatchArgs.builder()
                                        .target(ApplicationSetSpecGeneratorMatrixTemplateSpecSourceKustomizePatchTargetArgs.builder()
                                            .annotationSelector("string")
                                            .group("string")
                                            .kind("string")
                                            .labelSelector("string")
                                            .name("string")
                                            .namespace("string")
                                            .version("string")
                                            .build())
                                        .options(Map.of("string", false))
                                        .patch("string")
                                        .path("string")
                                        .build())
                                    .version("string")
                                    .build())
                                .path("string")
                                .plugin(ApplicationSetSpecGeneratorMatrixTemplateSpecSourcePluginArgs.builder()
                                    .envs(ApplicationSetSpecGeneratorMatrixTemplateSpecSourcePluginEnvArgs.builder()
                                        .name("string")
                                        .value("string")
                                        .build())
                                    .name("string")
                                    .build())
                                .ref("string")
                                .repoUrl("string")
                                .targetRevision("string")
                                .build())
                            .syncPolicy(ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicyArgs.builder()
                                .automated(ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicyAutomatedArgs.builder()
                                    .allowEmpty(false)
                                    .prune(false)
                                    .selfHeal(false)
                                    .build())
                                .managedNamespaceMetadata(ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicyManagedNamespaceMetadataArgs.builder()
                                    .annotations(Map.of("string", "string"))
                                    .labels(Map.of("string", "string"))
                                    .build())
                                .retry(ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicyRetryArgs.builder()
                                    .backoff(ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicyRetryBackoffArgs.builder()
                                        .duration("string")
                                        .factor("string")
                                        .maxDuration("string")
                                        .build())
                                    .limit("string")
                                    .build())
                                .syncOptions("string")
                                .build())
                            .build())
                        .build())
                    .build())
                .merges(ApplicationSetSpecGeneratorMergeArgs.builder()
                    .generators(ApplicationSetSpecGeneratorMergeGeneratorArgs.builder()
                        .clusterDecisionResources(ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceArgs.builder()
                            .configMapRef("string")
                            .labelSelector(ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceLabelSelectorArgs.builder()
                                .matchExpressions(ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceLabelSelectorMatchExpressionArgs.builder()
                                    .key("string")
                                    .operator("string")
                                    .values("string")
                                    .build())
                                .matchLabels(Map.of("string", "string"))
                                .build())
                            .name("string")
                            .requeueAfterSeconds("string")
                            .template(ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateArgs.builder()
                                .metadata(ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateMetadataArgs.builder()
                                    .annotations(Map.of("string", "string"))
                                    .finalizers("string")
                                    .labels(Map.of("string", "string"))
                                    .name("string")
                                    .namespace("string")
                                    .build())
                                .spec(ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecArgs.builder()
                                    .destination(ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecDestinationArgs.builder()
                                        .name("string")
                                        .namespace("string")
                                        .server("string")
                                        .build())
                                    .ignoreDifferences(ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecIgnoreDifferenceArgs.builder()
                                        .group("string")
                                        .jqPathExpressions("string")
                                        .jsonPointers("string")
                                        .kind("string")
                                        .managedFieldsManagers("string")
                                        .name("string")
                                        .namespace("string")
                                        .build())
                                    .infos(ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecInfoArgs.builder()
                                        .name("string")
                                        .value("string")
                                        .build())
                                    .project("string")
                                    .revisionHistoryLimit(0)
                                    .sources(ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceArgs.builder()
                                        .chart("string")
                                        .directory(ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryArgs.builder()
                                            .exclude("string")
                                            .include("string")
                                            .jsonnet(ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetArgs.builder()
                                                .extVars(ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetExtVarArgs.builder()
                                                    .code(false)
                                                    .name("string")
                                                    .value("string")
                                                    .build())
                                                .libs("string")
                                                .tlas(ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetTlaArgs.builder()
                                                    .code(false)
                                                    .name("string")
                                                    .value("string")
                                                    .build())
                                                .build())
                                            .recurse(false)
                                            .build())
                                        .helm(ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmArgs.builder()
                                            .fileParameters(ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameterArgs.builder()
                                                .name("string")
                                                .path("string")
                                                .build())
                                            .ignoreMissingValueFiles(false)
                                            .parameters(ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameterArgs.builder()
                                                .forceString(false)
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .passCredentials(false)
                                            .releaseName("string")
                                            .skipCrds(false)
                                            .valueFiles("string")
                                            .values("string")
                                            .version("string")
                                            .build())
                                        .kustomize(ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizeArgs.builder()
                                            .commonAnnotations(Map.of("string", "string"))
                                            .commonLabels(Map.of("string", "string"))
                                            .images("string")
                                            .namePrefix("string")
                                            .nameSuffix("string")
                                            .patches(ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchArgs.builder()
                                                .target(ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTargetArgs.builder()
                                                    .annotationSelector("string")
                                                    .group("string")
                                                    .kind("string")
                                                    .labelSelector("string")
                                                    .name("string")
                                                    .namespace("string")
                                                    .version("string")
                                                    .build())
                                                .options(Map.of("string", false))
                                                .patch("string")
                                                .path("string")
                                                .build())
                                            .version("string")
                                            .build())
                                        .path("string")
                                        .plugin(ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourcePluginArgs.builder()
                                            .envs(ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnvArgs.builder()
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .name("string")
                                            .build())
                                        .ref("string")
                                        .repoUrl("string")
                                        .targetRevision("string")
                                        .build())
                                    .syncPolicy(ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyArgs.builder()
                                        .automated(ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomatedArgs.builder()
                                            .allowEmpty(false)
                                            .prune(false)
                                            .selfHeal(false)
                                            .build())
                                        .managedNamespaceMetadata(ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadataArgs.builder()
                                            .annotations(Map.of("string", "string"))
                                            .labels(Map.of("string", "string"))
                                            .build())
                                        .retry(ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryArgs.builder()
                                            .backoff(ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoffArgs.builder()
                                                .duration("string")
                                                .factor("string")
                                                .maxDuration("string")
                                                .build())
                                            .limit("string")
                                            .build())
                                        .syncOptions("string")
                                        .build())
                                    .build())
                                .build())
                            .values(Map.of("string", "string"))
                            .build())
                        .clusters(ApplicationSetSpecGeneratorMergeGeneratorClusterArgs.builder()
                            .enabled(false)
                            .selector(ApplicationSetSpecGeneratorMergeGeneratorClusterSelectorArgs.builder()
                                .matchExpressions(ApplicationSetSpecGeneratorMergeGeneratorClusterSelectorMatchExpressionArgs.builder()
                                    .key("string")
                                    .operator("string")
                                    .values("string")
                                    .build())
                                .matchLabels(Map.of("string", "string"))
                                .build())
                            .template(ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateArgs.builder()
                                .metadata(ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateMetadataArgs.builder()
                                    .annotations(Map.of("string", "string"))
                                    .finalizers("string")
                                    .labels(Map.of("string", "string"))
                                    .name("string")
                                    .namespace("string")
                                    .build())
                                .spec(ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecArgs.builder()
                                    .destination(ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecDestinationArgs.builder()
                                        .name("string")
                                        .namespace("string")
                                        .server("string")
                                        .build())
                                    .ignoreDifferences(ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecIgnoreDifferenceArgs.builder()
                                        .group("string")
                                        .jqPathExpressions("string")
                                        .jsonPointers("string")
                                        .kind("string")
                                        .managedFieldsManagers("string")
                                        .name("string")
                                        .namespace("string")
                                        .build())
                                    .infos(ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecInfoArgs.builder()
                                        .name("string")
                                        .value("string")
                                        .build())
                                    .project("string")
                                    .revisionHistoryLimit(0)
                                    .sources(ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceArgs.builder()
                                        .chart("string")
                                        .directory(ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryArgs.builder()
                                            .exclude("string")
                                            .include("string")
                                            .jsonnet(ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnetArgs.builder()
                                                .extVars(ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnetExtVarArgs.builder()
                                                    .code(false)
                                                    .name("string")
                                                    .value("string")
                                                    .build())
                                                .libs("string")
                                                .tlas(ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnetTlaArgs.builder()
                                                    .code(false)
                                                    .name("string")
                                                    .value("string")
                                                    .build())
                                                .build())
                                            .recurse(false)
                                            .build())
                                        .helm(ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceHelmArgs.builder()
                                            .fileParameters(ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceHelmFileParameterArgs.builder()
                                                .name("string")
                                                .path("string")
                                                .build())
                                            .ignoreMissingValueFiles(false)
                                            .parameters(ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceHelmParameterArgs.builder()
                                                .forceString(false)
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .passCredentials(false)
                                            .releaseName("string")
                                            .skipCrds(false)
                                            .valueFiles("string")
                                            .values("string")
                                            .version("string")
                                            .build())
                                        .kustomize(ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizeArgs.builder()
                                            .commonAnnotations(Map.of("string", "string"))
                                            .commonLabels(Map.of("string", "string"))
                                            .images("string")
                                            .namePrefix("string")
                                            .nameSuffix("string")
                                            .patches(ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizePatchArgs.builder()
                                                .target(ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizePatchTargetArgs.builder()
                                                    .annotationSelector("string")
                                                    .group("string")
                                                    .kind("string")
                                                    .labelSelector("string")
                                                    .name("string")
                                                    .namespace("string")
                                                    .version("string")
                                                    .build())
                                                .options(Map.of("string", false))
                                                .patch("string")
                                                .path("string")
                                                .build())
                                            .version("string")
                                            .build())
                                        .path("string")
                                        .plugin(ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourcePluginArgs.builder()
                                            .envs(ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourcePluginEnvArgs.builder()
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .name("string")
                                            .build())
                                        .ref("string")
                                        .repoUrl("string")
                                        .targetRevision("string")
                                        .build())
                                    .syncPolicy(ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyArgs.builder()
                                        .automated(ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyAutomatedArgs.builder()
                                            .allowEmpty(false)
                                            .prune(false)
                                            .selfHeal(false)
                                            .build())
                                        .managedNamespaceMetadata(ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadataArgs.builder()
                                            .annotations(Map.of("string", "string"))
                                            .labels(Map.of("string", "string"))
                                            .build())
                                        .retry(ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyRetryArgs.builder()
                                            .backoff(ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyRetryBackoffArgs.builder()
                                                .duration("string")
                                                .factor("string")
                                                .maxDuration("string")
                                                .build())
                                            .limit("string")
                                            .build())
                                        .syncOptions("string")
                                        .build())
                                    .build())
                                .build())
                            .values(Map.of("string", "string"))
                            .build())
                        .gits(ApplicationSetSpecGeneratorMergeGeneratorGitArgs.builder()
                            .repoUrl("string")
                            .directories(ApplicationSetSpecGeneratorMergeGeneratorGitDirectoryArgs.builder()
                                .path("string")
                                .exclude(false)
                                .build())
                            .files(ApplicationSetSpecGeneratorMergeGeneratorGitFileArgs.builder()
                                .path("string")
                                .build())
                            .pathParamPrefix("string")
                            .revision("string")
                            .template(ApplicationSetSpecGeneratorMergeGeneratorGitTemplateArgs.builder()
                                .metadata(ApplicationSetSpecGeneratorMergeGeneratorGitTemplateMetadataArgs.builder()
                                    .annotations(Map.of("string", "string"))
                                    .finalizers("string")
                                    .labels(Map.of("string", "string"))
                                    .name("string")
                                    .namespace("string")
                                    .build())
                                .spec(ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecArgs.builder()
                                    .destination(ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecDestinationArgs.builder()
                                        .name("string")
                                        .namespace("string")
                                        .server("string")
                                        .build())
                                    .ignoreDifferences(ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecIgnoreDifferenceArgs.builder()
                                        .group("string")
                                        .jqPathExpressions("string")
                                        .jsonPointers("string")
                                        .kind("string")
                                        .managedFieldsManagers("string")
                                        .name("string")
                                        .namespace("string")
                                        .build())
                                    .infos(ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecInfoArgs.builder()
                                        .name("string")
                                        .value("string")
                                        .build())
                                    .project("string")
                                    .revisionHistoryLimit(0)
                                    .sources(ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceArgs.builder()
                                        .chart("string")
                                        .directory(ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryArgs.builder()
                                            .exclude("string")
                                            .include("string")
                                            .jsonnet(ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnetArgs.builder()
                                                .extVars(ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnetExtVarArgs.builder()
                                                    .code(false)
                                                    .name("string")
                                                    .value("string")
                                                    .build())
                                                .libs("string")
                                                .tlas(ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnetTlaArgs.builder()
                                                    .code(false)
                                                    .name("string")
                                                    .value("string")
                                                    .build())
                                                .build())
                                            .recurse(false)
                                            .build())
                                        .helm(ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceHelmArgs.builder()
                                            .fileParameters(ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceHelmFileParameterArgs.builder()
                                                .name("string")
                                                .path("string")
                                                .build())
                                            .ignoreMissingValueFiles(false)
                                            .parameters(ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceHelmParameterArgs.builder()
                                                .forceString(false)
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .passCredentials(false)
                                            .releaseName("string")
                                            .skipCrds(false)
                                            .valueFiles("string")
                                            .values("string")
                                            .version("string")
                                            .build())
                                        .kustomize(ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceKustomizeArgs.builder()
                                            .commonAnnotations(Map.of("string", "string"))
                                            .commonLabels(Map.of("string", "string"))
                                            .images("string")
                                            .namePrefix("string")
                                            .nameSuffix("string")
                                            .patches(ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceKustomizePatchArgs.builder()
                                                .target(ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceKustomizePatchTargetArgs.builder()
                                                    .annotationSelector("string")
                                                    .group("string")
                                                    .kind("string")
                                                    .labelSelector("string")
                                                    .name("string")
                                                    .namespace("string")
                                                    .version("string")
                                                    .build())
                                                .options(Map.of("string", false))
                                                .patch("string")
                                                .path("string")
                                                .build())
                                            .version("string")
                                            .build())
                                        .path("string")
                                        .plugin(ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourcePluginArgs.builder()
                                            .envs(ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourcePluginEnvArgs.builder()
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .name("string")
                                            .build())
                                        .ref("string")
                                        .repoUrl("string")
                                        .targetRevision("string")
                                        .build())
                                    .syncPolicy(ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicyArgs.builder()
                                        .automated(ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicyAutomatedArgs.builder()
                                            .allowEmpty(false)
                                            .prune(false)
                                            .selfHeal(false)
                                            .build())
                                        .managedNamespaceMetadata(ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadataArgs.builder()
                                            .annotations(Map.of("string", "string"))
                                            .labels(Map.of("string", "string"))
                                            .build())
                                        .retry(ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicyRetryArgs.builder()
                                            .backoff(ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicyRetryBackoffArgs.builder()
                                                .duration("string")
                                                .factor("string")
                                                .maxDuration("string")
                                                .build())
                                            .limit("string")
                                            .build())
                                        .syncOptions("string")
                                        .build())
                                    .build())
                                .build())
                            .values(Map.of("string", "string"))
                            .build())
                        .lists(ApplicationSetSpecGeneratorMergeGeneratorListArgs.builder()
                            .elements(Map.of("string", "string"))
                            .template(ApplicationSetSpecGeneratorMergeGeneratorListTemplateArgs.builder()
                                .metadata(ApplicationSetSpecGeneratorMergeGeneratorListTemplateMetadataArgs.builder()
                                    .annotations(Map.of("string", "string"))
                                    .finalizers("string")
                                    .labels(Map.of("string", "string"))
                                    .name("string")
                                    .namespace("string")
                                    .build())
                                .spec(ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecArgs.builder()
                                    .destination(ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecDestinationArgs.builder()
                                        .name("string")
                                        .namespace("string")
                                        .server("string")
                                        .build())
                                    .ignoreDifferences(ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecIgnoreDifferenceArgs.builder()
                                        .group("string")
                                        .jqPathExpressions("string")
                                        .jsonPointers("string")
                                        .kind("string")
                                        .managedFieldsManagers("string")
                                        .name("string")
                                        .namespace("string")
                                        .build())
                                    .infos(ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecInfoArgs.builder()
                                        .name("string")
                                        .value("string")
                                        .build())
                                    .project("string")
                                    .revisionHistoryLimit(0)
                                    .sources(ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceArgs.builder()
                                        .chart("string")
                                        .directory(ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceDirectoryArgs.builder()
                                            .exclude("string")
                                            .include("string")
                                            .jsonnet(ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnetArgs.builder()
                                                .extVars(ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnetExtVarArgs.builder()
                                                    .code(false)
                                                    .name("string")
                                                    .value("string")
                                                    .build())
                                                .libs("string")
                                                .tlas(ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnetTlaArgs.builder()
                                                    .code(false)
                                                    .name("string")
                                                    .value("string")
                                                    .build())
                                                .build())
                                            .recurse(false)
                                            .build())
                                        .helm(ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceHelmArgs.builder()
                                            .fileParameters(ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceHelmFileParameterArgs.builder()
                                                .name("string")
                                                .path("string")
                                                .build())
                                            .ignoreMissingValueFiles(false)
                                            .parameters(ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceHelmParameterArgs.builder()
                                                .forceString(false)
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .passCredentials(false)
                                            .releaseName("string")
                                            .skipCrds(false)
                                            .valueFiles("string")
                                            .values("string")
                                            .version("string")
                                            .build())
                                        .kustomize(ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceKustomizeArgs.builder()
                                            .commonAnnotations(Map.of("string", "string"))
                                            .commonLabels(Map.of("string", "string"))
                                            .images("string")
                                            .namePrefix("string")
                                            .nameSuffix("string")
                                            .patches(ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceKustomizePatchArgs.builder()
                                                .target(ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceKustomizePatchTargetArgs.builder()
                                                    .annotationSelector("string")
                                                    .group("string")
                                                    .kind("string")
                                                    .labelSelector("string")
                                                    .name("string")
                                                    .namespace("string")
                                                    .version("string")
                                                    .build())
                                                .options(Map.of("string", false))
                                                .patch("string")
                                                .path("string")
                                                .build())
                                            .version("string")
                                            .build())
                                        .path("string")
                                        .plugin(ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourcePluginArgs.builder()
                                            .envs(ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourcePluginEnvArgs.builder()
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .name("string")
                                            .build())
                                        .ref("string")
                                        .repoUrl("string")
                                        .targetRevision("string")
                                        .build())
                                    .syncPolicy(ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicyArgs.builder()
                                        .automated(ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicyAutomatedArgs.builder()
                                            .allowEmpty(false)
                                            .prune(false)
                                            .selfHeal(false)
                                            .build())
                                        .managedNamespaceMetadata(ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadataArgs.builder()
                                            .annotations(Map.of("string", "string"))
                                            .labels(Map.of("string", "string"))
                                            .build())
                                        .retry(ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicyRetryArgs.builder()
                                            .backoff(ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicyRetryBackoffArgs.builder()
                                                .duration("string")
                                                .factor("string")
                                                .maxDuration("string")
                                                .build())
                                            .limit("string")
                                            .build())
                                        .syncOptions("string")
                                        .build())
                                    .build())
                                .build())
                            .build())
                        .matrices(ApplicationSetSpecGeneratorMergeGeneratorMatrixArgs.builder()
                            .generators(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorArgs.builder()
                                .clusterDecisionResources(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceArgs.builder()
                                    .configMapRef("string")
                                    .labelSelector(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceLabelSelectorArgs.builder()
                                        .matchExpressions(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceLabelSelectorMatchExpressionArgs.builder()
                                            .key("string")
                                            .operator("string")
                                            .values("string")
                                            .build())
                                        .matchLabels(Map.of("string", "string"))
                                        .build())
                                    .name("string")
                                    .requeueAfterSeconds("string")
                                    .template(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateArgs.builder()
                                        .metadata(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateMetadataArgs.builder()
                                            .annotations(Map.of("string", "string"))
                                            .finalizers("string")
                                            .labels(Map.of("string", "string"))
                                            .name("string")
                                            .namespace("string")
                                            .build())
                                        .spec(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecArgs.builder()
                                            .destination(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecDestinationArgs.builder()
                                                .name("string")
                                                .namespace("string")
                                                .server("string")
                                                .build())
                                            .ignoreDifferences(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecIgnoreDifferenceArgs.builder()
                                                .group("string")
                                                .jqPathExpressions("string")
                                                .jsonPointers("string")
                                                .kind("string")
                                                .managedFieldsManagers("string")
                                                .name("string")
                                                .namespace("string")
                                                .build())
                                            .infos(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecInfoArgs.builder()
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .project("string")
                                            .revisionHistoryLimit(0)
                                            .sources(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceArgs.builder()
                                                .chart("string")
                                                .directory(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryArgs.builder()
                                                    .exclude("string")
                                                    .include("string")
                                                    .jsonnet(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetArgs.builder()
                                                        .extVars(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetExtVarArgs.builder()
                                                            .code(false)
                                                            .name("string")
                                                            .value("string")
                                                            .build())
                                                        .libs("string")
                                                        .tlas(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetTlaArgs.builder()
                                                            .code(false)
                                                            .name("string")
                                                            .value("string")
                                                            .build())
                                                        .build())
                                                    .recurse(false)
                                                    .build())
                                                .helm(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmArgs.builder()
                                                    .fileParameters(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameterArgs.builder()
                                                        .name("string")
                                                        .path("string")
                                                        .build())
                                                    .ignoreMissingValueFiles(false)
                                                    .parameters(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameterArgs.builder()
                                                        .forceString(false)
                                                        .name("string")
                                                        .value("string")
                                                        .build())
                                                    .passCredentials(false)
                                                    .releaseName("string")
                                                    .skipCrds(false)
                                                    .valueFiles("string")
                                                    .values("string")
                                                    .version("string")
                                                    .build())
                                                .kustomize(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizeArgs.builder()
                                                    .commonAnnotations(Map.of("string", "string"))
                                                    .commonLabels(Map.of("string", "string"))
                                                    .images("string")
                                                    .namePrefix("string")
                                                    .nameSuffix("string")
                                                    .patches(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchArgs.builder()
                                                        .target(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTargetArgs.builder()
                                                            .annotationSelector("string")
                                                            .group("string")
                                                            .kind("string")
                                                            .labelSelector("string")
                                                            .name("string")
                                                            .namespace("string")
                                                            .version("string")
                                                            .build())
                                                        .options(Map.of("string", false))
                                                        .patch("string")
                                                        .path("string")
                                                        .build())
                                                    .version("string")
                                                    .build())
                                                .path("string")
                                                .plugin(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePluginArgs.builder()
                                                    .envs(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnvArgs.builder()
                                                        .name("string")
                                                        .value("string")
                                                        .build())
                                                    .name("string")
                                                    .build())
                                                .ref("string")
                                                .repoUrl("string")
                                                .targetRevision("string")
                                                .build())
                                            .syncPolicy(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyArgs.builder()
                                                .automated(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomatedArgs.builder()
                                                    .allowEmpty(false)
                                                    .prune(false)
                                                    .selfHeal(false)
                                                    .build())
                                                .managedNamespaceMetadata(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadataArgs.builder()
                                                    .annotations(Map.of("string", "string"))
                                                    .labels(Map.of("string", "string"))
                                                    .build())
                                                .retry(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryArgs.builder()
                                                    .backoff(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoffArgs.builder()
                                                        .duration("string")
                                                        .factor("string")
                                                        .maxDuration("string")
                                                        .build())
                                                    .limit("string")
                                                    .build())
                                                .syncOptions("string")
                                                .build())
                                            .build())
                                        .build())
                                    .values(Map.of("string", "string"))
                                    .build())
                                .clusters(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterArgs.builder()
                                    .enabled(false)
                                    .selector(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterSelectorArgs.builder()
                                        .matchExpressions(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterSelectorMatchExpressionArgs.builder()
                                            .key("string")
                                            .operator("string")
                                            .values("string")
                                            .build())
                                        .matchLabels(Map.of("string", "string"))
                                        .build())
                                    .template(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateArgs.builder()
                                        .metadata(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateMetadataArgs.builder()
                                            .annotations(Map.of("string", "string"))
                                            .finalizers("string")
                                            .labels(Map.of("string", "string"))
                                            .name("string")
                                            .namespace("string")
                                            .build())
                                        .spec(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecArgs.builder()
                                            .destination(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecDestinationArgs.builder()
                                                .name("string")
                                                .namespace("string")
                                                .server("string")
                                                .build())
                                            .ignoreDifferences(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecIgnoreDifferenceArgs.builder()
                                                .group("string")
                                                .jqPathExpressions("string")
                                                .jsonPointers("string")
                                                .kind("string")
                                                .managedFieldsManagers("string")
                                                .name("string")
                                                .namespace("string")
                                                .build())
                                            .infos(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecInfoArgs.builder()
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .project("string")
                                            .revisionHistoryLimit(0)
                                            .sources(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceArgs.builder()
                                                .chart("string")
                                                .directory(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryArgs.builder()
                                                    .exclude("string")
                                                    .include("string")
                                                    .jsonnet(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnetArgs.builder()
                                                        .extVars(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnetExtVarArgs.builder()
                                                            .code(false)
                                                            .name("string")
                                                            .value("string")
                                                            .build())
                                                        .libs("string")
                                                        .tlas(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnetTlaArgs.builder()
                                                            .code(false)
                                                            .name("string")
                                                            .value("string")
                                                            .build())
                                                        .build())
                                                    .recurse(false)
                                                    .build())
                                                .helm(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmArgs.builder()
                                                    .fileParameters(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmFileParameterArgs.builder()
                                                        .name("string")
                                                        .path("string")
                                                        .build())
                                                    .ignoreMissingValueFiles(false)
                                                    .parameters(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmParameterArgs.builder()
                                                        .forceString(false)
                                                        .name("string")
                                                        .value("string")
                                                        .build())
                                                    .passCredentials(false)
                                                    .releaseName("string")
                                                    .skipCrds(false)
                                                    .valueFiles("string")
                                                    .values("string")
                                                    .version("string")
                                                    .build())
                                                .kustomize(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizeArgs.builder()
                                                    .commonAnnotations(Map.of("string", "string"))
                                                    .commonLabels(Map.of("string", "string"))
                                                    .images("string")
                                                    .namePrefix("string")
                                                    .nameSuffix("string")
                                                    .patches(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatchArgs.builder()
                                                        .target(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatchTargetArgs.builder()
                                                            .annotationSelector("string")
                                                            .group("string")
                                                            .kind("string")
                                                            .labelSelector("string")
                                                            .name("string")
                                                            .namespace("string")
                                                            .version("string")
                                                            .build())
                                                        .options(Map.of("string", false))
                                                        .patch("string")
                                                        .path("string")
                                                        .build())
                                                    .version("string")
                                                    .build())
                                                .path("string")
                                                .plugin(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourcePluginArgs.builder()
                                                    .envs(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourcePluginEnvArgs.builder()
                                                        .name("string")
                                                        .value("string")
                                                        .build())
                                                    .name("string")
                                                    .build())
                                                .ref("string")
                                                .repoUrl("string")
                                                .targetRevision("string")
                                                .build())
                                            .syncPolicy(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyArgs.builder()
                                                .automated(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyAutomatedArgs.builder()
                                                    .allowEmpty(false)
                                                    .prune(false)
                                                    .selfHeal(false)
                                                    .build())
                                                .managedNamespaceMetadata(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadataArgs.builder()
                                                    .annotations(Map.of("string", "string"))
                                                    .labels(Map.of("string", "string"))
                                                    .build())
                                                .retry(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetryArgs.builder()
                                                    .backoff(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetryBackoffArgs.builder()
                                                        .duration("string")
                                                        .factor("string")
                                                        .maxDuration("string")
                                                        .build())
                                                    .limit("string")
                                                    .build())
                                                .syncOptions("string")
                                                .build())
                                            .build())
                                        .build())
                                    .values(Map.of("string", "string"))
                                    .build())
                                .gits(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitArgs.builder()
                                    .repoUrl("string")
                                    .directories(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitDirectoryArgs.builder()
                                        .path("string")
                                        .exclude(false)
                                        .build())
                                    .files(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitFileArgs.builder()
                                        .path("string")
                                        .build())
                                    .pathParamPrefix("string")
                                    .revision("string")
                                    .template(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateArgs.builder()
                                        .metadata(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateMetadataArgs.builder()
                                            .annotations(Map.of("string", "string"))
                                            .finalizers("string")
                                            .labels(Map.of("string", "string"))
                                            .name("string")
                                            .namespace("string")
                                            .build())
                                        .spec(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecArgs.builder()
                                            .destination(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecDestinationArgs.builder()
                                                .name("string")
                                                .namespace("string")
                                                .server("string")
                                                .build())
                                            .ignoreDifferences(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecIgnoreDifferenceArgs.builder()
                                                .group("string")
                                                .jqPathExpressions("string")
                                                .jsonPointers("string")
                                                .kind("string")
                                                .managedFieldsManagers("string")
                                                .name("string")
                                                .namespace("string")
                                                .build())
                                            .infos(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecInfoArgs.builder()
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .project("string")
                                            .revisionHistoryLimit(0)
                                            .sources(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceArgs.builder()
                                                .chart("string")
                                                .directory(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryArgs.builder()
                                                    .exclude("string")
                                                    .include("string")
                                                    .jsonnet(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnetArgs.builder()
                                                        .extVars(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnetExtVarArgs.builder()
                                                            .code(false)
                                                            .name("string")
                                                            .value("string")
                                                            .build())
                                                        .libs("string")
                                                        .tlas(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnetTlaArgs.builder()
                                                            .code(false)
                                                            .name("string")
                                                            .value("string")
                                                            .build())
                                                        .build())
                                                    .recurse(false)
                                                    .build())
                                                .helm(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceHelmArgs.builder()
                                                    .fileParameters(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceHelmFileParameterArgs.builder()
                                                        .name("string")
                                                        .path("string")
                                                        .build())
                                                    .ignoreMissingValueFiles(false)
                                                    .parameters(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceHelmParameterArgs.builder()
                                                        .forceString(false)
                                                        .name("string")
                                                        .value("string")
                                                        .build())
                                                    .passCredentials(false)
                                                    .releaseName("string")
                                                    .skipCrds(false)
                                                    .valueFiles("string")
                                                    .values("string")
                                                    .version("string")
                                                    .build())
                                                .kustomize(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizeArgs.builder()
                                                    .commonAnnotations(Map.of("string", "string"))
                                                    .commonLabels(Map.of("string", "string"))
                                                    .images("string")
                                                    .namePrefix("string")
                                                    .nameSuffix("string")
                                                    .patches(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatchArgs.builder()
                                                        .target(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatchTargetArgs.builder()
                                                            .annotationSelector("string")
                                                            .group("string")
                                                            .kind("string")
                                                            .labelSelector("string")
                                                            .name("string")
                                                            .namespace("string")
                                                            .version("string")
                                                            .build())
                                                        .options(Map.of("string", false))
                                                        .patch("string")
                                                        .path("string")
                                                        .build())
                                                    .version("string")
                                                    .build())
                                                .path("string")
                                                .plugin(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourcePluginArgs.builder()
                                                    .envs(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourcePluginEnvArgs.builder()
                                                        .name("string")
                                                        .value("string")
                                                        .build())
                                                    .name("string")
                                                    .build())
                                                .ref("string")
                                                .repoUrl("string")
                                                .targetRevision("string")
                                                .build())
                                            .syncPolicy(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyArgs.builder()
                                                .automated(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyAutomatedArgs.builder()
                                                    .allowEmpty(false)
                                                    .prune(false)
                                                    .selfHeal(false)
                                                    .build())
                                                .managedNamespaceMetadata(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadataArgs.builder()
                                                    .annotations(Map.of("string", "string"))
                                                    .labels(Map.of("string", "string"))
                                                    .build())
                                                .retry(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetryArgs.builder()
                                                    .backoff(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetryBackoffArgs.builder()
                                                        .duration("string")
                                                        .factor("string")
                                                        .maxDuration("string")
                                                        .build())
                                                    .limit("string")
                                                    .build())
                                                .syncOptions("string")
                                                .build())
                                            .build())
                                        .build())
                                    .values(Map.of("string", "string"))
                                    .build())
                                .lists(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListArgs.builder()
                                    .elements(Map.of("string", "string"))
                                    .template(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateArgs.builder()
                                        .metadata(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateMetadataArgs.builder()
                                            .annotations(Map.of("string", "string"))
                                            .finalizers("string")
                                            .labels(Map.of("string", "string"))
                                            .name("string")
                                            .namespace("string")
                                            .build())
                                        .spec(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecArgs.builder()
                                            .destination(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecDestinationArgs.builder()
                                                .name("string")
                                                .namespace("string")
                                                .server("string")
                                                .build())
                                            .ignoreDifferences(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecIgnoreDifferenceArgs.builder()
                                                .group("string")
                                                .jqPathExpressions("string")
                                                .jsonPointers("string")
                                                .kind("string")
                                                .managedFieldsManagers("string")
                                                .name("string")
                                                .namespace("string")
                                                .build())
                                            .infos(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecInfoArgs.builder()
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .project("string")
                                            .revisionHistoryLimit(0)
                                            .sources(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceArgs.builder()
                                                .chart("string")
                                                .directory(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryArgs.builder()
                                                    .exclude("string")
                                                    .include("string")
                                                    .jsonnet(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnetArgs.builder()
                                                        .extVars(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnetExtVarArgs.builder()
                                                            .code(false)
                                                            .name("string")
                                                            .value("string")
                                                            .build())
                                                        .libs("string")
                                                        .tlas(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnetTlaArgs.builder()
                                                            .code(false)
                                                            .name("string")
                                                            .value("string")
                                                            .build())
                                                        .build())
                                                    .recurse(false)
                                                    .build())
                                                .helm(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceHelmArgs.builder()
                                                    .fileParameters(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceHelmFileParameterArgs.builder()
                                                        .name("string")
                                                        .path("string")
                                                        .build())
                                                    .ignoreMissingValueFiles(false)
                                                    .parameters(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceHelmParameterArgs.builder()
                                                        .forceString(false)
                                                        .name("string")
                                                        .value("string")
                                                        .build())
                                                    .passCredentials(false)
                                                    .releaseName("string")
                                                    .skipCrds(false)
                                                    .valueFiles("string")
                                                    .values("string")
                                                    .version("string")
                                                    .build())
                                                .kustomize(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceKustomizeArgs.builder()
                                                    .commonAnnotations(Map.of("string", "string"))
                                                    .commonLabels(Map.of("string", "string"))
                                                    .images("string")
                                                    .namePrefix("string")
                                                    .nameSuffix("string")
                                                    .patches(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatchArgs.builder()
                                                        .target(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatchTargetArgs.builder()
                                                            .annotationSelector("string")
                                                            .group("string")
                                                            .kind("string")
                                                            .labelSelector("string")
                                                            .name("string")
                                                            .namespace("string")
                                                            .version("string")
                                                            .build())
                                                        .options(Map.of("string", false))
                                                        .patch("string")
                                                        .path("string")
                                                        .build())
                                                    .version("string")
                                                    .build())
                                                .path("string")
                                                .plugin(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourcePluginArgs.builder()
                                                    .envs(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourcePluginEnvArgs.builder()
                                                        .name("string")
                                                        .value("string")
                                                        .build())
                                                    .name("string")
                                                    .build())
                                                .ref("string")
                                                .repoUrl("string")
                                                .targetRevision("string")
                                                .build())
                                            .syncPolicy(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicyArgs.builder()
                                                .automated(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicyAutomatedArgs.builder()
                                                    .allowEmpty(false)
                                                    .prune(false)
                                                    .selfHeal(false)
                                                    .build())
                                                .managedNamespaceMetadata(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadataArgs.builder()
                                                    .annotations(Map.of("string", "string"))
                                                    .labels(Map.of("string", "string"))
                                                    .build())
                                                .retry(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetryArgs.builder()
                                                    .backoff(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetryBackoffArgs.builder()
                                                        .duration("string")
                                                        .factor("string")
                                                        .maxDuration("string")
                                                        .build())
                                                    .limit("string")
                                                    .build())
                                                .syncOptions("string")
                                                .build())
                                            .build())
                                        .build())
                                    .build())
                                .pullRequests(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestArgs.builder()
                                    .bitbucketServer(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestBitbucketServerArgs.builder()
                                        .api("string")
                                        .project("string")
                                        .repo("string")
                                        .basicAuth(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestBitbucketServerBasicAuthArgs.builder()
                                            .passwordRef(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestBitbucketServerBasicAuthPasswordRefArgs.builder()
                                                .key("string")
                                                .secretName("string")
                                                .build())
                                            .username("string")
                                            .build())
                                        .build())
                                    .filters(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestFilterArgs.builder()
                                        .branchMatch("string")
                                        .build())
                                    .gitea(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGiteaArgs.builder()
                                        .api("string")
                                        .owner("string")
                                        .repo("string")
                                        .insecure(false)
                                        .tokenRef(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGiteaTokenRefArgs.builder()
                                            .key("string")
                                            .secretName("string")
                                            .build())
                                        .build())
                                    .github(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGithubArgs.builder()
                                        .owner("string")
                                        .repo("string")
                                        .api("string")
                                        .appSecretName("string")
                                        .labels("string")
                                        .tokenRef(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGithubTokenRefArgs.builder()
                                            .key("string")
                                            .secretName("string")
                                            .build())
                                        .build())
                                    .gitlab(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGitlabArgs.builder()
                                        .project("string")
                                        .api("string")
                                        .labels("string")
                                        .pullRequestState("string")
                                        .tokenRef(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGitlabTokenRefArgs.builder()
                                            .key("string")
                                            .secretName("string")
                                            .build())
                                        .build())
                                    .requeueAfterSeconds("string")
                                    .template(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateArgs.builder()
                                        .metadata(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateMetadataArgs.builder()
                                            .annotations(Map.of("string", "string"))
                                            .finalizers("string")
                                            .labels(Map.of("string", "string"))
                                            .name("string")
                                            .namespace("string")
                                            .build())
                                        .spec(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecArgs.builder()
                                            .destination(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecDestinationArgs.builder()
                                                .name("string")
                                                .namespace("string")
                                                .server("string")
                                                .build())
                                            .ignoreDifferences(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecIgnoreDifferenceArgs.builder()
                                                .group("string")
                                                .jqPathExpressions("string")
                                                .jsonPointers("string")
                                                .kind("string")
                                                .managedFieldsManagers("string")
                                                .name("string")
                                                .namespace("string")
                                                .build())
                                            .infos(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecInfoArgs.builder()
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .project("string")
                                            .revisionHistoryLimit(0)
                                            .sources(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceArgs.builder()
                                                .chart("string")
                                                .directory(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryArgs.builder()
                                                    .exclude("string")
                                                    .include("string")
                                                    .jsonnet(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetArgs.builder()
                                                        .extVars(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetExtVarArgs.builder()
                                                            .code(false)
                                                            .name("string")
                                                            .value("string")
                                                            .build())
                                                        .libs("string")
                                                        .tlas(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetTlaArgs.builder()
                                                            .code(false)
                                                            .name("string")
                                                            .value("string")
                                                            .build())
                                                        .build())
                                                    .recurse(false)
                                                    .build())
                                                .helm(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmArgs.builder()
                                                    .fileParameters(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmFileParameterArgs.builder()
                                                        .name("string")
                                                        .path("string")
                                                        .build())
                                                    .ignoreMissingValueFiles(false)
                                                    .parameters(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmParameterArgs.builder()
                                                        .forceString(false)
                                                        .name("string")
                                                        .value("string")
                                                        .build())
                                                    .passCredentials(false)
                                                    .releaseName("string")
                                                    .skipCrds(false)
                                                    .valueFiles("string")
                                                    .values("string")
                                                    .version("string")
                                                    .build())
                                                .kustomize(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizeArgs.builder()
                                                    .commonAnnotations(Map.of("string", "string"))
                                                    .commonLabels(Map.of("string", "string"))
                                                    .images("string")
                                                    .namePrefix("string")
                                                    .nameSuffix("string")
                                                    .patches(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatchArgs.builder()
                                                        .target(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatchTargetArgs.builder()
                                                            .annotationSelector("string")
                                                            .group("string")
                                                            .kind("string")
                                                            .labelSelector("string")
                                                            .name("string")
                                                            .namespace("string")
                                                            .version("string")
                                                            .build())
                                                        .options(Map.of("string", false))
                                                        .patch("string")
                                                        .path("string")
                                                        .build())
                                                    .version("string")
                                                    .build())
                                                .path("string")
                                                .plugin(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePluginArgs.builder()
                                                    .envs(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePluginEnvArgs.builder()
                                                        .name("string")
                                                        .value("string")
                                                        .build())
                                                    .name("string")
                                                    .build())
                                                .ref("string")
                                                .repoUrl("string")
                                                .targetRevision("string")
                                                .build())
                                            .syncPolicy(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyArgs.builder()
                                                .automated(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyAutomatedArgs.builder()
                                                    .allowEmpty(false)
                                                    .prune(false)
                                                    .selfHeal(false)
                                                    .build())
                                                .managedNamespaceMetadata(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyManagedNamespaceMetadataArgs.builder()
                                                    .annotations(Map.of("string", "string"))
                                                    .labels(Map.of("string", "string"))
                                                    .build())
                                                .retry(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetryArgs.builder()
                                                    .backoff(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetryBackoffArgs.builder()
                                                        .duration("string")
                                                        .factor("string")
                                                        .maxDuration("string")
                                                        .build())
                                                    .limit("string")
                                                    .build())
                                                .syncOptions("string")
                                                .build())
                                            .build())
                                        .build())
                                    .build())
                                .scmProviders(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderArgs.builder()
                                    .azureDevops(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderAzureDevopsArgs.builder()
                                        .organization("string")
                                        .teamProject("string")
                                        .accessTokenRef(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderAzureDevopsAccessTokenRefArgs.builder()
                                            .key("string")
                                            .secretName("string")
                                            .build())
                                        .allBranches(false)
                                        .api("string")
                                        .build())
                                    .bitbucketCloud(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderBitbucketCloudArgs.builder()
                                        .owner("string")
                                        .user("string")
                                        .allBranches(false)
                                        .appPasswordRef(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderBitbucketCloudAppPasswordRefArgs.builder()
                                            .key("string")
                                            .secretName("string")
                                            .build())
                                        .build())
                                    .bitbucketServer(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderBitbucketServerArgs.builder()
                                        .api("string")
                                        .project("string")
                                        .allBranches(false)
                                        .basicAuth(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderBitbucketServerBasicAuthArgs.builder()
                                            .passwordRef(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderBitbucketServerBasicAuthPasswordRefArgs.builder()
                                                .key("string")
                                                .secretName("string")
                                                .build())
                                            .username("string")
                                            .build())
                                        .build())
                                    .cloneProtocol("string")
                                    .filters(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderFilterArgs.builder()
                                        .branchMatch("string")
                                        .labelMatch("string")
                                        .pathsDoNotExists("string")
                                        .pathsExists("string")
                                        .repositoryMatch("string")
                                        .build())
                                    .gitea(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGiteaArgs.builder()
                                        .owner("string")
                                        .allBranches(false)
                                        .api("string")
                                        .insecure(false)
                                        .tokenRef(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGiteaTokenRefArgs.builder()
                                            .key("string")
                                            .secretName("string")
                                            .build())
                                        .build())
                                    .github(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGithubArgs.builder()
                                        .organization("string")
                                        .allBranches(false)
                                        .api("string")
                                        .appSecretName("string")
                                        .tokenRef(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGithubTokenRefArgs.builder()
                                            .key("string")
                                            .secretName("string")
                                            .build())
                                        .build())
                                    .gitlab(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGitlabArgs.builder()
                                        .group("string")
                                        .allBranches(false)
                                        .api("string")
                                        .includeSubgroups(false)
                                        .tokenRef(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGitlabTokenRefArgs.builder()
                                            .key("string")
                                            .secretName("string")
                                            .build())
                                        .build())
                                    .requeueAfterSeconds("string")
                                    .template(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateArgs.builder()
                                        .metadata(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateMetadataArgs.builder()
                                            .annotations(Map.of("string", "string"))
                                            .finalizers("string")
                                            .labels(Map.of("string", "string"))
                                            .name("string")
                                            .namespace("string")
                                            .build())
                                        .spec(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecArgs.builder()
                                            .destination(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecDestinationArgs.builder()
                                                .name("string")
                                                .namespace("string")
                                                .server("string")
                                                .build())
                                            .ignoreDifferences(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecIgnoreDifferenceArgs.builder()
                                                .group("string")
                                                .jqPathExpressions("string")
                                                .jsonPointers("string")
                                                .kind("string")
                                                .managedFieldsManagers("string")
                                                .name("string")
                                                .namespace("string")
                                                .build())
                                            .infos(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecInfoArgs.builder()
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .project("string")
                                            .revisionHistoryLimit(0)
                                            .sources(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSourceArgs.builder()
                                                .chart("string")
                                                .directory(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryArgs.builder()
                                                    .exclude("string")
                                                    .include("string")
                                                    .jsonnet(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetArgs.builder()
                                                        .extVars(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetExtVarArgs.builder()
                                                            .code(false)
                                                            .name("string")
                                                            .value("string")
                                                            .build())
                                                        .libs("string")
                                                        .tlas(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetTlaArgs.builder()
                                                            .code(false)
                                                            .name("string")
                                                            .value("string")
                                                            .build())
                                                        .build())
                                                    .recurse(false)
                                                    .build())
                                                .helm(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmArgs.builder()
                                                    .fileParameters(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmFileParameterArgs.builder()
                                                        .name("string")
                                                        .path("string")
                                                        .build())
                                                    .ignoreMissingValueFiles(false)
                                                    .parameters(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmParameterArgs.builder()
                                                        .forceString(false)
                                                        .name("string")
                                                        .value("string")
                                                        .build())
                                                    .passCredentials(false)
                                                    .releaseName("string")
                                                    .skipCrds(false)
                                                    .valueFiles("string")
                                                    .values("string")
                                                    .version("string")
                                                    .build())
                                                .kustomize(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizeArgs.builder()
                                                    .commonAnnotations(Map.of("string", "string"))
                                                    .commonLabels(Map.of("string", "string"))
                                                    .images("string")
                                                    .namePrefix("string")
                                                    .nameSuffix("string")
                                                    .patches(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizePatchArgs.builder()
                                                        .target(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizePatchTargetArgs.builder()
                                                            .annotationSelector("string")
                                                            .group("string")
                                                            .kind("string")
                                                            .labelSelector("string")
                                                            .name("string")
                                                            .namespace("string")
                                                            .version("string")
                                                            .build())
                                                        .options(Map.of("string", false))
                                                        .patch("string")
                                                        .path("string")
                                                        .build())
                                                    .version("string")
                                                    .build())
                                                .path("string")
                                                .plugin(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSourcePluginArgs.builder()
                                                    .envs(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSourcePluginEnvArgs.builder()
                                                        .name("string")
                                                        .value("string")
                                                        .build())
                                                    .name("string")
                                                    .build())
                                                .ref("string")
                                                .repoUrl("string")
                                                .targetRevision("string")
                                                .build())
                                            .syncPolicy(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyArgs.builder()
                                                .automated(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyAutomatedArgs.builder()
                                                    .allowEmpty(false)
                                                    .prune(false)
                                                    .selfHeal(false)
                                                    .build())
                                                .managedNamespaceMetadata(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyManagedNamespaceMetadataArgs.builder()
                                                    .annotations(Map.of("string", "string"))
                                                    .labels(Map.of("string", "string"))
                                                    .build())
                                                .retry(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyRetryArgs.builder()
                                                    .backoff(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyRetryBackoffArgs.builder()
                                                        .duration("string")
                                                        .factor("string")
                                                        .maxDuration("string")
                                                        .build())
                                                    .limit("string")
                                                    .build())
                                                .syncOptions("string")
                                                .build())
                                            .build())
                                        .build())
                                    .build())
                                .selector(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorSelectorArgs.builder()
                                    .matchExpressions(ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorSelectorMatchExpressionArgs.builder()
                                        .key("string")
                                        .operator("string")
                                        .values("string")
                                        .build())
                                    .matchLabels(Map.of("string", "string"))
                                    .build())
                                .build())
                            .template(ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateArgs.builder()
                                .metadata(ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateMetadataArgs.builder()
                                    .annotations(Map.of("string", "string"))
                                    .finalizers("string")
                                    .labels(Map.of("string", "string"))
                                    .name("string")
                                    .namespace("string")
                                    .build())
                                .spec(ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecArgs.builder()
                                    .destination(ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecDestinationArgs.builder()
                                        .name("string")
                                        .namespace("string")
                                        .server("string")
                                        .build())
                                    .ignoreDifferences(ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecIgnoreDifferenceArgs.builder()
                                        .group("string")
                                        .jqPathExpressions("string")
                                        .jsonPointers("string")
                                        .kind("string")
                                        .managedFieldsManagers("string")
                                        .name("string")
                                        .namespace("string")
                                        .build())
                                    .infos(ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecInfoArgs.builder()
                                        .name("string")
                                        .value("string")
                                        .build())
                                    .project("string")
                                    .revisionHistoryLimit(0)
                                    .sources(ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSourceArgs.builder()
                                        .chart("string")
                                        .directory(ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSourceDirectoryArgs.builder()
                                            .exclude("string")
                                            .include("string")
                                            .jsonnet(ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSourceDirectoryJsonnetArgs.builder()
                                                .extVars(ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSourceDirectoryJsonnetExtVarArgs.builder()
                                                    .code(false)
                                                    .name("string")
                                                    .value("string")
                                                    .build())
                                                .libs("string")
                                                .tlas(ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSourceDirectoryJsonnetTlaArgs.builder()
                                                    .code(false)
                                                    .name("string")
                                                    .value("string")
                                                    .build())
                                                .build())
                                            .recurse(false)
                                            .build())
                                        .helm(ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSourceHelmArgs.builder()
                                            .fileParameters(ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSourceHelmFileParameterArgs.builder()
                                                .name("string")
                                                .path("string")
                                                .build())
                                            .ignoreMissingValueFiles(false)
                                            .parameters(ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSourceHelmParameterArgs.builder()
                                                .forceString(false)
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .passCredentials(false)
                                            .releaseName("string")
                                            .skipCrds(false)
                                            .valueFiles("string")
                                            .values("string")
                                            .version("string")
                                            .build())
                                        .kustomize(ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSourceKustomizeArgs.builder()
                                            .commonAnnotations(Map.of("string", "string"))
                                            .commonLabels(Map.of("string", "string"))
                                            .images("string")
                                            .namePrefix("string")
                                            .nameSuffix("string")
                                            .patches(ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSourceKustomizePatchArgs.builder()
                                                .target(ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSourceKustomizePatchTargetArgs.builder()
                                                    .annotationSelector("string")
                                                    .group("string")
                                                    .kind("string")
                                                    .labelSelector("string")
                                                    .name("string")
                                                    .namespace("string")
                                                    .version("string")
                                                    .build())
                                                .options(Map.of("string", false))
                                                .patch("string")
                                                .path("string")
                                                .build())
                                            .version("string")
                                            .build())
                                        .path("string")
                                        .plugin(ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSourcePluginArgs.builder()
                                            .envs(ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSourcePluginEnvArgs.builder()
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .name("string")
                                            .build())
                                        .ref("string")
                                        .repoUrl("string")
                                        .targetRevision("string")
                                        .build())
                                    .syncPolicy(ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSyncPolicyArgs.builder()
                                        .automated(ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSyncPolicyAutomatedArgs.builder()
                                            .allowEmpty(false)
                                            .prune(false)
                                            .selfHeal(false)
                                            .build())
                                        .managedNamespaceMetadata(ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSyncPolicyManagedNamespaceMetadataArgs.builder()
                                            .annotations(Map.of("string", "string"))
                                            .labels(Map.of("string", "string"))
                                            .build())
                                        .retry(ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSyncPolicyRetryArgs.builder()
                                            .backoff(ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplateSpecSyncPolicyRetryBackoffArgs.builder()
                                                .duration("string")
                                                .factor("string")
                                                .maxDuration("string")
                                                .build())
                                            .limit("string")
                                            .build())
                                        .syncOptions("string")
                                        .build())
                                    .build())
                                .build())
                            .build())
                        .merges(ApplicationSetSpecGeneratorMergeGeneratorMergeArgs.builder()
                            .generators(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorArgs.builder()
                                .clusterDecisionResources(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceArgs.builder()
                                    .configMapRef("string")
                                    .labelSelector(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceLabelSelectorArgs.builder()
                                        .matchExpressions(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceLabelSelectorMatchExpressionArgs.builder()
                                            .key("string")
                                            .operator("string")
                                            .values("string")
                                            .build())
                                        .matchLabels(Map.of("string", "string"))
                                        .build())
                                    .name("string")
                                    .requeueAfterSeconds("string")
                                    .template(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateArgs.builder()
                                        .metadata(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateMetadataArgs.builder()
                                            .annotations(Map.of("string", "string"))
                                            .finalizers("string")
                                            .labels(Map.of("string", "string"))
                                            .name("string")
                                            .namespace("string")
                                            .build())
                                        .spec(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecArgs.builder()
                                            .destination(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecDestinationArgs.builder()
                                                .name("string")
                                                .namespace("string")
                                                .server("string")
                                                .build())
                                            .ignoreDifferences(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecIgnoreDifferenceArgs.builder()
                                                .group("string")
                                                .jqPathExpressions("string")
                                                .jsonPointers("string")
                                                .kind("string")
                                                .managedFieldsManagers("string")
                                                .name("string")
                                                .namespace("string")
                                                .build())
                                            .infos(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecInfoArgs.builder()
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .project("string")
                                            .revisionHistoryLimit(0)
                                            .sources(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceArgs.builder()
                                                .chart("string")
                                                .directory(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryArgs.builder()
                                                    .exclude("string")
                                                    .include("string")
                                                    .jsonnet(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetArgs.builder()
                                                        .extVars(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetExtVarArgs.builder()
                                                            .code(false)
                                                            .name("string")
                                                            .value("string")
                                                            .build())
                                                        .libs("string")
                                                        .tlas(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetTlaArgs.builder()
                                                            .code(false)
                                                            .name("string")
                                                            .value("string")
                                                            .build())
                                                        .build())
                                                    .recurse(false)
                                                    .build())
                                                .helm(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmArgs.builder()
                                                    .fileParameters(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameterArgs.builder()
                                                        .name("string")
                                                        .path("string")
                                                        .build())
                                                    .ignoreMissingValueFiles(false)
                                                    .parameters(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameterArgs.builder()
                                                        .forceString(false)
                                                        .name("string")
                                                        .value("string")
                                                        .build())
                                                    .passCredentials(false)
                                                    .releaseName("string")
                                                    .skipCrds(false)
                                                    .valueFiles("string")
                                                    .values("string")
                                                    .version("string")
                                                    .build())
                                                .kustomize(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizeArgs.builder()
                                                    .commonAnnotations(Map.of("string", "string"))
                                                    .commonLabels(Map.of("string", "string"))
                                                    .images("string")
                                                    .namePrefix("string")
                                                    .nameSuffix("string")
                                                    .patches(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchArgs.builder()
                                                        .target(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTargetArgs.builder()
                                                            .annotationSelector("string")
                                                            .group("string")
                                                            .kind("string")
                                                            .labelSelector("string")
                                                            .name("string")
                                                            .namespace("string")
                                                            .version("string")
                                                            .build())
                                                        .options(Map.of("string", false))
                                                        .patch("string")
                                                        .path("string")
                                                        .build())
                                                    .version("string")
                                                    .build())
                                                .path("string")
                                                .plugin(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourcePluginArgs.builder()
                                                    .envs(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnvArgs.builder()
                                                        .name("string")
                                                        .value("string")
                                                        .build())
                                                    .name("string")
                                                    .build())
                                                .ref("string")
                                                .repoUrl("string")
                                                .targetRevision("string")
                                                .build())
                                            .syncPolicy(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyArgs.builder()
                                                .automated(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomatedArgs.builder()
                                                    .allowEmpty(false)
                                                    .prune(false)
                                                    .selfHeal(false)
                                                    .build())
                                                .managedNamespaceMetadata(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadataArgs.builder()
                                                    .annotations(Map.of("string", "string"))
                                                    .labels(Map.of("string", "string"))
                                                    .build())
                                                .retry(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryArgs.builder()
                                                    .backoff(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoffArgs.builder()
                                                        .duration("string")
                                                        .factor("string")
                                                        .maxDuration("string")
                                                        .build())
                                                    .limit("string")
                                                    .build())
                                                .syncOptions("string")
                                                .build())
                                            .build())
                                        .build())
                                    .values(Map.of("string", "string"))
                                    .build())
                                .clusters(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterArgs.builder()
                                    .enabled(false)
                                    .selector(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterSelectorArgs.builder()
                                        .matchExpressions(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterSelectorMatchExpressionArgs.builder()
                                            .key("string")
                                            .operator("string")
                                            .values("string")
                                            .build())
                                        .matchLabels(Map.of("string", "string"))
                                        .build())
                                    .template(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateArgs.builder()
                                        .metadata(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateMetadataArgs.builder()
                                            .annotations(Map.of("string", "string"))
                                            .finalizers("string")
                                            .labels(Map.of("string", "string"))
                                            .name("string")
                                            .namespace("string")
                                            .build())
                                        .spec(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecArgs.builder()
                                            .destination(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecDestinationArgs.builder()
                                                .name("string")
                                                .namespace("string")
                                                .server("string")
                                                .build())
                                            .ignoreDifferences(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecIgnoreDifferenceArgs.builder()
                                                .group("string")
                                                .jqPathExpressions("string")
                                                .jsonPointers("string")
                                                .kind("string")
                                                .managedFieldsManagers("string")
                                                .name("string")
                                                .namespace("string")
                                                .build())
                                            .infos(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecInfoArgs.builder()
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .project("string")
                                            .revisionHistoryLimit(0)
                                            .sources(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSourceArgs.builder()
                                                .chart("string")
                                                .directory(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryArgs.builder()
                                                    .exclude("string")
                                                    .include("string")
                                                    .jsonnet(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnetArgs.builder()
                                                        .extVars(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnetExtVarArgs.builder()
                                                            .code(false)
                                                            .name("string")
                                                            .value("string")
                                                            .build())
                                                        .libs("string")
                                                        .tlas(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnetTlaArgs.builder()
                                                            .code(false)
                                                            .name("string")
                                                            .value("string")
                                                            .build())
                                                        .build())
                                                    .recurse(false)
                                                    .build())
                                                .helm(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSourceHelmArgs.builder()
                                                    .fileParameters(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSourceHelmFileParameterArgs.builder()
                                                        .name("string")
                                                        .path("string")
                                                        .build())
                                                    .ignoreMissingValueFiles(false)
                                                    .parameters(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSourceHelmParameterArgs.builder()
                                                        .forceString(false)
                                                        .name("string")
                                                        .value("string")
                                                        .build())
                                                    .passCredentials(false)
                                                    .releaseName("string")
                                                    .skipCrds(false)
                                                    .valueFiles("string")
                                                    .values("string")
                                                    .version("string")
                                                    .build())
                                                .kustomize(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizeArgs.builder()
                                                    .commonAnnotations(Map.of("string", "string"))
                                                    .commonLabels(Map.of("string", "string"))
                                                    .images("string")
                                                    .namePrefix("string")
                                                    .nameSuffix("string")
                                                    .patches(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizePatchArgs.builder()
                                                        .target(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizePatchTargetArgs.builder()
                                                            .annotationSelector("string")
                                                            .group("string")
                                                            .kind("string")
                                                            .labelSelector("string")
                                                            .name("string")
                                                            .namespace("string")
                                                            .version("string")
                                                            .build())
                                                        .options(Map.of("string", false))
                                                        .patch("string")
                                                        .path("string")
                                                        .build())
                                                    .version("string")
                                                    .build())
                                                .path("string")
                                                .plugin(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSourcePluginArgs.builder()
                                                    .envs(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSourcePluginEnvArgs.builder()
                                                        .name("string")
                                                        .value("string")
                                                        .build())
                                                    .name("string")
                                                    .build())
                                                .ref("string")
                                                .repoUrl("string")
                                                .targetRevision("string")
                                                .build())
                                            .syncPolicy(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyArgs.builder()
                                                .automated(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyAutomatedArgs.builder()
                                                    .allowEmpty(false)
                                                    .prune(false)
                                                    .selfHeal(false)
                                                    .build())
                                                .managedNamespaceMetadata(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadataArgs.builder()
                                                    .annotations(Map.of("string", "string"))
                                                    .labels(Map.of("string", "string"))
                                                    .build())
                                                .retry(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyRetryArgs.builder()
                                                    .backoff(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyRetryBackoffArgs.builder()
                                                        .duration("string")
                                                        .factor("string")
                                                        .maxDuration("string")
                                                        .build())
                                                    .limit("string")
                                                    .build())
                                                .syncOptions("string")
                                                .build())
                                            .build())
                                        .build())
                                    .values(Map.of("string", "string"))
                                    .build())
                                .gits(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitArgs.builder()
                                    .repoUrl("string")
                                    .directories(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitDirectoryArgs.builder()
                                        .path("string")
                                        .exclude(false)
                                        .build())
                                    .files(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitFileArgs.builder()
                                        .path("string")
                                        .build())
                                    .pathParamPrefix("string")
                                    .revision("string")
                                    .template(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateArgs.builder()
                                        .metadata(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateMetadataArgs.builder()
                                            .annotations(Map.of("string", "string"))
                                            .finalizers("string")
                                            .labels(Map.of("string", "string"))
                                            .name("string")
                                            .namespace("string")
                                            .build())
                                        .spec(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecArgs.builder()
                                            .destination(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecDestinationArgs.builder()
                                                .name("string")
                                                .namespace("string")
                                                .server("string")
                                                .build())
                                            .ignoreDifferences(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecIgnoreDifferenceArgs.builder()
                                                .group("string")
                                                .jqPathExpressions("string")
                                                .jsonPointers("string")
                                                .kind("string")
                                                .managedFieldsManagers("string")
                                                .name("string")
                                                .namespace("string")
                                                .build())
                                            .infos(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecInfoArgs.builder()
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .project("string")
                                            .revisionHistoryLimit(0)
                                            .sources(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSourceArgs.builder()
                                                .chart("string")
                                                .directory(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryArgs.builder()
                                                    .exclude("string")
                                                    .include("string")
                                                    .jsonnet(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnetArgs.builder()
                                                        .extVars(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnetExtVarArgs.builder()
                                                            .code(false)
                                                            .name("string")
                                                            .value("string")
                                                            .build())
                                                        .libs("string")
                                                        .tlas(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnetTlaArgs.builder()
                                                            .code(false)
                                                            .name("string")
                                                            .value("string")
                                                            .build())
                                                        .build())
                                                    .recurse(false)
                                                    .build())
                                                .helm(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSourceHelmArgs.builder()
                                                    .fileParameters(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSourceHelmFileParameterArgs.builder()
                                                        .name("string")
                                                        .path("string")
                                                        .build())
                                                    .ignoreMissingValueFiles(false)
                                                    .parameters(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSourceHelmParameterArgs.builder()
                                                        .forceString(false)
                                                        .name("string")
                                                        .value("string")
                                                        .build())
                                                    .passCredentials(false)
                                                    .releaseName("string")
                                                    .skipCrds(false)
                                                    .valueFiles("string")
                                                    .values("string")
                                                    .version("string")
                                                    .build())
                                                .kustomize(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSourceKustomizeArgs.builder()
                                                    .commonAnnotations(Map.of("string", "string"))
                                                    .commonLabels(Map.of("string", "string"))
                                                    .images("string")
                                                    .namePrefix("string")
                                                    .nameSuffix("string")
                                                    .patches(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSourceKustomizePatchArgs.builder()
                                                        .target(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSourceKustomizePatchTargetArgs.builder()
                                                            .annotationSelector("string")
                                                            .group("string")
                                                            .kind("string")
                                                            .labelSelector("string")
                                                            .name("string")
                                                            .namespace("string")
                                                            .version("string")
                                                            .build())
                                                        .options(Map.of("string", false))
                                                        .patch("string")
                                                        .path("string")
                                                        .build())
                                                    .version("string")
                                                    .build())
                                                .path("string")
                                                .plugin(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSourcePluginArgs.builder()
                                                    .envs(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSourcePluginEnvArgs.builder()
                                                        .name("string")
                                                        .value("string")
                                                        .build())
                                                    .name("string")
                                                    .build())
                                                .ref("string")
                                                .repoUrl("string")
                                                .targetRevision("string")
                                                .build())
                                            .syncPolicy(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSyncPolicyArgs.builder()
                                                .automated(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSyncPolicyAutomatedArgs.builder()
                                                    .allowEmpty(false)
                                                    .prune(false)
                                                    .selfHeal(false)
                                                    .build())
                                                .managedNamespaceMetadata(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadataArgs.builder()
                                                    .annotations(Map.of("string", "string"))
                                                    .labels(Map.of("string", "string"))
                                                    .build())
                                                .retry(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSyncPolicyRetryArgs.builder()
                                                    .backoff(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorGitTemplateSpecSyncPolicyRetryBackoffArgs.builder()
                                                        .duration("string")
                                                        .factor("string")
                                                        .maxDuration("string")
                                                        .build())
                                                    .limit("string")
                                                    .build())
                                                .syncOptions("string")
                                                .build())
                                            .build())
                                        .build())
                                    .values(Map.of("string", "string"))
                                    .build())
                                .lists(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListArgs.builder()
                                    .elements(Map.of("string", "string"))
                                    .template(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateArgs.builder()
                                        .metadata(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateMetadataArgs.builder()
                                            .annotations(Map.of("string", "string"))
                                            .finalizers("string")
                                            .labels(Map.of("string", "string"))
                                            .name("string")
                                            .namespace("string")
                                            .build())
                                        .spec(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecArgs.builder()
                                            .destination(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecDestinationArgs.builder()
                                                .name("string")
                                                .namespace("string")
                                                .server("string")
                                                .build())
                                            .ignoreDifferences(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecIgnoreDifferenceArgs.builder()
                                                .group("string")
                                                .jqPathExpressions("string")
                                                .jsonPointers("string")
                                                .kind("string")
                                                .managedFieldsManagers("string")
                                                .name("string")
                                                .namespace("string")
                                                .build())
                                            .infos(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecInfoArgs.builder()
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .project("string")
                                            .revisionHistoryLimit(0)
                                            .sources(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSourceArgs.builder()
                                                .chart("string")
                                                .directory(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSourceDirectoryArgs.builder()
                                                    .exclude("string")
                                                    .include("string")
                                                    .jsonnet(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnetArgs.builder()
                                                        .extVars(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnetExtVarArgs.builder()
                                                            .code(false)
                                                            .name("string")
                                                            .value("string")
                                                            .build())
                                                        .libs("string")
                                                        .tlas(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnetTlaArgs.builder()
                                                            .code(false)
                                                            .name("string")
                                                            .value("string")
                                                            .build())
                                                        .build())
                                                    .recurse(false)
                                                    .build())
                                                .helm(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSourceHelmArgs.builder()
                                                    .fileParameters(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSourceHelmFileParameterArgs.builder()
                                                        .name("string")
                                                        .path("string")
                                                        .build())
                                                    .ignoreMissingValueFiles(false)
                                                    .parameters(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSourceHelmParameterArgs.builder()
                                                        .forceString(false)
                                                        .name("string")
                                                        .value("string")
                                                        .build())
                                                    .passCredentials(false)
                                                    .releaseName("string")
                                                    .skipCrds(false)
                                                    .valueFiles("string")
                                                    .values("string")
                                                    .version("string")
                                                    .build())
                                                .kustomize(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSourceKustomizeArgs.builder()
                                                    .commonAnnotations(Map.of("string", "string"))
                                                    .commonLabels(Map.of("string", "string"))
                                                    .images("string")
                                                    .namePrefix("string")
                                                    .nameSuffix("string")
                                                    .patches(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSourceKustomizePatchArgs.builder()
                                                        .target(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSourceKustomizePatchTargetArgs.builder()
                                                            .annotationSelector("string")
                                                            .group("string")
                                                            .kind("string")
                                                            .labelSelector("string")
                                                            .name("string")
                                                            .namespace("string")
                                                            .version("string")
                                                            .build())
                                                        .options(Map.of("string", false))
                                                        .patch("string")
                                                        .path("string")
                                                        .build())
                                                    .version("string")
                                                    .build())
                                                .path("string")
                                                .plugin(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSourcePluginArgs.builder()
                                                    .envs(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSourcePluginEnvArgs.builder()
                                                        .name("string")
                                                        .value("string")
                                                        .build())
                                                    .name("string")
                                                    .build())
                                                .ref("string")
                                                .repoUrl("string")
                                                .targetRevision("string")
                                                .build())
                                            .syncPolicy(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSyncPolicyArgs.builder()
                                                .automated(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSyncPolicyAutomatedArgs.builder()
                                                    .allowEmpty(false)
                                                    .prune(false)
                                                    .selfHeal(false)
                                                    .build())
                                                .managedNamespaceMetadata(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadataArgs.builder()
                                                    .annotations(Map.of("string", "string"))
                                                    .labels(Map.of("string", "string"))
                                                    .build())
                                                .retry(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSyncPolicyRetryArgs.builder()
                                                    .backoff(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorListTemplateSpecSyncPolicyRetryBackoffArgs.builder()
                                                        .duration("string")
                                                        .factor("string")
                                                        .maxDuration("string")
                                                        .build())
                                                    .limit("string")
                                                    .build())
                                                .syncOptions("string")
                                                .build())
                                            .build())
                                        .build())
                                    .build())
                                .pullRequests(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestArgs.builder()
                                    .bitbucketServer(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestBitbucketServerArgs.builder()
                                        .api("string")
                                        .project("string")
                                        .repo("string")
                                        .basicAuth(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestBitbucketServerBasicAuthArgs.builder()
                                            .passwordRef(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestBitbucketServerBasicAuthPasswordRefArgs.builder()
                                                .key("string")
                                                .secretName("string")
                                                .build())
                                            .username("string")
                                            .build())
                                        .build())
                                    .filters(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestFilterArgs.builder()
                                        .branchMatch("string")
                                        .build())
                                    .gitea(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestGiteaArgs.builder()
                                        .api("string")
                                        .owner("string")
                                        .repo("string")
                                        .insecure(false)
                                        .tokenRef(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestGiteaTokenRefArgs.builder()
                                            .key("string")
                                            .secretName("string")
                                            .build())
                                        .build())
                                    .github(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestGithubArgs.builder()
                                        .owner("string")
                                        .repo("string")
                                        .api("string")
                                        .appSecretName("string")
                                        .labels("string")
                                        .tokenRef(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestGithubTokenRefArgs.builder()
                                            .key("string")
                                            .secretName("string")
                                            .build())
                                        .build())
                                    .gitlab(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestGitlabArgs.builder()
                                        .project("string")
                                        .api("string")
                                        .labels("string")
                                        .pullRequestState("string")
                                        .tokenRef(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestGitlabTokenRefArgs.builder()
                                            .key("string")
                                            .secretName("string")
                                            .build())
                                        .build())
                                    .requeueAfterSeconds("string")
                                    .template(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateArgs.builder()
                                        .metadata(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateMetadataArgs.builder()
                                            .annotations(Map.of("string", "string"))
                                            .finalizers("string")
                                            .labels(Map.of("string", "string"))
                                            .name("string")
                                            .namespace("string")
                                            .build())
                                        .spec(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecArgs.builder()
                                            .destination(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecDestinationArgs.builder()
                                                .name("string")
                                                .namespace("string")
                                                .server("string")
                                                .build())
                                            .ignoreDifferences(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecIgnoreDifferenceArgs.builder()
                                                .group("string")
                                                .jqPathExpressions("string")
                                                .jsonPointers("string")
                                                .kind("string")
                                                .managedFieldsManagers("string")
                                                .name("string")
                                                .namespace("string")
                                                .build())
                                            .infos(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecInfoArgs.builder()
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .project("string")
                                            .revisionHistoryLimit(0)
                                            .sources(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSourceArgs.builder()
                                                .chart("string")
                                                .directory(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryArgs.builder()
                                                    .exclude("string")
                                                    .include("string")
                                                    .jsonnet(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetArgs.builder()
                                                        .extVars(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetExtVarArgs.builder()
                                                            .code(false)
                                                            .name("string")
                                                            .value("string")
                                                            .build())
                                                        .libs("string")
                                                        .tlas(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetTlaArgs.builder()
                                                            .code(false)
                                                            .name("string")
                                                            .value("string")
                                                            .build())
                                                        .build())
                                                    .recurse(false)
                                                    .build())
                                                .helm(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmArgs.builder()
                                                    .fileParameters(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmFileParameterArgs.builder()
                                                        .name("string")
                                                        .path("string")
                                                        .build())
                                                    .ignoreMissingValueFiles(false)
                                                    .parameters(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmParameterArgs.builder()
                                                        .forceString(false)
                                                        .name("string")
                                                        .value("string")
                                                        .build())
                                                    .passCredentials(false)
                                                    .releaseName("string")
                                                    .skipCrds(false)
                                                    .valueFiles("string")
                                                    .values("string")
                                                    .version("string")
                                                    .build())
                                                .kustomize(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomizeArgs.builder()
                                                    .commonAnnotations(Map.of("string", "string"))
                                                    .commonLabels(Map.of("string", "string"))
                                                    .images("string")
                                                    .namePrefix("string")
                                                    .nameSuffix("string")
                                                    .patches(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomizePatchArgs.builder()
                                                        .target(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomizePatchTargetArgs.builder()
                                                            .annotationSelector("string")
                                                            .group("string")
                                                            .kind("string")
                                                            .labelSelector("string")
                                                            .name("string")
                                                            .namespace("string")
                                                            .version("string")
                                                            .build())
                                                        .options(Map.of("string", false))
                                                        .patch("string")
                                                        .path("string")
                                                        .build())
                                                    .version("string")
                                                    .build())
                                                .path("string")
                                                .plugin(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSourcePluginArgs.builder()
                                                    .envs(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSourcePluginEnvArgs.builder()
                                                        .name("string")
                                                        .value("string")
                                                        .build())
                                                    .name("string")
                                                    .build())
                                                .ref("string")
                                                .repoUrl("string")
                                                .targetRevision("string")
                                                .build())
                                            .syncPolicy(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyArgs.builder()
                                                .automated(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyAutomatedArgs.builder()
                                                    .allowEmpty(false)
                                                    .prune(false)
                                                    .selfHeal(false)
                                                    .build())
                                                .managedNamespaceMetadata(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyManagedNamespaceMetadataArgs.builder()
                                                    .annotations(Map.of("string", "string"))
                                                    .labels(Map.of("string", "string"))
                                                    .build())
                                                .retry(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyRetryArgs.builder()
                                                    .backoff(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyRetryBackoffArgs.builder()
                                                        .duration("string")
                                                        .factor("string")
                                                        .maxDuration("string")
                                                        .build())
                                                    .limit("string")
                                                    .build())
                                                .syncOptions("string")
                                                .build())
                                            .build())
                                        .build())
                                    .build())
                                .scmProviders(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderArgs.builder()
                                    .azureDevops(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderAzureDevopsArgs.builder()
                                        .organization("string")
                                        .teamProject("string")
                                        .accessTokenRef(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderAzureDevopsAccessTokenRefArgs.builder()
                                            .key("string")
                                            .secretName("string")
                                            .build())
                                        .allBranches(false)
                                        .api("string")
                                        .build())
                                    .bitbucketCloud(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderBitbucketCloudArgs.builder()
                                        .owner("string")
                                        .user("string")
                                        .allBranches(false)
                                        .appPasswordRef(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderBitbucketCloudAppPasswordRefArgs.builder()
                                            .key("string")
                                            .secretName("string")
                                            .build())
                                        .build())
                                    .bitbucketServer(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderBitbucketServerArgs.builder()
                                        .api("string")
                                        .project("string")
                                        .allBranches(false)
                                        .basicAuth(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderBitbucketServerBasicAuthArgs.builder()
                                            .passwordRef(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderBitbucketServerBasicAuthPasswordRefArgs.builder()
                                                .key("string")
                                                .secretName("string")
                                                .build())
                                            .username("string")
                                            .build())
                                        .build())
                                    .cloneProtocol("string")
                                    .filters(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderFilterArgs.builder()
                                        .branchMatch("string")
                                        .labelMatch("string")
                                        .pathsDoNotExists("string")
                                        .pathsExists("string")
                                        .repositoryMatch("string")
                                        .build())
                                    .gitea(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderGiteaArgs.builder()
                                        .owner("string")
                                        .allBranches(false)
                                        .api("string")
                                        .insecure(false)
                                        .tokenRef(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderGiteaTokenRefArgs.builder()
                                            .key("string")
                                            .secretName("string")
                                            .build())
                                        .build())
                                    .github(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderGithubArgs.builder()
                                        .organization("string")
                                        .allBranches(false)
                                        .api("string")
                                        .appSecretName("string")
                                        .tokenRef(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderGithubTokenRefArgs.builder()
                                            .key("string")
                                            .secretName("string")
                                            .build())
                                        .build())
                                    .gitlab(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderGitlabArgs.builder()
                                        .group("string")
                                        .allBranches(false)
                                        .api("string")
                                        .includeSubgroups(false)
                                        .tokenRef(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderGitlabTokenRefArgs.builder()
                                            .key("string")
                                            .secretName("string")
                                            .build())
                                        .build())
                                    .requeueAfterSeconds("string")
                                    .template(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateArgs.builder()
                                        .metadata(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateMetadataArgs.builder()
                                            .annotations(Map.of("string", "string"))
                                            .finalizers("string")
                                            .labels(Map.of("string", "string"))
                                            .name("string")
                                            .namespace("string")
                                            .build())
                                        .spec(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecArgs.builder()
                                            .destination(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecDestinationArgs.builder()
                                                .name("string")
                                                .namespace("string")
                                                .server("string")
                                                .build())
                                            .ignoreDifferences(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecIgnoreDifferenceArgs.builder()
                                                .group("string")
                                                .jqPathExpressions("string")
                                                .jsonPointers("string")
                                                .kind("string")
                                                .managedFieldsManagers("string")
                                                .name("string")
                                                .namespace("string")
                                                .build())
                                            .infos(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecInfoArgs.builder()
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .project("string")
                                            .revisionHistoryLimit(0)
                                            .sources(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSourceArgs.builder()
                                                .chart("string")
                                                .directory(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryArgs.builder()
                                                    .exclude("string")
                                                    .include("string")
                                                    .jsonnet(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetArgs.builder()
                                                        .extVars(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetExtVarArgs.builder()
                                                            .code(false)
                                                            .name("string")
                                                            .value("string")
                                                            .build())
                                                        .libs("string")
                                                        .tlas(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetTlaArgs.builder()
                                                            .code(false)
                                                            .name("string")
                                                            .value("string")
                                                            .build())
                                                        .build())
                                                    .recurse(false)
                                                    .build())
                                                .helm(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmArgs.builder()
                                                    .fileParameters(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmFileParameterArgs.builder()
                                                        .name("string")
                                                        .path("string")
                                                        .build())
                                                    .ignoreMissingValueFiles(false)
                                                    .parameters(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmParameterArgs.builder()
                                                        .forceString(false)
                                                        .name("string")
                                                        .value("string")
                                                        .build())
                                                    .passCredentials(false)
                                                    .releaseName("string")
                                                    .skipCrds(false)
                                                    .valueFiles("string")
                                                    .values("string")
                                                    .version("string")
                                                    .build())
                                                .kustomize(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomizeArgs.builder()
                                                    .commonAnnotations(Map.of("string", "string"))
                                                    .commonLabels(Map.of("string", "string"))
                                                    .images("string")
                                                    .namePrefix("string")
                                                    .nameSuffix("string")
                                                    .patches(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomizePatchArgs.builder()
                                                        .target(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomizePatchTargetArgs.builder()
                                                            .annotationSelector("string")
                                                            .group("string")
                                                            .kind("string")
                                                            .labelSelector("string")
                                                            .name("string")
                                                            .namespace("string")
                                                            .version("string")
                                                            .build())
                                                        .options(Map.of("string", false))
                                                        .patch("string")
                                                        .path("string")
                                                        .build())
                                                    .version("string")
                                                    .build())
                                                .path("string")
                                                .plugin(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSourcePluginArgs.builder()
                                                    .envs(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSourcePluginEnvArgs.builder()
                                                        .name("string")
                                                        .value("string")
                                                        .build())
                                                    .name("string")
                                                    .build())
                                                .ref("string")
                                                .repoUrl("string")
                                                .targetRevision("string")
                                                .build())
                                            .syncPolicy(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyArgs.builder()
                                                .automated(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyAutomatedArgs.builder()
                                                    .allowEmpty(false)
                                                    .prune(false)
                                                    .selfHeal(false)
                                                    .build())
                                                .managedNamespaceMetadata(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyManagedNamespaceMetadataArgs.builder()
                                                    .annotations(Map.of("string", "string"))
                                                    .labels(Map.of("string", "string"))
                                                    .build())
                                                .retry(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyRetryArgs.builder()
                                                    .backoff(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyRetryBackoffArgs.builder()
                                                        .duration("string")
                                                        .factor("string")
                                                        .maxDuration("string")
                                                        .build())
                                                    .limit("string")
                                                    .build())
                                                .syncOptions("string")
                                                .build())
                                            .build())
                                        .build())
                                    .build())
                                .selector(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorSelectorArgs.builder()
                                    .matchExpressions(ApplicationSetSpecGeneratorMergeGeneratorMergeGeneratorSelectorMatchExpressionArgs.builder()
                                        .key("string")
                                        .operator("string")
                                        .values("string")
                                        .build())
                                    .matchLabels(Map.of("string", "string"))
                                    .build())
                                .build())
                            .mergeKeys("string")
                            .template(ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateArgs.builder()
                                .metadata(ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateMetadataArgs.builder()
                                    .annotations(Map.of("string", "string"))
                                    .finalizers("string")
                                    .labels(Map.of("string", "string"))
                                    .name("string")
                                    .namespace("string")
                                    .build())
                                .spec(ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecArgs.builder()
                                    .destination(ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecDestinationArgs.builder()
                                        .name("string")
                                        .namespace("string")
                                        .server("string")
                                        .build())
                                    .ignoreDifferences(ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecIgnoreDifferenceArgs.builder()
                                        .group("string")
                                        .jqPathExpressions("string")
                                        .jsonPointers("string")
                                        .kind("string")
                                        .managedFieldsManagers("string")
                                        .name("string")
                                        .namespace("string")
                                        .build())
                                    .infos(ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecInfoArgs.builder()
                                        .name("string")
                                        .value("string")
                                        .build())
                                    .project("string")
                                    .revisionHistoryLimit(0)
                                    .sources(ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSourceArgs.builder()
                                        .chart("string")
                                        .directory(ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSourceDirectoryArgs.builder()
                                            .exclude("string")
                                            .include("string")
                                            .jsonnet(ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSourceDirectoryJsonnetArgs.builder()
                                                .extVars(ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSourceDirectoryJsonnetExtVarArgs.builder()
                                                    .code(false)
                                                    .name("string")
                                                    .value("string")
                                                    .build())
                                                .libs("string")
                                                .tlas(ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSourceDirectoryJsonnetTlaArgs.builder()
                                                    .code(false)
                                                    .name("string")
                                                    .value("string")
                                                    .build())
                                                .build())
                                            .recurse(false)
                                            .build())
                                        .helm(ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSourceHelmArgs.builder()
                                            .fileParameters(ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSourceHelmFileParameterArgs.builder()
                                                .name("string")
                                                .path("string")
                                                .build())
                                            .ignoreMissingValueFiles(false)
                                            .parameters(ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSourceHelmParameterArgs.builder()
                                                .forceString(false)
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .passCredentials(false)
                                            .releaseName("string")
                                            .skipCrds(false)
                                            .valueFiles("string")
                                            .values("string")
                                            .version("string")
                                            .build())
                                        .kustomize(ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSourceKustomizeArgs.builder()
                                            .commonAnnotations(Map.of("string", "string"))
                                            .commonLabels(Map.of("string", "string"))
                                            .images("string")
                                            .namePrefix("string")
                                            .nameSuffix("string")
                                            .patches(ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSourceKustomizePatchArgs.builder()
                                                .target(ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSourceKustomizePatchTargetArgs.builder()
                                                    .annotationSelector("string")
                                                    .group("string")
                                                    .kind("string")
                                                    .labelSelector("string")
                                                    .name("string")
                                                    .namespace("string")
                                                    .version("string")
                                                    .build())
                                                .options(Map.of("string", false))
                                                .patch("string")
                                                .path("string")
                                                .build())
                                            .version("string")
                                            .build())
                                        .path("string")
                                        .plugin(ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSourcePluginArgs.builder()
                                            .envs(ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSourcePluginEnvArgs.builder()
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .name("string")
                                            .build())
                                        .ref("string")
                                        .repoUrl("string")
                                        .targetRevision("string")
                                        .build())
                                    .syncPolicy(ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSyncPolicyArgs.builder()
                                        .automated(ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSyncPolicyAutomatedArgs.builder()
                                            .allowEmpty(false)
                                            .prune(false)
                                            .selfHeal(false)
                                            .build())
                                        .managedNamespaceMetadata(ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSyncPolicyManagedNamespaceMetadataArgs.builder()
                                            .annotations(Map.of("string", "string"))
                                            .labels(Map.of("string", "string"))
                                            .build())
                                        .retry(ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSyncPolicyRetryArgs.builder()
                                            .backoff(ApplicationSetSpecGeneratorMergeGeneratorMergeTemplateSpecSyncPolicyRetryBackoffArgs.builder()
                                                .duration("string")
                                                .factor("string")
                                                .maxDuration("string")
                                                .build())
                                            .limit("string")
                                            .build())
                                        .syncOptions("string")
                                        .build())
                                    .build())
                                .build())
                            .build())
                        .pullRequests(ApplicationSetSpecGeneratorMergeGeneratorPullRequestArgs.builder()
                            .bitbucketServer(ApplicationSetSpecGeneratorMergeGeneratorPullRequestBitbucketServerArgs.builder()
                                .api("string")
                                .project("string")
                                .repo("string")
                                .basicAuth(ApplicationSetSpecGeneratorMergeGeneratorPullRequestBitbucketServerBasicAuthArgs.builder()
                                    .passwordRef(ApplicationSetSpecGeneratorMergeGeneratorPullRequestBitbucketServerBasicAuthPasswordRefArgs.builder()
                                        .key("string")
                                        .secretName("string")
                                        .build())
                                    .username("string")
                                    .build())
                                .build())
                            .filters(ApplicationSetSpecGeneratorMergeGeneratorPullRequestFilterArgs.builder()
                                .branchMatch("string")
                                .build())
                            .gitea(ApplicationSetSpecGeneratorMergeGeneratorPullRequestGiteaArgs.builder()
                                .api("string")
                                .owner("string")
                                .repo("string")
                                .insecure(false)
                                .tokenRef(ApplicationSetSpecGeneratorMergeGeneratorPullRequestGiteaTokenRefArgs.builder()
                                    .key("string")
                                    .secretName("string")
                                    .build())
                                .build())
                            .github(ApplicationSetSpecGeneratorMergeGeneratorPullRequestGithubArgs.builder()
                                .owner("string")
                                .repo("string")
                                .api("string")
                                .appSecretName("string")
                                .labels("string")
                                .tokenRef(ApplicationSetSpecGeneratorMergeGeneratorPullRequestGithubTokenRefArgs.builder()
                                    .key("string")
                                    .secretName("string")
                                    .build())
                                .build())
                            .gitlab(ApplicationSetSpecGeneratorMergeGeneratorPullRequestGitlabArgs.builder()
                                .project("string")
                                .api("string")
                                .labels("string")
                                .pullRequestState("string")
                                .tokenRef(ApplicationSetSpecGeneratorMergeGeneratorPullRequestGitlabTokenRefArgs.builder()
                                    .key("string")
                                    .secretName("string")
                                    .build())
                                .build())
                            .requeueAfterSeconds("string")
                            .template(ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateArgs.builder()
                                .metadata(ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateMetadataArgs.builder()
                                    .annotations(Map.of("string", "string"))
                                    .finalizers("string")
                                    .labels(Map.of("string", "string"))
                                    .name("string")
                                    .namespace("string")
                                    .build())
                                .spec(ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecArgs.builder()
                                    .destination(ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecDestinationArgs.builder()
                                        .name("string")
                                        .namespace("string")
                                        .server("string")
                                        .build())
                                    .ignoreDifferences(ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecIgnoreDifferenceArgs.builder()
                                        .group("string")
                                        .jqPathExpressions("string")
                                        .jsonPointers("string")
                                        .kind("string")
                                        .managedFieldsManagers("string")
                                        .name("string")
                                        .namespace("string")
                                        .build())
                                    .infos(ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecInfoArgs.builder()
                                        .name("string")
                                        .value("string")
                                        .build())
                                    .project("string")
                                    .revisionHistoryLimit(0)
                                    .sources(ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSourceArgs.builder()
                                        .chart("string")
                                        .directory(ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryArgs.builder()
                                            .exclude("string")
                                            .include("string")
                                            .jsonnet(ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetArgs.builder()
                                                .extVars(ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetExtVarArgs.builder()
                                                    .code(false)
                                                    .name("string")
                                                    .value("string")
                                                    .build())
                                                .libs("string")
                                                .tlas(ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetTlaArgs.builder()
                                                    .code(false)
                                                    .name("string")
                                                    .value("string")
                                                    .build())
                                                .build())
                                            .recurse(false)
                                            .build())
                                        .helm(ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmArgs.builder()
                                            .fileParameters(ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmFileParameterArgs.builder()
                                                .name("string")
                                                .path("string")
                                                .build())
                                            .ignoreMissingValueFiles(false)
                                            .parameters(ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmParameterArgs.builder()
                                                .forceString(false)
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .passCredentials(false)
                                            .releaseName("string")
                                            .skipCrds(false)
                                            .valueFiles("string")
                                            .values("string")
                                            .version("string")
                                            .build())
                                        .kustomize(ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomizeArgs.builder()
                                            .commonAnnotations(Map.of("string", "string"))
                                            .commonLabels(Map.of("string", "string"))
                                            .images("string")
                                            .namePrefix("string")
                                            .nameSuffix("string")
                                            .patches(ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomizePatchArgs.builder()
                                                .target(ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomizePatchTargetArgs.builder()
                                                    .annotationSelector("string")
                                                    .group("string")
                                                    .kind("string")
                                                    .labelSelector("string")
                                                    .name("string")
                                                    .namespace("string")
                                                    .version("string")
                                                    .build())
                                                .options(Map.of("string", false))
                                                .patch("string")
                                                .path("string")
                                                .build())
                                            .version("string")
                                            .build())
                                        .path("string")
                                        .plugin(ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSourcePluginArgs.builder()
                                            .envs(ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSourcePluginEnvArgs.builder()
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .name("string")
                                            .build())
                                        .ref("string")
                                        .repoUrl("string")
                                        .targetRevision("string")
                                        .build())
                                    .syncPolicy(ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyArgs.builder()
                                        .automated(ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyAutomatedArgs.builder()
                                            .allowEmpty(false)
                                            .prune(false)
                                            .selfHeal(false)
                                            .build())
                                        .managedNamespaceMetadata(ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyManagedNamespaceMetadataArgs.builder()
                                            .annotations(Map.of("string", "string"))
                                            .labels(Map.of("string", "string"))
                                            .build())
                                        .retry(ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyRetryArgs.builder()
                                            .backoff(ApplicationSetSpecGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyRetryBackoffArgs.builder()
                                                .duration("string")
                                                .factor("string")
                                                .maxDuration("string")
                                                .build())
                                            .limit("string")
                                            .build())
                                        .syncOptions("string")
                                        .build())
                                    .build())
                                .build())
                            .build())
                        .scmProviders(ApplicationSetSpecGeneratorMergeGeneratorScmProviderArgs.builder()
                            .azureDevops(ApplicationSetSpecGeneratorMergeGeneratorScmProviderAzureDevopsArgs.builder()
                                .organization("string")
                                .teamProject("string")
                                .accessTokenRef(ApplicationSetSpecGeneratorMergeGeneratorScmProviderAzureDevopsAccessTokenRefArgs.builder()
                                    .key("string")
                                    .secretName("string")
                                    .build())
                                .allBranches(false)
                                .api("string")
                                .build())
                            .bitbucketCloud(ApplicationSetSpecGeneratorMergeGeneratorScmProviderBitbucketCloudArgs.builder()
                                .owner("string")
                                .user("string")
                                .allBranches(false)
                                .appPasswordRef(ApplicationSetSpecGeneratorMergeGeneratorScmProviderBitbucketCloudAppPasswordRefArgs.builder()
                                    .key("string")
                                    .secretName("string")
                                    .build())
                                .build())
                            .bitbucketServer(ApplicationSetSpecGeneratorMergeGeneratorScmProviderBitbucketServerArgs.builder()
                                .api("string")
                                .project("string")
                                .allBranches(false)
                                .basicAuth(ApplicationSetSpecGeneratorMergeGeneratorScmProviderBitbucketServerBasicAuthArgs.builder()
                                    .passwordRef(ApplicationSetSpecGeneratorMergeGeneratorScmProviderBitbucketServerBasicAuthPasswordRefArgs.builder()
                                        .key("string")
                                        .secretName("string")
                                        .build())
                                    .username("string")
                                    .build())
                                .build())
                            .cloneProtocol("string")
                            .filters(ApplicationSetSpecGeneratorMergeGeneratorScmProviderFilterArgs.builder()
                                .branchMatch("string")
                                .labelMatch("string")
                                .pathsDoNotExists("string")
                                .pathsExists("string")
                                .repositoryMatch("string")
                                .build())
                            .gitea(ApplicationSetSpecGeneratorMergeGeneratorScmProviderGiteaArgs.builder()
                                .owner("string")
                                .allBranches(false)
                                .api("string")
                                .insecure(false)
                                .tokenRef(ApplicationSetSpecGeneratorMergeGeneratorScmProviderGiteaTokenRefArgs.builder()
                                    .key("string")
                                    .secretName("string")
                                    .build())
                                .build())
                            .github(ApplicationSetSpecGeneratorMergeGeneratorScmProviderGithubArgs.builder()
                                .organization("string")
                                .allBranches(false)
                                .api("string")
                                .appSecretName("string")
                                .tokenRef(ApplicationSetSpecGeneratorMergeGeneratorScmProviderGithubTokenRefArgs.builder()
                                    .key("string")
                                    .secretName("string")
                                    .build())
                                .build())
                            .gitlab(ApplicationSetSpecGeneratorMergeGeneratorScmProviderGitlabArgs.builder()
                                .group("string")
                                .allBranches(false)
                                .api("string")
                                .includeSubgroups(false)
                                .tokenRef(ApplicationSetSpecGeneratorMergeGeneratorScmProviderGitlabTokenRefArgs.builder()
                                    .key("string")
                                    .secretName("string")
                                    .build())
                                .build())
                            .requeueAfterSeconds("string")
                            .template(ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateArgs.builder()
                                .metadata(ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateMetadataArgs.builder()
                                    .annotations(Map.of("string", "string"))
                                    .finalizers("string")
                                    .labels(Map.of("string", "string"))
                                    .name("string")
                                    .namespace("string")
                                    .build())
                                .spec(ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecArgs.builder()
                                    .destination(ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecDestinationArgs.builder()
                                        .name("string")
                                        .namespace("string")
                                        .server("string")
                                        .build())
                                    .ignoreDifferences(ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecIgnoreDifferenceArgs.builder()
                                        .group("string")
                                        .jqPathExpressions("string")
                                        .jsonPointers("string")
                                        .kind("string")
                                        .managedFieldsManagers("string")
                                        .name("string")
                                        .namespace("string")
                                        .build())
                                    .infos(ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecInfoArgs.builder()
                                        .name("string")
                                        .value("string")
                                        .build())
                                    .project("string")
                                    .revisionHistoryLimit(0)
                                    .sources(ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSourceArgs.builder()
                                        .chart("string")
                                        .directory(ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryArgs.builder()
                                            .exclude("string")
                                            .include("string")
                                            .jsonnet(ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetArgs.builder()
                                                .extVars(ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetExtVarArgs.builder()
                                                    .code(false)
                                                    .name("string")
                                                    .value("string")
                                                    .build())
                                                .libs("string")
                                                .tlas(ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetTlaArgs.builder()
                                                    .code(false)
                                                    .name("string")
                                                    .value("string")
                                                    .build())
                                                .build())
                                            .recurse(false)
                                            .build())
                                        .helm(ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmArgs.builder()
                                            .fileParameters(ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmFileParameterArgs.builder()
                                                .name("string")
                                                .path("string")
                                                .build())
                                            .ignoreMissingValueFiles(false)
                                            .parameters(ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmParameterArgs.builder()
                                                .forceString(false)
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .passCredentials(false)
                                            .releaseName("string")
                                            .skipCrds(false)
                                            .valueFiles("string")
                                            .values("string")
                                            .version("string")
                                            .build())
                                        .kustomize(ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomizeArgs.builder()
                                            .commonAnnotations(Map.of("string", "string"))
                                            .commonLabels(Map.of("string", "string"))
                                            .images("string")
                                            .namePrefix("string")
                                            .nameSuffix("string")
                                            .patches(ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomizePatchArgs.builder()
                                                .target(ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomizePatchTargetArgs.builder()
                                                    .annotationSelector("string")
                                                    .group("string")
                                                    .kind("string")
                                                    .labelSelector("string")
                                                    .name("string")
                                                    .namespace("string")
                                                    .version("string")
                                                    .build())
                                                .options(Map.of("string", false))
                                                .patch("string")
                                                .path("string")
                                                .build())
                                            .version("string")
                                            .build())
                                        .path("string")
                                        .plugin(ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSourcePluginArgs.builder()
                                            .envs(ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSourcePluginEnvArgs.builder()
                                                .name("string")
                                                .value("string")
                                                .build())
                                            .name("string")
                                            .build())
                                        .ref("string")
                                        .repoUrl("string")
                                        .targetRevision("string")
                                        .build())
                                    .syncPolicy(ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyArgs.builder()
                                        .automated(ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyAutomatedArgs.builder()
                                            .allowEmpty(false)
                                            .prune(false)
                                            .selfHeal(false)
                                            .build())
                                        .managedNamespaceMetadata(ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyManagedNamespaceMetadataArgs.builder()
                                            .annotations(Map.of("string", "string"))
                                            .labels(Map.of("string", "string"))
                                            .build())
                                        .retry(ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyRetryArgs.builder()
                                            .backoff(ApplicationSetSpecGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyRetryBackoffArgs.builder()
                                                .duration("string")
                                                .factor("string")
                                                .maxDuration("string")
                                                .build())
                                            .limit("string")
                                            .build())
                                        .syncOptions("string")
                                        .build())
                                    .build())
                                .build())
                            .build())
                        .selector(ApplicationSetSpecGeneratorMergeGeneratorSelectorArgs.builder()
                            .matchExpressions(ApplicationSetSpecGeneratorMergeGeneratorSelectorMatchExpressionArgs.builder()
                                .key("string")
                                .operator("string")
                                .values("string")
                                .build())
                            .matchLabels(Map.of("string", "string"))
                            .build())
                        .build())
                    .mergeKeys("string")
                    .template(ApplicationSetSpecGeneratorMergeTemplateArgs.builder()
                        .metadata(ApplicationSetSpecGeneratorMergeTemplateMetadataArgs.builder()
                            .annotations(Map.of("string", "string"))
                            .finalizers("string")
                            .labels(Map.of("string", "string"))
                            .name("string")
                            .namespace("string")
                            .build())
                        .spec(ApplicationSetSpecGeneratorMergeTemplateSpecArgs.builder()
                            .destination(ApplicationSetSpecGeneratorMergeTemplateSpecDestinationArgs.builder()
                                .name("string")
                                .namespace("string")
                                .server("string")
                                .build())
                            .ignoreDifferences(ApplicationSetSpecGeneratorMergeTemplateSpecIgnoreDifferenceArgs.builder()
                                .group("string")
                                .jqPathExpressions("string")
                                .jsonPointers("string")
                                .kind("string")
                                .managedFieldsManagers("string")
                                .name("string")
                                .namespace("string")
                                .build())
                            .infos(ApplicationSetSpecGeneratorMergeTemplateSpecInfoArgs.builder()
                                .name("string")
                                .value("string")
                                .build())
                            .project("string")
                            .revisionHistoryLimit(0)
                            .sources(ApplicationSetSpecGeneratorMergeTemplateSpecSourceArgs.builder()
                                .chart("string")
                                .directory(ApplicationSetSpecGeneratorMergeTemplateSpecSourceDirectoryArgs.builder()
                                    .exclude("string")
                                    .include("string")
                                    .jsonnet(ApplicationSetSpecGeneratorMergeTemplateSpecSourceDirectoryJsonnetArgs.builder()
                                        .extVars(ApplicationSetSpecGeneratorMergeTemplateSpecSourceDirectoryJsonnetExtVarArgs.builder()
                                            .code(false)
                                            .name("string")
                                            .value("string")
                                            .build())
                                        .libs("string")
                                        .tlas(ApplicationSetSpecGeneratorMergeTemplateSpecSourceDirectoryJsonnetTlaArgs.builder()
                                            .code(false)
                                            .name("string")
                                            .value("string")
                                            .build())
                                        .build())
                                    .recurse(false)
                                    .build())
                                .helm(ApplicationSetSpecGeneratorMergeTemplateSpecSourceHelmArgs.builder()
                                    .fileParameters(ApplicationSetSpecGeneratorMergeTemplateSpecSourceHelmFileParameterArgs.builder()
                                        .name("string")
                                        .path("string")
                                        .build())
                                    .ignoreMissingValueFiles(false)
                                    .parameters(ApplicationSetSpecGeneratorMergeTemplateSpecSourceHelmParameterArgs.builder()
                                        .forceString(false)
                                        .name("string")
                                        .value("string")
                                        .build())
                                    .passCredentials(false)
                                    .releaseName("string")
                                    .skipCrds(false)
                                    .valueFiles("string")
                                    .values("string")
                                    .version("string")
                                    .build())
                                .kustomize(ApplicationSetSpecGeneratorMergeTemplateSpecSourceKustomizeArgs.builder()
                                    .commonAnnotations(Map.of("string", "string"))
                                    .commonLabels(Map.of("string", "string"))
                                    .images("string")
                                    .namePrefix("string")
                                    .nameSuffix("string")
                                    .patches(ApplicationSetSpecGeneratorMergeTemplateSpecSourceKustomizePatchArgs.builder()
                                        .target(ApplicationSetSpecGeneratorMergeTemplateSpecSourceKustomizePatchTargetArgs.builder()
                                            .annotationSelector("string")
                                            .group("string")
                                            .kind("string")
                                            .labelSelector("string")
                                            .name("string")
                                            .namespace("string")
                                            .version("string")
                                            .build())
                                        .options(Map.of("string", false))
                                        .patch("string")
                                        .path("string")
                                        .build())
                                    .version("string")
                                    .build())
                                .path("string")
                                .plugin(ApplicationSetSpecGeneratorMergeTemplateSpecSourcePluginArgs.builder()
                                    .envs(ApplicationSetSpecGeneratorMergeTemplateSpecSourcePluginEnvArgs.builder()
                                        .name("string")
                                        .value("string")
                                        .build())
                                    .name("string")
                                    .build())
                                .ref("string")
                                .repoUrl("string")
                                .targetRevision("string")
                                .build())
                            .syncPolicy(ApplicationSetSpecGeneratorMergeTemplateSpecSyncPolicyArgs.builder()
                                .automated(ApplicationSetSpecGeneratorMergeTemplateSpecSyncPolicyAutomatedArgs.builder()
                                    .allowEmpty(false)
                                    .prune(false)
                                    .selfHeal(false)
                                    .build())
                                .managedNamespaceMetadata(ApplicationSetSpecGeneratorMergeTemplateSpecSyncPolicyManagedNamespaceMetadataArgs.builder()
                                    .annotations(Map.of("string", "string"))
                                    .labels(Map.of("string", "string"))
                                    .build())
                                .retry(ApplicationSetSpecGeneratorMergeTemplateSpecSyncPolicyRetryArgs.builder()
                                    .backoff(ApplicationSetSpecGeneratorMergeTemplateSpecSyncPolicyRetryBackoffArgs.builder()
                                        .duration("string")
                                        .factor("string")
                                        .maxDuration("string")
                                        .build())
                                    .limit("string")
                                    .build())
                                .syncOptions("string")
                                .build())
                            .build())
                        .build())
                    .build())
                .pullRequests(ApplicationSetSpecGeneratorPullRequestArgs.builder()
                    .bitbucketServer(ApplicationSetSpecGeneratorPullRequestBitbucketServerArgs.builder()
                        .api("string")
                        .project("string")
                        .repo("string")
                        .basicAuth(ApplicationSetSpecGeneratorPullRequestBitbucketServerBasicAuthArgs.builder()
                            .passwordRef(ApplicationSetSpecGeneratorPullRequestBitbucketServerBasicAuthPasswordRefArgs.builder()
                                .key("string")
                                .secretName("string")
                                .build())
                            .username("string")
                            .build())
                        .build())
                    .filters(ApplicationSetSpecGeneratorPullRequestFilterArgs.builder()
                        .branchMatch("string")
                        .build())
                    .gitea(ApplicationSetSpecGeneratorPullRequestGiteaArgs.builder()
                        .api("string")
                        .owner("string")
                        .repo("string")
                        .insecure(false)
                        .tokenRef(ApplicationSetSpecGeneratorPullRequestGiteaTokenRefArgs.builder()
                            .key("string")
                            .secretName("string")
                            .build())
                        .build())
                    .github(ApplicationSetSpecGeneratorPullRequestGithubArgs.builder()
                        .owner("string")
                        .repo("string")
                        .api("string")
                        .appSecretName("string")
                        .labels("string")
                        .tokenRef(ApplicationSetSpecGeneratorPullRequestGithubTokenRefArgs.builder()
                            .key("string")
                            .secretName("string")
                            .build())
                        .build())
                    .gitlab(ApplicationSetSpecGeneratorPullRequestGitlabArgs.builder()
                        .project("string")
                        .api("string")
                        .labels("string")
                        .pullRequestState("string")
                        .tokenRef(ApplicationSetSpecGeneratorPullRequestGitlabTokenRefArgs.builder()
                            .key("string")
                            .secretName("string")
                            .build())
                        .build())
                    .requeueAfterSeconds("string")
                    .template(ApplicationSetSpecGeneratorPullRequestTemplateArgs.builder()
                        .metadata(ApplicationSetSpecGeneratorPullRequestTemplateMetadataArgs.builder()
                            .annotations(Map.of("string", "string"))
                            .finalizers("string")
                            .labels(Map.of("string", "string"))
                            .name("string")
                            .namespace("string")
                            .build())
                        .spec(ApplicationSetSpecGeneratorPullRequestTemplateSpecArgs.builder()
                            .destination(ApplicationSetSpecGeneratorPullRequestTemplateSpecDestinationArgs.builder()
                                .name("string")
                                .namespace("string")
                                .server("string")
                                .build())
                            .ignoreDifferences(ApplicationSetSpecGeneratorPullRequestTemplateSpecIgnoreDifferenceArgs.builder()
                                .group("string")
                                .jqPathExpressions("string")
                                .jsonPointers("string")
                                .kind("string")
                                .managedFieldsManagers("string")
                                .name("string")
                                .namespace("string")
                                .build())
                            .infos(ApplicationSetSpecGeneratorPullRequestTemplateSpecInfoArgs.builder()
                                .name("string")
                                .value("string")
                                .build())
                            .project("string")
                            .revisionHistoryLimit(0)
                            .sources(ApplicationSetSpecGeneratorPullRequestTemplateSpecSourceArgs.builder()
                                .chart("string")
                                .directory(ApplicationSetSpecGeneratorPullRequestTemplateSpecSourceDirectoryArgs.builder()
                                    .exclude("string")
                                    .include("string")
                                    .jsonnet(ApplicationSetSpecGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetArgs.builder()
                                        .extVars(ApplicationSetSpecGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetExtVarArgs.builder()
                                            .code(false)
                                            .name("string")
                                            .value("string")
                                            .build())
                                        .libs("string")
                                        .tlas(ApplicationSetSpecGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetTlaArgs.builder()
                                            .code(false)
                                            .name("string")
                                            .value("string")
                                            .build())
                                        .build())
                                    .recurse(false)
                                    .build())
                                .helm(ApplicationSetSpecGeneratorPullRequestTemplateSpecSourceHelmArgs.builder()
                                    .fileParameters(ApplicationSetSpecGeneratorPullRequestTemplateSpecSourceHelmFileParameterArgs.builder()
                                        .name("string")
                                        .path("string")
                                        .build())
                                    .ignoreMissingValueFiles(false)
                                    .parameters(ApplicationSetSpecGeneratorPullRequestTemplateSpecSourceHelmParameterArgs.builder()
                                        .forceString(false)
                                        .name("string")
                                        .value("string")
                                        .build())
                                    .passCredentials(false)
                                    .releaseName("string")
                                    .skipCrds(false)
                                    .valueFiles("string")
                                    .values("string")
                                    .version("string")
                                    .build())
                                .kustomize(ApplicationSetSpecGeneratorPullRequestTemplateSpecSourceKustomizeArgs.builder()
                                    .commonAnnotations(Map.of("string", "string"))
                                    .commonLabels(Map.of("string", "string"))
                                    .images("string")
                                    .namePrefix("string")
                                    .nameSuffix("string")
                                    .patches(ApplicationSetSpecGeneratorPullRequestTemplateSpecSourceKustomizePatchArgs.builder()
                                        .target(ApplicationSetSpecGeneratorPullRequestTemplateSpecSourceKustomizePatchTargetArgs.builder()
                                            .annotationSelector("string")
                                            .group("string")
                                            .kind("string")
                                            .labelSelector("string")
                                            .name("string")
                                            .namespace("string")
                                            .version("string")
                                            .build())
                                        .options(Map.of("string", false))
                                        .patch("string")
                                        .path("string")
                                        .build())
                                    .version("string")
                                    .build())
                                .path("string")
                                .plugin(ApplicationSetSpecGeneratorPullRequestTemplateSpecSourcePluginArgs.builder()
                                    .envs(ApplicationSetSpecGeneratorPullRequestTemplateSpecSourcePluginEnvArgs.builder()
                                        .name("string")
                                        .value("string")
                                        .build())
                                    .name("string")
                                    .build())
                                .ref("string")
                                .repoUrl("string")
                                .targetRevision("string")
                                .build())
                            .syncPolicy(ApplicationSetSpecGeneratorPullRequestTemplateSpecSyncPolicyArgs.builder()
                                .automated(ApplicationSetSpecGeneratorPullRequestTemplateSpecSyncPolicyAutomatedArgs.builder()
                                    .allowEmpty(false)
                                    .prune(false)
                                    .selfHeal(false)
                                    .build())
                                .managedNamespaceMetadata(ApplicationSetSpecGeneratorPullRequestTemplateSpecSyncPolicyManagedNamespaceMetadataArgs.builder()
                                    .annotations(Map.of("string", "string"))
                                    .labels(Map.of("string", "string"))
                                    .build())
                                .retry(ApplicationSetSpecGeneratorPullRequestTemplateSpecSyncPolicyRetryArgs.builder()
                                    .backoff(ApplicationSetSpecGeneratorPullRequestTemplateSpecSyncPolicyRetryBackoffArgs.builder()
                                        .duration("string")
                                        .factor("string")
                                        .maxDuration("string")
                                        .build())
                                    .limit("string")
                                    .build())
                                .syncOptions("string")
                                .build())
                            .build())
                        .build())
                    .build())
                .scmProviders(ApplicationSetSpecGeneratorScmProviderArgs.builder()
                    .azureDevops(ApplicationSetSpecGeneratorScmProviderAzureDevopsArgs.builder()
                        .organization("string")
                        .teamProject("string")
                        .accessTokenRef(ApplicationSetSpecGeneratorScmProviderAzureDevopsAccessTokenRefArgs.builder()
                            .key("string")
                            .secretName("string")
                            .build())
                        .allBranches(false)
                        .api("string")
                        .build())
                    .bitbucketCloud(ApplicationSetSpecGeneratorScmProviderBitbucketCloudArgs.builder()
                        .owner("string")
                        .user("string")
                        .allBranches(false)
                        .appPasswordRef(ApplicationSetSpecGeneratorScmProviderBitbucketCloudAppPasswordRefArgs.builder()
                            .key("string")
                            .secretName("string")
                            .build())
                        .build())
                    .bitbucketServer(ApplicationSetSpecGeneratorScmProviderBitbucketServerArgs.builder()
                        .api("string")
                        .project("string")
                        .allBranches(false)
                        .basicAuth(ApplicationSetSpecGeneratorScmProviderBitbucketServerBasicAuthArgs.builder()
                            .passwordRef(ApplicationSetSpecGeneratorScmProviderBitbucketServerBasicAuthPasswordRefArgs.builder()
                                .key("string")
                                .secretName("string")
                                .build())
                            .username("string")
                            .build())
                        .build())
                    .cloneProtocol("string")
                    .filters(ApplicationSetSpecGeneratorScmProviderFilterArgs.builder()
                        .branchMatch("string")
                        .labelMatch("string")
                        .pathsDoNotExists("string")
                        .pathsExists("string")
                        .repositoryMatch("string")
                        .build())
                    .gitea(ApplicationSetSpecGeneratorScmProviderGiteaArgs.builder()
                        .owner("string")
                        .allBranches(false)
                        .api("string")
                        .insecure(false)
                        .tokenRef(ApplicationSetSpecGeneratorScmProviderGiteaTokenRefArgs.builder()
                            .key("string")
                            .secretName("string")
                            .build())
                        .build())
                    .github(ApplicationSetSpecGeneratorScmProviderGithubArgs.builder()
                        .organization("string")
                        .allBranches(false)
                        .api("string")
                        .appSecretName("string")
                        .tokenRef(ApplicationSetSpecGeneratorScmProviderGithubTokenRefArgs.builder()
                            .key("string")
                            .secretName("string")
                            .build())
                        .build())
                    .gitlab(ApplicationSetSpecGeneratorScmProviderGitlabArgs.builder()
                        .group("string")
                        .allBranches(false)
                        .api("string")
                        .includeSubgroups(false)
                        .tokenRef(ApplicationSetSpecGeneratorScmProviderGitlabTokenRefArgs.builder()
                            .key("string")
                            .secretName("string")
                            .build())
                        .build())
                    .requeueAfterSeconds("string")
                    .template(ApplicationSetSpecGeneratorScmProviderTemplateArgs.builder()
                        .metadata(ApplicationSetSpecGeneratorScmProviderTemplateMetadataArgs.builder()
                            .annotations(Map.of("string", "string"))
                            .finalizers("string")
                            .labels(Map.of("string", "string"))
                            .name("string")
                            .namespace("string")
                            .build())
                        .spec(ApplicationSetSpecGeneratorScmProviderTemplateSpecArgs.builder()
                            .destination(ApplicationSetSpecGeneratorScmProviderTemplateSpecDestinationArgs.builder()
                                .name("string")
                                .namespace("string")
                                .server("string")
                                .build())
                            .ignoreDifferences(ApplicationSetSpecGeneratorScmProviderTemplateSpecIgnoreDifferenceArgs.builder()
                                .group("string")
                                .jqPathExpressions("string")
                                .jsonPointers("string")
                                .kind("string")
                                .managedFieldsManagers("string")
                                .name("string")
                                .namespace("string")
                                .build())
                            .infos(ApplicationSetSpecGeneratorScmProviderTemplateSpecInfoArgs.builder()
                                .name("string")
                                .value("string")
                                .build())
                            .project("string")
                            .revisionHistoryLimit(0)
                            .sources(ApplicationSetSpecGeneratorScmProviderTemplateSpecSourceArgs.builder()
                                .chart("string")
                                .directory(ApplicationSetSpecGeneratorScmProviderTemplateSpecSourceDirectoryArgs.builder()
                                    .exclude("string")
                                    .include("string")
                                    .jsonnet(ApplicationSetSpecGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetArgs.builder()
                                        .extVars(ApplicationSetSpecGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetExtVarArgs.builder()
                                            .code(false)
                                            .name("string")
                                            .value("string")
                                            .build())
                                        .libs("string")
                                        .tlas(ApplicationSetSpecGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetTlaArgs.builder()
                                            .code(false)
                                            .name("string")
                                            .value("string")
                                            .build())
                                        .build())
                                    .recurse(false)
                                    .build())
                                .helm(ApplicationSetSpecGeneratorScmProviderTemplateSpecSourceHelmArgs.builder()
                                    .fileParameters(ApplicationSetSpecGeneratorScmProviderTemplateSpecSourceHelmFileParameterArgs.builder()
                                        .name("string")
                                        .path("string")
                                        .build())
                                    .ignoreMissingValueFiles(false)
                                    .parameters(ApplicationSetSpecGeneratorScmProviderTemplateSpecSourceHelmParameterArgs.builder()
                                        .forceString(false)
                                        .name("string")
                                        .value("string")
                                        .build())
                                    .passCredentials(false)
                                    .releaseName("string")
                                    .skipCrds(false)
                                    .valueFiles("string")
                                    .values("string")
                                    .version("string")
                                    .build())
                                .kustomize(ApplicationSetSpecGeneratorScmProviderTemplateSpecSourceKustomizeArgs.builder()
                                    .commonAnnotations(Map.of("string", "string"))
                                    .commonLabels(Map.of("string", "string"))
                                    .images("string")
                                    .namePrefix("string")
                                    .nameSuffix("string")
                                    .patches(ApplicationSetSpecGeneratorScmProviderTemplateSpecSourceKustomizePatchArgs.builder()
                                        .target(ApplicationSetSpecGeneratorScmProviderTemplateSpecSourceKustomizePatchTargetArgs.builder()
                                            .annotationSelector("string")
                                            .group("string")
                                            .kind("string")
                                            .labelSelector("string")
                                            .name("string")
                                            .namespace("string")
                                            .version("string")
                                            .build())
                                        .options(Map.of("string", false))
                                        .patch("string")
                                        .path("string")
                                        .build())
                                    .version("string")
                                    .build())
                                .path("string")
                                .plugin(ApplicationSetSpecGeneratorScmProviderTemplateSpecSourcePluginArgs.builder()
                                    .envs(ApplicationSetSpecGeneratorScmProviderTemplateSpecSourcePluginEnvArgs.builder()
                                        .name("string")
                                        .value("string")
                                        .build())
                                    .name("string")
                                    .build())
                                .ref("string")
                                .repoUrl("string")
                                .targetRevision("string")
                                .build())
                            .syncPolicy(ApplicationSetSpecGeneratorScmProviderTemplateSpecSyncPolicyArgs.builder()
                                .automated(ApplicationSetSpecGeneratorScmProviderTemplateSpecSyncPolicyAutomatedArgs.builder()
                                    .allowEmpty(false)
                                    .prune(false)
                                    .selfHeal(false)
                                    .build())
                                .managedNamespaceMetadata(ApplicationSetSpecGeneratorScmProviderTemplateSpecSyncPolicyManagedNamespaceMetadataArgs.builder()
                                    .annotations(Map.of("string", "string"))
                                    .labels(Map.of("string", "string"))
                                    .build())
                                .retry(ApplicationSetSpecGeneratorScmProviderTemplateSpecSyncPolicyRetryArgs.builder()
                                    .backoff(ApplicationSetSpecGeneratorScmProviderTemplateSpecSyncPolicyRetryBackoffArgs.builder()
                                        .duration("string")
                                        .factor("string")
                                        .maxDuration("string")
                                        .build())
                                    .limit("string")
                                    .build())
                                .syncOptions("string")
                                .build())
                            .build())
                        .build())
                    .build())
                .selector(ApplicationSetSpecGeneratorSelectorArgs.builder()
                    .matchExpressions(ApplicationSetSpecGeneratorSelectorMatchExpressionArgs.builder()
                        .key("string")
                        .operator("string")
                        .values("string")
                        .build())
                    .matchLabels(Map.of("string", "string"))
                    .build())
                .build())
            .template(ApplicationSetSpecTemplateArgs.builder()
                .metadata(ApplicationSetSpecTemplateMetadataArgs.builder()
                    .name("string")
                    .annotations(Map.of("string", "string"))
                    .finalizers("string")
                    .labels(Map.of("string", "string"))
                    .namespace("string")
                    .build())
                .spec(ApplicationSetSpecTemplateSpecArgs.builder()
                    .destination(ApplicationSetSpecTemplateSpecDestinationArgs.builder()
                        .name("string")
                        .namespace("string")
                        .server("string")
                        .build())
                    .sources(ApplicationSetSpecTemplateSpecSourceArgs.builder()
                        .repoUrl("string")
                        .chart("string")
                        .directory(ApplicationSetSpecTemplateSpecSourceDirectoryArgs.builder()
                            .exclude("string")
                            .include("string")
                            .jsonnet(ApplicationSetSpecTemplateSpecSourceDirectoryJsonnetArgs.builder()
                                .extVars(ApplicationSetSpecTemplateSpecSourceDirectoryJsonnetExtVarArgs.builder()
                                    .code(false)
                                    .name("string")
                                    .value("string")
                                    .build())
                                .libs("string")
                                .tlas(ApplicationSetSpecTemplateSpecSourceDirectoryJsonnetTlaArgs.builder()
                                    .code(false)
                                    .name("string")
                                    .value("string")
                                    .build())
                                .build())
                            .recurse(false)
                            .build())
                        .helm(ApplicationSetSpecTemplateSpecSourceHelmArgs.builder()
                            .fileParameters(ApplicationSetSpecTemplateSpecSourceHelmFileParameterArgs.builder()
                                .name("string")
                                .path("string")
                                .build())
                            .ignoreMissingValueFiles(false)
                            .parameters(ApplicationSetSpecTemplateSpecSourceHelmParameterArgs.builder()
                                .forceString(false)
                                .name("string")
                                .value("string")
                                .build())
                            .passCredentials(false)
                            .releaseName("string")
                            .skipCrds(false)
                            .valueFiles("string")
                            .values("string")
                            .version("string")
                            .build())
                        .kustomize(ApplicationSetSpecTemplateSpecSourceKustomizeArgs.builder()
                            .commonAnnotations(Map.of("string", "string"))
                            .commonLabels(Map.of("string", "string"))
                            .images("string")
                            .namePrefix("string")
                            .nameSuffix("string")
                            .patches(ApplicationSetSpecTemplateSpecSourceKustomizePatchArgs.builder()
                                .target(ApplicationSetSpecTemplateSpecSourceKustomizePatchTargetArgs.builder()
                                    .annotationSelector("string")
                                    .group("string")
                                    .kind("string")
                                    .labelSelector("string")
                                    .name("string")
                                    .namespace("string")
                                    .version("string")
                                    .build())
                                .options(Map.of("string", false))
                                .patch("string")
                                .path("string")
                                .build())
                            .version("string")
                            .build())
                        .path("string")
                        .plugin(ApplicationSetSpecTemplateSpecSourcePluginArgs.builder()
                            .envs(ApplicationSetSpecTemplateSpecSourcePluginEnvArgs.builder()
                                .name("string")
                                .value("string")
                                .build())
                            .name("string")
                            .build())
                        .ref("string")
                        .targetRevision("string")
                        .build())
                    .ignoreDifferences(ApplicationSetSpecTemplateSpecIgnoreDifferenceArgs.builder()
                        .group("string")
                        .jqPathExpressions("string")
                        .jsonPointers("string")
                        .kind("string")
                        .managedFieldsManagers("string")
                        .name("string")
                        .namespace("string")
                        .build())
                    .infos(ApplicationSetSpecTemplateSpecInfoArgs.builder()
                        .name("string")
                        .value("string")
                        .build())
                    .project("string")
                    .revisionHistoryLimit(0)
                    .syncPolicy(ApplicationSetSpecTemplateSpecSyncPolicyArgs.builder()
                        .automated(ApplicationSetSpecTemplateSpecSyncPolicyAutomatedArgs.builder()
                            .allowEmpty(false)
                            .prune(false)
                            .selfHeal(false)
                            .build())
                        .managedNamespaceMetadata(ApplicationSetSpecTemplateSpecSyncPolicyManagedNamespaceMetadataArgs.builder()
                            .annotations(Map.of("string", "string"))
                            .labels(Map.of("string", "string"))
                            .build())
                        .retry(ApplicationSetSpecTemplateSpecSyncPolicyRetryArgs.builder()
                            .backoff(ApplicationSetSpecTemplateSpecSyncPolicyRetryBackoffArgs.builder()
                                .duration("string")
                                .factor("string")
                                .maxDuration("string")
                                .build())
                            .limit("string")
                            .build())
                        .syncOptions("string")
                        .build())
                    .build())
                .build())
            .goTemplate(false)
            .goTemplateOptions("string")
            .ignoreApplicationDifferences(ApplicationSetSpecIgnoreApplicationDifferenceArgs.builder()
                .jqPathExpressions("string")
                .jsonPointers("string")
                .name("string")
                .build())
            .strategy(ApplicationSetSpecStrategyArgs.builder()
                .type("string")
                .rollingSyncs(ApplicationSetSpecStrategyRollingSyncArgs.builder()
                    .steps(ApplicationSetSpecStrategyRollingSyncStepArgs.builder()
                        .matchExpressions(ApplicationSetSpecStrategyRollingSyncStepMatchExpressionArgs.builder()
                            .key("string")
                            .operator("string")
                            .values("string")
                            .build())
                        .maxUpdate("string")
                        .build())
                    .build())
                .build())
            .syncPolicy(ApplicationSetSpecSyncPolicyArgs.builder()
                .applicationsSync("string")
                .preserveResourcesOnDeletion(false)
                .build())
            .templatePatch("string")
            .build())
        .build());
    
    application_set_resource = argocd.ApplicationSet("applicationSetResource",
        metadata={
            "annotations": {
                "string": "string",
            },
            "generation": 0,
            "labels": {
                "string": "string",
            },
            "name": "string",
            "namespace": "string",
            "resource_version": "string",
            "uid": "string",
        },
        spec={
            "generators": [{
                "cluster_decision_resources": [{
                    "config_map_ref": "string",
                    "label_selector": {
                        "match_expressions": [{
                            "key": "string",
                            "operator": "string",
                            "values": ["string"],
                        }],
                        "match_labels": {
                            "string": "string",
                        },
                    },
                    "name": "string",
                    "requeue_after_seconds": "string",
                    "template": {
                        "metadata": {
                            "annotations": {
                                "string": "string",
                            },
                            "finalizers": ["string"],
                            "labels": {
                                "string": "string",
                            },
                            "name": "string",
                            "namespace": "string",
                        },
                        "spec": {
                            "destination": {
                                "name": "string",
                                "namespace": "string",
                                "server": "string",
                            },
                            "ignore_differences": [{
                                "group": "string",
                                "jq_path_expressions": ["string"],
                                "json_pointers": ["string"],
                                "kind": "string",
                                "managed_fields_managers": ["string"],
                                "name": "string",
                                "namespace": "string",
                            }],
                            "infos": [{
                                "name": "string",
                                "value": "string",
                            }],
                            "project": "string",
                            "revision_history_limit": 0,
                            "sources": [{
                                "chart": "string",
                                "directory": {
                                    "exclude": "string",
                                    "include": "string",
                                    "jsonnet": {
                                        "ext_vars": [{
                                            "code": False,
                                            "name": "string",
                                            "value": "string",
                                        }],
                                        "libs": ["string"],
                                        "tlas": [{
                                            "code": False,
                                            "name": "string",
                                            "value": "string",
                                        }],
                                    },
                                    "recurse": False,
                                },
                                "helm": {
                                    "file_parameters": [{
                                        "name": "string",
                                        "path": "string",
                                    }],
                                    "ignore_missing_value_files": False,
                                    "parameters": [{
                                        "force_string": False,
                                        "name": "string",
                                        "value": "string",
                                    }],
                                    "pass_credentials": False,
                                    "release_name": "string",
                                    "skip_crds": False,
                                    "value_files": ["string"],
                                    "values": "string",
                                    "version": "string",
                                },
                                "kustomize": {
                                    "common_annotations": {
                                        "string": "string",
                                    },
                                    "common_labels": {
                                        "string": "string",
                                    },
                                    "images": ["string"],
                                    "name_prefix": "string",
                                    "name_suffix": "string",
                                    "patches": [{
                                        "target": {
                                            "annotation_selector": "string",
                                            "group": "string",
                                            "kind": "string",
                                            "label_selector": "string",
                                            "name": "string",
                                            "namespace": "string",
                                            "version": "string",
                                        },
                                        "options": {
                                            "string": False,
                                        },
                                        "patch": "string",
                                        "path": "string",
                                    }],
                                    "version": "string",
                                },
                                "path": "string",
                                "plugin": {
                                    "envs": [{
                                        "name": "string",
                                        "value": "string",
                                    }],
                                    "name": "string",
                                },
                                "ref": "string",
                                "repo_url": "string",
                                "target_revision": "string",
                            }],
                            "sync_policy": {
                                "automated": {
                                    "allow_empty": False,
                                    "prune": False,
                                    "self_heal": False,
                                },
                                "managed_namespace_metadata": {
                                    "annotations": {
                                        "string": "string",
                                    },
                                    "labels": {
                                        "string": "string",
                                    },
                                },
                                "retry": {
                                    "backoff": {
                                        "duration": "string",
                                        "factor": "string",
                                        "max_duration": "string",
                                    },
                                    "limit": "string",
                                },
                                "sync_options": ["string"],
                            },
                        },
                    },
                    "values": {
                        "string": "string",
                    },
                }],
                "clusters": [{
                    "enabled": False,
                    "selector": {
                        "match_expressions": [{
                            "key": "string",
                            "operator": "string",
                            "values": ["string"],
                        }],
                        "match_labels": {
                            "string": "string",
                        },
                    },
                    "template": {
                        "metadata": {
                            "annotations": {
                                "string": "string",
                            },
                            "finalizers": ["string"],
                            "labels": {
                                "string": "string",
                            },
                            "name": "string",
                            "namespace": "string",
                        },
                        "spec": {
                            "destination": {
                                "name": "string",
                                "namespace": "string",
                                "server": "string",
                            },
                            "ignore_differences": [{
                                "group": "string",
                                "jq_path_expressions": ["string"],
                                "json_pointers": ["string"],
                                "kind": "string",
                                "managed_fields_managers": ["string"],
                                "name": "string",
                                "namespace": "string",
                            }],
                            "infos": [{
                                "name": "string",
                                "value": "string",
                            }],
                            "project": "string",
                            "revision_history_limit": 0,
                            "sources": [{
                                "chart": "string",
                                "directory": {
                                    "exclude": "string",
                                    "include": "string",
                                    "jsonnet": {
                                        "ext_vars": [{
                                            "code": False,
                                            "name": "string",
                                            "value": "string",
                                        }],
                                        "libs": ["string"],
                                        "tlas": [{
                                            "code": False,
                                            "name": "string",
                                            "value": "string",
                                        }],
                                    },
                                    "recurse": False,
                                },
                                "helm": {
                                    "file_parameters": [{
                                        "name": "string",
                                        "path": "string",
                                    }],
                                    "ignore_missing_value_files": False,
                                    "parameters": [{
                                        "force_string": False,
                                        "name": "string",
                                        "value": "string",
                                    }],
                                    "pass_credentials": False,
                                    "release_name": "string",
                                    "skip_crds": False,
                                    "value_files": ["string"],
                                    "values": "string",
                                    "version": "string",
                                },
                                "kustomize": {
                                    "common_annotations": {
                                        "string": "string",
                                    },
                                    "common_labels": {
                                        "string": "string",
                                    },
                                    "images": ["string"],
                                    "name_prefix": "string",
                                    "name_suffix": "string",
                                    "patches": [{
                                        "target": {
                                            "annotation_selector": "string",
                                            "group": "string",
                                            "kind": "string",
                                            "label_selector": "string",
                                            "name": "string",
                                            "namespace": "string",
                                            "version": "string",
                                        },
                                        "options": {
                                            "string": False,
                                        },
                                        "patch": "string",
                                        "path": "string",
                                    }],
                                    "version": "string",
                                },
                                "path": "string",
                                "plugin": {
                                    "envs": [{
                                        "name": "string",
                                        "value": "string",
                                    }],
                                    "name": "string",
                                },
                                "ref": "string",
                                "repo_url": "string",
                                "target_revision": "string",
                            }],
                            "sync_policy": {
                                "automated": {
                                    "allow_empty": False,
                                    "prune": False,
                                    "self_heal": False,
                                },
                                "managed_namespace_metadata": {
                                    "annotations": {
                                        "string": "string",
                                    },
                                    "labels": {
                                        "string": "string",
                                    },
                                },
                                "retry": {
                                    "backoff": {
                                        "duration": "string",
                                        "factor": "string",
                                        "max_duration": "string",
                                    },
                                    "limit": "string",
                                },
                                "sync_options": ["string"],
                            },
                        },
                    },
                    "values": {
                        "string": "string",
                    },
                }],
                "gits": [{
                    "repo_url": "string",
                    "directories": [{
                        "path": "string",
                        "exclude": False,
                    }],
                    "files": [{
                        "path": "string",
                    }],
                    "path_param_prefix": "string",
                    "revision": "string",
                    "template": {
                        "metadata": {
                            "annotations": {
                                "string": "string",
                            },
                            "finalizers": ["string"],
                            "labels": {
                                "string": "string",
                            },
                            "name": "string",
                            "namespace": "string",
                        },
                        "spec": {
                            "destination": {
                                "name": "string",
                                "namespace": "string",
                                "server": "string",
                            },
                            "ignore_differences": [{
                                "group": "string",
                                "jq_path_expressions": ["string"],
                                "json_pointers": ["string"],
                                "kind": "string",
                                "managed_fields_managers": ["string"],
                                "name": "string",
                                "namespace": "string",
                            }],
                            "infos": [{
                                "name": "string",
                                "value": "string",
                            }],
                            "project": "string",
                            "revision_history_limit": 0,
                            "sources": [{
                                "chart": "string",
                                "directory": {
                                    "exclude": "string",
                                    "include": "string",
                                    "jsonnet": {
                                        "ext_vars": [{
                                            "code": False,
                                            "name": "string",
                                            "value": "string",
                                        }],
                                        "libs": ["string"],
                                        "tlas": [{
                                            "code": False,
                                            "name": "string",
                                            "value": "string",
                                        }],
                                    },
                                    "recurse": False,
                                },
                                "helm": {
                                    "file_parameters": [{
                                        "name": "string",
                                        "path": "string",
                                    }],
                                    "ignore_missing_value_files": False,
                                    "parameters": [{
                                        "force_string": False,
                                        "name": "string",
                                        "value": "string",
                                    }],
                                    "pass_credentials": False,
                                    "release_name": "string",
                                    "skip_crds": False,
                                    "value_files": ["string"],
                                    "values": "string",
                                    "version": "string",
                                },
                                "kustomize": {
                                    "common_annotations": {
                                        "string": "string",
                                    },
                                    "common_labels": {
                                        "string": "string",
                                    },
                                    "images": ["string"],
                                    "name_prefix": "string",
                                    "name_suffix": "string",
                                    "patches": [{
                                        "target": {
                                            "annotation_selector": "string",
                                            "group": "string",
                                            "kind": "string",
                                            "label_selector": "string",
                                            "name": "string",
                                            "namespace": "string",
                                            "version": "string",
                                        },
                                        "options": {
                                            "string": False,
                                        },
                                        "patch": "string",
                                        "path": "string",
                                    }],
                                    "version": "string",
                                },
                                "path": "string",
                                "plugin": {
                                    "envs": [{
                                        "name": "string",
                                        "value": "string",
                                    }],
                                    "name": "string",
                                },
                                "ref": "string",
                                "repo_url": "string",
                                "target_revision": "string",
                            }],
                            "sync_policy": {
                                "automated": {
                                    "allow_empty": False,
                                    "prune": False,
                                    "self_heal": False,
                                },
                                "managed_namespace_metadata": {
                                    "annotations": {
                                        "string": "string",
                                    },
                                    "labels": {
                                        "string": "string",
                                    },
                                },
                                "retry": {
                                    "backoff": {
                                        "duration": "string",
                                        "factor": "string",
                                        "max_duration": "string",
                                    },
                                    "limit": "string",
                                },
                                "sync_options": ["string"],
                            },
                        },
                    },
                    "values": {
                        "string": "string",
                    },
                }],
                "lists": [{
                    "elements": [{
                        "string": "string",
                    }],
                    "template": {
                        "metadata": {
                            "annotations": {
                                "string": "string",
                            },
                            "finalizers": ["string"],
                            "labels": {
                                "string": "string",
                            },
                            "name": "string",
                            "namespace": "string",
                        },
                        "spec": {
                            "destination": {
                                "name": "string",
                                "namespace": "string",
                                "server": "string",
                            },
                            "ignore_differences": [{
                                "group": "string",
                                "jq_path_expressions": ["string"],
                                "json_pointers": ["string"],
                                "kind": "string",
                                "managed_fields_managers": ["string"],
                                "name": "string",
                                "namespace": "string",
                            }],
                            "infos": [{
                                "name": "string",
                                "value": "string",
                            }],
                            "project": "string",
                            "revision_history_limit": 0,
                            "sources": [{
                                "chart": "string",
                                "directory": {
                                    "exclude": "string",
                                    "include": "string",
                                    "jsonnet": {
                                        "ext_vars": [{
                                            "code": False,
                                            "name": "string",
                                            "value": "string",
                                        }],
                                        "libs": ["string"],
                                        "tlas": [{
                                            "code": False,
                                            "name": "string",
                                            "value": "string",
                                        }],
                                    },
                                    "recurse": False,
                                },
                                "helm": {
                                    "file_parameters": [{
                                        "name": "string",
                                        "path": "string",
                                    }],
                                    "ignore_missing_value_files": False,
                                    "parameters": [{
                                        "force_string": False,
                                        "name": "string",
                                        "value": "string",
                                    }],
                                    "pass_credentials": False,
                                    "release_name": "string",
                                    "skip_crds": False,
                                    "value_files": ["string"],
                                    "values": "string",
                                    "version": "string",
                                },
                                "kustomize": {
                                    "common_annotations": {
                                        "string": "string",
                                    },
                                    "common_labels": {
                                        "string": "string",
                                    },
                                    "images": ["string"],
                                    "name_prefix": "string",
                                    "name_suffix": "string",
                                    "patches": [{
                                        "target": {
                                            "annotation_selector": "string",
                                            "group": "string",
                                            "kind": "string",
                                            "label_selector": "string",
                                            "name": "string",
                                            "namespace": "string",
                                            "version": "string",
                                        },
                                        "options": {
                                            "string": False,
                                        },
                                        "patch": "string",
                                        "path": "string",
                                    }],
                                    "version": "string",
                                },
                                "path": "string",
                                "plugin": {
                                    "envs": [{
                                        "name": "string",
                                        "value": "string",
                                    }],
                                    "name": "string",
                                },
                                "ref": "string",
                                "repo_url": "string",
                                "target_revision": "string",
                            }],
                            "sync_policy": {
                                "automated": {
                                    "allow_empty": False,
                                    "prune": False,
                                    "self_heal": False,
                                },
                                "managed_namespace_metadata": {
                                    "annotations": {
                                        "string": "string",
                                    },
                                    "labels": {
                                        "string": "string",
                                    },
                                },
                                "retry": {
                                    "backoff": {
                                        "duration": "string",
                                        "factor": "string",
                                        "max_duration": "string",
                                    },
                                    "limit": "string",
                                },
                                "sync_options": ["string"],
                            },
                        },
                    },
                }],
                "matrices": [{
                    "generators": [{
                        "cluster_decision_resources": [{
                            "config_map_ref": "string",
                            "label_selector": {
                                "match_expressions": [{
                                    "key": "string",
                                    "operator": "string",
                                    "values": ["string"],
                                }],
                                "match_labels": {
                                    "string": "string",
                                },
                            },
                            "name": "string",
                            "requeue_after_seconds": "string",
                            "template": {
                                "metadata": {
                                    "annotations": {
                                        "string": "string",
                                    },
                                    "finalizers": ["string"],
                                    "labels": {
                                        "string": "string",
                                    },
                                    "name": "string",
                                    "namespace": "string",
                                },
                                "spec": {
                                    "destination": {
                                        "name": "string",
                                        "namespace": "string",
                                        "server": "string",
                                    },
                                    "ignore_differences": [{
                                        "group": "string",
                                        "jq_path_expressions": ["string"],
                                        "json_pointers": ["string"],
                                        "kind": "string",
                                        "managed_fields_managers": ["string"],
                                        "name": "string",
                                        "namespace": "string",
                                    }],
                                    "infos": [{
                                        "name": "string",
                                        "value": "string",
                                    }],
                                    "project": "string",
                                    "revision_history_limit": 0,
                                    "sources": [{
                                        "chart": "string",
                                        "directory": {
                                            "exclude": "string",
                                            "include": "string",
                                            "jsonnet": {
                                                "ext_vars": [{
                                                    "code": False,
                                                    "name": "string",
                                                    "value": "string",
                                                }],
                                                "libs": ["string"],
                                                "tlas": [{
                                                    "code": False,
                                                    "name": "string",
                                                    "value": "string",
                                                }],
                                            },
                                            "recurse": False,
                                        },
                                        "helm": {
                                            "file_parameters": [{
                                                "name": "string",
                                                "path": "string",
                                            }],
                                            "ignore_missing_value_files": False,
                                            "parameters": [{
                                                "force_string": False,
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "pass_credentials": False,
                                            "release_name": "string",
                                            "skip_crds": False,
                                            "value_files": ["string"],
                                            "values": "string",
                                            "version": "string",
                                        },
                                        "kustomize": {
                                            "common_annotations": {
                                                "string": "string",
                                            },
                                            "common_labels": {
                                                "string": "string",
                                            },
                                            "images": ["string"],
                                            "name_prefix": "string",
                                            "name_suffix": "string",
                                            "patches": [{
                                                "target": {
                                                    "annotation_selector": "string",
                                                    "group": "string",
                                                    "kind": "string",
                                                    "label_selector": "string",
                                                    "name": "string",
                                                    "namespace": "string",
                                                    "version": "string",
                                                },
                                                "options": {
                                                    "string": False,
                                                },
                                                "patch": "string",
                                                "path": "string",
                                            }],
                                            "version": "string",
                                        },
                                        "path": "string",
                                        "plugin": {
                                            "envs": [{
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "name": "string",
                                        },
                                        "ref": "string",
                                        "repo_url": "string",
                                        "target_revision": "string",
                                    }],
                                    "sync_policy": {
                                        "automated": {
                                            "allow_empty": False,
                                            "prune": False,
                                            "self_heal": False,
                                        },
                                        "managed_namespace_metadata": {
                                            "annotations": {
                                                "string": "string",
                                            },
                                            "labels": {
                                                "string": "string",
                                            },
                                        },
                                        "retry": {
                                            "backoff": {
                                                "duration": "string",
                                                "factor": "string",
                                                "max_duration": "string",
                                            },
                                            "limit": "string",
                                        },
                                        "sync_options": ["string"],
                                    },
                                },
                            },
                            "values": {
                                "string": "string",
                            },
                        }],
                        "clusters": [{
                            "enabled": False,
                            "selector": {
                                "match_expressions": [{
                                    "key": "string",
                                    "operator": "string",
                                    "values": ["string"],
                                }],
                                "match_labels": {
                                    "string": "string",
                                },
                            },
                            "template": {
                                "metadata": {
                                    "annotations": {
                                        "string": "string",
                                    },
                                    "finalizers": ["string"],
                                    "labels": {
                                        "string": "string",
                                    },
                                    "name": "string",
                                    "namespace": "string",
                                },
                                "spec": {
                                    "destination": {
                                        "name": "string",
                                        "namespace": "string",
                                        "server": "string",
                                    },
                                    "ignore_differences": [{
                                        "group": "string",
                                        "jq_path_expressions": ["string"],
                                        "json_pointers": ["string"],
                                        "kind": "string",
                                        "managed_fields_managers": ["string"],
                                        "name": "string",
                                        "namespace": "string",
                                    }],
                                    "infos": [{
                                        "name": "string",
                                        "value": "string",
                                    }],
                                    "project": "string",
                                    "revision_history_limit": 0,
                                    "sources": [{
                                        "chart": "string",
                                        "directory": {
                                            "exclude": "string",
                                            "include": "string",
                                            "jsonnet": {
                                                "ext_vars": [{
                                                    "code": False,
                                                    "name": "string",
                                                    "value": "string",
                                                }],
                                                "libs": ["string"],
                                                "tlas": [{
                                                    "code": False,
                                                    "name": "string",
                                                    "value": "string",
                                                }],
                                            },
                                            "recurse": False,
                                        },
                                        "helm": {
                                            "file_parameters": [{
                                                "name": "string",
                                                "path": "string",
                                            }],
                                            "ignore_missing_value_files": False,
                                            "parameters": [{
                                                "force_string": False,
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "pass_credentials": False,
                                            "release_name": "string",
                                            "skip_crds": False,
                                            "value_files": ["string"],
                                            "values": "string",
                                            "version": "string",
                                        },
                                        "kustomize": {
                                            "common_annotations": {
                                                "string": "string",
                                            },
                                            "common_labels": {
                                                "string": "string",
                                            },
                                            "images": ["string"],
                                            "name_prefix": "string",
                                            "name_suffix": "string",
                                            "patches": [{
                                                "target": {
                                                    "annotation_selector": "string",
                                                    "group": "string",
                                                    "kind": "string",
                                                    "label_selector": "string",
                                                    "name": "string",
                                                    "namespace": "string",
                                                    "version": "string",
                                                },
                                                "options": {
                                                    "string": False,
                                                },
                                                "patch": "string",
                                                "path": "string",
                                            }],
                                            "version": "string",
                                        },
                                        "path": "string",
                                        "plugin": {
                                            "envs": [{
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "name": "string",
                                        },
                                        "ref": "string",
                                        "repo_url": "string",
                                        "target_revision": "string",
                                    }],
                                    "sync_policy": {
                                        "automated": {
                                            "allow_empty": False,
                                            "prune": False,
                                            "self_heal": False,
                                        },
                                        "managed_namespace_metadata": {
                                            "annotations": {
                                                "string": "string",
                                            },
                                            "labels": {
                                                "string": "string",
                                            },
                                        },
                                        "retry": {
                                            "backoff": {
                                                "duration": "string",
                                                "factor": "string",
                                                "max_duration": "string",
                                            },
                                            "limit": "string",
                                        },
                                        "sync_options": ["string"],
                                    },
                                },
                            },
                            "values": {
                                "string": "string",
                            },
                        }],
                        "gits": [{
                            "repo_url": "string",
                            "directories": [{
                                "path": "string",
                                "exclude": False,
                            }],
                            "files": [{
                                "path": "string",
                            }],
                            "path_param_prefix": "string",
                            "revision": "string",
                            "template": {
                                "metadata": {
                                    "annotations": {
                                        "string": "string",
                                    },
                                    "finalizers": ["string"],
                                    "labels": {
                                        "string": "string",
                                    },
                                    "name": "string",
                                    "namespace": "string",
                                },
                                "spec": {
                                    "destination": {
                                        "name": "string",
                                        "namespace": "string",
                                        "server": "string",
                                    },
                                    "ignore_differences": [{
                                        "group": "string",
                                        "jq_path_expressions": ["string"],
                                        "json_pointers": ["string"],
                                        "kind": "string",
                                        "managed_fields_managers": ["string"],
                                        "name": "string",
                                        "namespace": "string",
                                    }],
                                    "infos": [{
                                        "name": "string",
                                        "value": "string",
                                    }],
                                    "project": "string",
                                    "revision_history_limit": 0,
                                    "sources": [{
                                        "chart": "string",
                                        "directory": {
                                            "exclude": "string",
                                            "include": "string",
                                            "jsonnet": {
                                                "ext_vars": [{
                                                    "code": False,
                                                    "name": "string",
                                                    "value": "string",
                                                }],
                                                "libs": ["string"],
                                                "tlas": [{
                                                    "code": False,
                                                    "name": "string",
                                                    "value": "string",
                                                }],
                                            },
                                            "recurse": False,
                                        },
                                        "helm": {
                                            "file_parameters": [{
                                                "name": "string",
                                                "path": "string",
                                            }],
                                            "ignore_missing_value_files": False,
                                            "parameters": [{
                                                "force_string": False,
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "pass_credentials": False,
                                            "release_name": "string",
                                            "skip_crds": False,
                                            "value_files": ["string"],
                                            "values": "string",
                                            "version": "string",
                                        },
                                        "kustomize": {
                                            "common_annotations": {
                                                "string": "string",
                                            },
                                            "common_labels": {
                                                "string": "string",
                                            },
                                            "images": ["string"],
                                            "name_prefix": "string",
                                            "name_suffix": "string",
                                            "patches": [{
                                                "target": {
                                                    "annotation_selector": "string",
                                                    "group": "string",
                                                    "kind": "string",
                                                    "label_selector": "string",
                                                    "name": "string",
                                                    "namespace": "string",
                                                    "version": "string",
                                                },
                                                "options": {
                                                    "string": False,
                                                },
                                                "patch": "string",
                                                "path": "string",
                                            }],
                                            "version": "string",
                                        },
                                        "path": "string",
                                        "plugin": {
                                            "envs": [{
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "name": "string",
                                        },
                                        "ref": "string",
                                        "repo_url": "string",
                                        "target_revision": "string",
                                    }],
                                    "sync_policy": {
                                        "automated": {
                                            "allow_empty": False,
                                            "prune": False,
                                            "self_heal": False,
                                        },
                                        "managed_namespace_metadata": {
                                            "annotations": {
                                                "string": "string",
                                            },
                                            "labels": {
                                                "string": "string",
                                            },
                                        },
                                        "retry": {
                                            "backoff": {
                                                "duration": "string",
                                                "factor": "string",
                                                "max_duration": "string",
                                            },
                                            "limit": "string",
                                        },
                                        "sync_options": ["string"],
                                    },
                                },
                            },
                            "values": {
                                "string": "string",
                            },
                        }],
                        "lists": [{
                            "elements": [{
                                "string": "string",
                            }],
                            "template": {
                                "metadata": {
                                    "annotations": {
                                        "string": "string",
                                    },
                                    "finalizers": ["string"],
                                    "labels": {
                                        "string": "string",
                                    },
                                    "name": "string",
                                    "namespace": "string",
                                },
                                "spec": {
                                    "destination": {
                                        "name": "string",
                                        "namespace": "string",
                                        "server": "string",
                                    },
                                    "ignore_differences": [{
                                        "group": "string",
                                        "jq_path_expressions": ["string"],
                                        "json_pointers": ["string"],
                                        "kind": "string",
                                        "managed_fields_managers": ["string"],
                                        "name": "string",
                                        "namespace": "string",
                                    }],
                                    "infos": [{
                                        "name": "string",
                                        "value": "string",
                                    }],
                                    "project": "string",
                                    "revision_history_limit": 0,
                                    "sources": [{
                                        "chart": "string",
                                        "directory": {
                                            "exclude": "string",
                                            "include": "string",
                                            "jsonnet": {
                                                "ext_vars": [{
                                                    "code": False,
                                                    "name": "string",
                                                    "value": "string",
                                                }],
                                                "libs": ["string"],
                                                "tlas": [{
                                                    "code": False,
                                                    "name": "string",
                                                    "value": "string",
                                                }],
                                            },
                                            "recurse": False,
                                        },
                                        "helm": {
                                            "file_parameters": [{
                                                "name": "string",
                                                "path": "string",
                                            }],
                                            "ignore_missing_value_files": False,
                                            "parameters": [{
                                                "force_string": False,
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "pass_credentials": False,
                                            "release_name": "string",
                                            "skip_crds": False,
                                            "value_files": ["string"],
                                            "values": "string",
                                            "version": "string",
                                        },
                                        "kustomize": {
                                            "common_annotations": {
                                                "string": "string",
                                            },
                                            "common_labels": {
                                                "string": "string",
                                            },
                                            "images": ["string"],
                                            "name_prefix": "string",
                                            "name_suffix": "string",
                                            "patches": [{
                                                "target": {
                                                    "annotation_selector": "string",
                                                    "group": "string",
                                                    "kind": "string",
                                                    "label_selector": "string",
                                                    "name": "string",
                                                    "namespace": "string",
                                                    "version": "string",
                                                },
                                                "options": {
                                                    "string": False,
                                                },
                                                "patch": "string",
                                                "path": "string",
                                            }],
                                            "version": "string",
                                        },
                                        "path": "string",
                                        "plugin": {
                                            "envs": [{
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "name": "string",
                                        },
                                        "ref": "string",
                                        "repo_url": "string",
                                        "target_revision": "string",
                                    }],
                                    "sync_policy": {
                                        "automated": {
                                            "allow_empty": False,
                                            "prune": False,
                                            "self_heal": False,
                                        },
                                        "managed_namespace_metadata": {
                                            "annotations": {
                                                "string": "string",
                                            },
                                            "labels": {
                                                "string": "string",
                                            },
                                        },
                                        "retry": {
                                            "backoff": {
                                                "duration": "string",
                                                "factor": "string",
                                                "max_duration": "string",
                                            },
                                            "limit": "string",
                                        },
                                        "sync_options": ["string"],
                                    },
                                },
                            },
                        }],
                        "matrices": [{
                            "generators": [{
                                "cluster_decision_resources": [{
                                    "config_map_ref": "string",
                                    "label_selector": {
                                        "match_expressions": [{
                                            "key": "string",
                                            "operator": "string",
                                            "values": ["string"],
                                        }],
                                        "match_labels": {
                                            "string": "string",
                                        },
                                    },
                                    "name": "string",
                                    "requeue_after_seconds": "string",
                                    "template": {
                                        "metadata": {
                                            "annotations": {
                                                "string": "string",
                                            },
                                            "finalizers": ["string"],
                                            "labels": {
                                                "string": "string",
                                            },
                                            "name": "string",
                                            "namespace": "string",
                                        },
                                        "spec": {
                                            "destination": {
                                                "name": "string",
                                                "namespace": "string",
                                                "server": "string",
                                            },
                                            "ignore_differences": [{
                                                "group": "string",
                                                "jq_path_expressions": ["string"],
                                                "json_pointers": ["string"],
                                                "kind": "string",
                                                "managed_fields_managers": ["string"],
                                                "name": "string",
                                                "namespace": "string",
                                            }],
                                            "infos": [{
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "project": "string",
                                            "revision_history_limit": 0,
                                            "sources": [{
                                                "chart": "string",
                                                "directory": {
                                                    "exclude": "string",
                                                    "include": "string",
                                                    "jsonnet": {
                                                        "ext_vars": [{
                                                            "code": False,
                                                            "name": "string",
                                                            "value": "string",
                                                        }],
                                                        "libs": ["string"],
                                                        "tlas": [{
                                                            "code": False,
                                                            "name": "string",
                                                            "value": "string",
                                                        }],
                                                    },
                                                    "recurse": False,
                                                },
                                                "helm": {
                                                    "file_parameters": [{
                                                        "name": "string",
                                                        "path": "string",
                                                    }],
                                                    "ignore_missing_value_files": False,
                                                    "parameters": [{
                                                        "force_string": False,
                                                        "name": "string",
                                                        "value": "string",
                                                    }],
                                                    "pass_credentials": False,
                                                    "release_name": "string",
                                                    "skip_crds": False,
                                                    "value_files": ["string"],
                                                    "values": "string",
                                                    "version": "string",
                                                },
                                                "kustomize": {
                                                    "common_annotations": {
                                                        "string": "string",
                                                    },
                                                    "common_labels": {
                                                        "string": "string",
                                                    },
                                                    "images": ["string"],
                                                    "name_prefix": "string",
                                                    "name_suffix": "string",
                                                    "patches": [{
                                                        "target": {
                                                            "annotation_selector": "string",
                                                            "group": "string",
                                                            "kind": "string",
                                                            "label_selector": "string",
                                                            "name": "string",
                                                            "namespace": "string",
                                                            "version": "string",
                                                        },
                                                        "options": {
                                                            "string": False,
                                                        },
                                                        "patch": "string",
                                                        "path": "string",
                                                    }],
                                                    "version": "string",
                                                },
                                                "path": "string",
                                                "plugin": {
                                                    "envs": [{
                                                        "name": "string",
                                                        "value": "string",
                                                    }],
                                                    "name": "string",
                                                },
                                                "ref": "string",
                                                "repo_url": "string",
                                                "target_revision": "string",
                                            }],
                                            "sync_policy": {
                                                "automated": {
                                                    "allow_empty": False,
                                                    "prune": False,
                                                    "self_heal": False,
                                                },
                                                "managed_namespace_metadata": {
                                                    "annotations": {
                                                        "string": "string",
                                                    },
                                                    "labels": {
                                                        "string": "string",
                                                    },
                                                },
                                                "retry": {
                                                    "backoff": {
                                                        "duration": "string",
                                                        "factor": "string",
                                                        "max_duration": "string",
                                                    },
                                                    "limit": "string",
                                                },
                                                "sync_options": ["string"],
                                            },
                                        },
                                    },
                                    "values": {
                                        "string": "string",
                                    },
                                }],
                                "clusters": [{
                                    "enabled": False,
                                    "selector": {
                                        "match_expressions": [{
                                            "key": "string",
                                            "operator": "string",
                                            "values": ["string"],
                                        }],
                                        "match_labels": {
                                            "string": "string",
                                        },
                                    },
                                    "template": {
                                        "metadata": {
                                            "annotations": {
                                                "string": "string",
                                            },
                                            "finalizers": ["string"],
                                            "labels": {
                                                "string": "string",
                                            },
                                            "name": "string",
                                            "namespace": "string",
                                        },
                                        "spec": {
                                            "destination": {
                                                "name": "string",
                                                "namespace": "string",
                                                "server": "string",
                                            },
                                            "ignore_differences": [{
                                                "group": "string",
                                                "jq_path_expressions": ["string"],
                                                "json_pointers": ["string"],
                                                "kind": "string",
                                                "managed_fields_managers": ["string"],
                                                "name": "string",
                                                "namespace": "string",
                                            }],
                                            "infos": [{
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "project": "string",
                                            "revision_history_limit": 0,
                                            "sources": [{
                                                "chart": "string",
                                                "directory": {
                                                    "exclude": "string",
                                                    "include": "string",
                                                    "jsonnet": {
                                                        "ext_vars": [{
                                                            "code": False,
                                                            "name": "string",
                                                            "value": "string",
                                                        }],
                                                        "libs": ["string"],
                                                        "tlas": [{
                                                            "code": False,
                                                            "name": "string",
                                                            "value": "string",
                                                        }],
                                                    },
                                                    "recurse": False,
                                                },
                                                "helm": {
                                                    "file_parameters": [{
                                                        "name": "string",
                                                        "path": "string",
                                                    }],
                                                    "ignore_missing_value_files": False,
                                                    "parameters": [{
                                                        "force_string": False,
                                                        "name": "string",
                                                        "value": "string",
                                                    }],
                                                    "pass_credentials": False,
                                                    "release_name": "string",
                                                    "skip_crds": False,
                                                    "value_files": ["string"],
                                                    "values": "string",
                                                    "version": "string",
                                                },
                                                "kustomize": {
                                                    "common_annotations": {
                                                        "string": "string",
                                                    },
                                                    "common_labels": {
                                                        "string": "string",
                                                    },
                                                    "images": ["string"],
                                                    "name_prefix": "string",
                                                    "name_suffix": "string",
                                                    "patches": [{
                                                        "target": {
                                                            "annotation_selector": "string",
                                                            "group": "string",
                                                            "kind": "string",
                                                            "label_selector": "string",
                                                            "name": "string",
                                                            "namespace": "string",
                                                            "version": "string",
                                                        },
                                                        "options": {
                                                            "string": False,
                                                        },
                                                        "patch": "string",
                                                        "path": "string",
                                                    }],
                                                    "version": "string",
                                                },
                                                "path": "string",
                                                "plugin": {
                                                    "envs": [{
                                                        "name": "string",
                                                        "value": "string",
                                                    }],
                                                    "name": "string",
                                                },
                                                "ref": "string",
                                                "repo_url": "string",
                                                "target_revision": "string",
                                            }],
                                            "sync_policy": {
                                                "automated": {
                                                    "allow_empty": False,
                                                    "prune": False,
                                                    "self_heal": False,
                                                },
                                                "managed_namespace_metadata": {
                                                    "annotations": {
                                                        "string": "string",
                                                    },
                                                    "labels": {
                                                        "string": "string",
                                                    },
                                                },
                                                "retry": {
                                                    "backoff": {
                                                        "duration": "string",
                                                        "factor": "string",
                                                        "max_duration": "string",
                                                    },
                                                    "limit": "string",
                                                },
                                                "sync_options": ["string"],
                                            },
                                        },
                                    },
                                    "values": {
                                        "string": "string",
                                    },
                                }],
                                "gits": [{
                                    "repo_url": "string",
                                    "directories": [{
                                        "path": "string",
                                        "exclude": False,
                                    }],
                                    "files": [{
                                        "path": "string",
                                    }],
                                    "path_param_prefix": "string",
                                    "revision": "string",
                                    "template": {
                                        "metadata": {
                                            "annotations": {
                                                "string": "string",
                                            },
                                            "finalizers": ["string"],
                                            "labels": {
                                                "string": "string",
                                            },
                                            "name": "string",
                                            "namespace": "string",
                                        },
                                        "spec": {
                                            "destination": {
                                                "name": "string",
                                                "namespace": "string",
                                                "server": "string",
                                            },
                                            "ignore_differences": [{
                                                "group": "string",
                                                "jq_path_expressions": ["string"],
                                                "json_pointers": ["string"],
                                                "kind": "string",
                                                "managed_fields_managers": ["string"],
                                                "name": "string",
                                                "namespace": "string",
                                            }],
                                            "infos": [{
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "project": "string",
                                            "revision_history_limit": 0,
                                            "sources": [{
                                                "chart": "string",
                                                "directory": {
                                                    "exclude": "string",
                                                    "include": "string",
                                                    "jsonnet": {
                                                        "ext_vars": [{
                                                            "code": False,
                                                            "name": "string",
                                                            "value": "string",
                                                        }],
                                                        "libs": ["string"],
                                                        "tlas": [{
                                                            "code": False,
                                                            "name": "string",
                                                            "value": "string",
                                                        }],
                                                    },
                                                    "recurse": False,
                                                },
                                                "helm": {
                                                    "file_parameters": [{
                                                        "name": "string",
                                                        "path": "string",
                                                    }],
                                                    "ignore_missing_value_files": False,
                                                    "parameters": [{
                                                        "force_string": False,
                                                        "name": "string",
                                                        "value": "string",
                                                    }],
                                                    "pass_credentials": False,
                                                    "release_name": "string",
                                                    "skip_crds": False,
                                                    "value_files": ["string"],
                                                    "values": "string",
                                                    "version": "string",
                                                },
                                                "kustomize": {
                                                    "common_annotations": {
                                                        "string": "string",
                                                    },
                                                    "common_labels": {
                                                        "string": "string",
                                                    },
                                                    "images": ["string"],
                                                    "name_prefix": "string",
                                                    "name_suffix": "string",
                                                    "patches": [{
                                                        "target": {
                                                            "annotation_selector": "string",
                                                            "group": "string",
                                                            "kind": "string",
                                                            "label_selector": "string",
                                                            "name": "string",
                                                            "namespace": "string",
                                                            "version": "string",
                                                        },
                                                        "options": {
                                                            "string": False,
                                                        },
                                                        "patch": "string",
                                                        "path": "string",
                                                    }],
                                                    "version": "string",
                                                },
                                                "path": "string",
                                                "plugin": {
                                                    "envs": [{
                                                        "name": "string",
                                                        "value": "string",
                                                    }],
                                                    "name": "string",
                                                },
                                                "ref": "string",
                                                "repo_url": "string",
                                                "target_revision": "string",
                                            }],
                                            "sync_policy": {
                                                "automated": {
                                                    "allow_empty": False,
                                                    "prune": False,
                                                    "self_heal": False,
                                                },
                                                "managed_namespace_metadata": {
                                                    "annotations": {
                                                        "string": "string",
                                                    },
                                                    "labels": {
                                                        "string": "string",
                                                    },
                                                },
                                                "retry": {
                                                    "backoff": {
                                                        "duration": "string",
                                                        "factor": "string",
                                                        "max_duration": "string",
                                                    },
                                                    "limit": "string",
                                                },
                                                "sync_options": ["string"],
                                            },
                                        },
                                    },
                                    "values": {
                                        "string": "string",
                                    },
                                }],
                                "lists": [{
                                    "elements": [{
                                        "string": "string",
                                    }],
                                    "template": {
                                        "metadata": {
                                            "annotations": {
                                                "string": "string",
                                            },
                                            "finalizers": ["string"],
                                            "labels": {
                                                "string": "string",
                                            },
                                            "name": "string",
                                            "namespace": "string",
                                        },
                                        "spec": {
                                            "destination": {
                                                "name": "string",
                                                "namespace": "string",
                                                "server": "string",
                                            },
                                            "ignore_differences": [{
                                                "group": "string",
                                                "jq_path_expressions": ["string"],
                                                "json_pointers": ["string"],
                                                "kind": "string",
                                                "managed_fields_managers": ["string"],
                                                "name": "string",
                                                "namespace": "string",
                                            }],
                                            "infos": [{
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "project": "string",
                                            "revision_history_limit": 0,
                                            "sources": [{
                                                "chart": "string",
                                                "directory": {
                                                    "exclude": "string",
                                                    "include": "string",
                                                    "jsonnet": {
                                                        "ext_vars": [{
                                                            "code": False,
                                                            "name": "string",
                                                            "value": "string",
                                                        }],
                                                        "libs": ["string"],
                                                        "tlas": [{
                                                            "code": False,
                                                            "name": "string",
                                                            "value": "string",
                                                        }],
                                                    },
                                                    "recurse": False,
                                                },
                                                "helm": {
                                                    "file_parameters": [{
                                                        "name": "string",
                                                        "path": "string",
                                                    }],
                                                    "ignore_missing_value_files": False,
                                                    "parameters": [{
                                                        "force_string": False,
                                                        "name": "string",
                                                        "value": "string",
                                                    }],
                                                    "pass_credentials": False,
                                                    "release_name": "string",
                                                    "skip_crds": False,
                                                    "value_files": ["string"],
                                                    "values": "string",
                                                    "version": "string",
                                                },
                                                "kustomize": {
                                                    "common_annotations": {
                                                        "string": "string",
                                                    },
                                                    "common_labels": {
                                                        "string": "string",
                                                    },
                                                    "images": ["string"],
                                                    "name_prefix": "string",
                                                    "name_suffix": "string",
                                                    "patches": [{
                                                        "target": {
                                                            "annotation_selector": "string",
                                                            "group": "string",
                                                            "kind": "string",
                                                            "label_selector": "string",
                                                            "name": "string",
                                                            "namespace": "string",
                                                            "version": "string",
                                                        },
                                                        "options": {
                                                            "string": False,
                                                        },
                                                        "patch": "string",
                                                        "path": "string",
                                                    }],
                                                    "version": "string",
                                                },
                                                "path": "string",
                                                "plugin": {
                                                    "envs": [{
                                                        "name": "string",
                                                        "value": "string",
                                                    }],
                                                    "name": "string",
                                                },
                                                "ref": "string",
                                                "repo_url": "string",
                                                "target_revision": "string",
                                            }],
                                            "sync_policy": {
                                                "automated": {
                                                    "allow_empty": False,
                                                    "prune": False,
                                                    "self_heal": False,
                                                },
                                                "managed_namespace_metadata": {
                                                    "annotations": {
                                                        "string": "string",
                                                    },
                                                    "labels": {
                                                        "string": "string",
                                                    },
                                                },
                                                "retry": {
                                                    "backoff": {
                                                        "duration": "string",
                                                        "factor": "string",
                                                        "max_duration": "string",
                                                    },
                                                    "limit": "string",
                                                },
                                                "sync_options": ["string"],
                                            },
                                        },
                                    },
                                }],
                                "pull_requests": [{
                                    "bitbucket_server": {
                                        "api": "string",
                                        "project": "string",
                                        "repo": "string",
                                        "basic_auth": {
                                            "password_ref": {
                                                "key": "string",
                                                "secret_name": "string",
                                            },
                                            "username": "string",
                                        },
                                    },
                                    "filters": [{
                                        "branch_match": "string",
                                    }],
                                    "gitea": {
                                        "api": "string",
                                        "owner": "string",
                                        "repo": "string",
                                        "insecure": False,
                                        "token_ref": {
                                            "key": "string",
                                            "secret_name": "string",
                                        },
                                    },
                                    "github": {
                                        "owner": "string",
                                        "repo": "string",
                                        "api": "string",
                                        "app_secret_name": "string",
                                        "labels": ["string"],
                                        "token_ref": {
                                            "key": "string",
                                            "secret_name": "string",
                                        },
                                    },
                                    "gitlab": {
                                        "project": "string",
                                        "api": "string",
                                        "labels": ["string"],
                                        "pull_request_state": "string",
                                        "token_ref": {
                                            "key": "string",
                                            "secret_name": "string",
                                        },
                                    },
                                    "requeue_after_seconds": "string",
                                    "template": {
                                        "metadata": {
                                            "annotations": {
                                                "string": "string",
                                            },
                                            "finalizers": ["string"],
                                            "labels": {
                                                "string": "string",
                                            },
                                            "name": "string",
                                            "namespace": "string",
                                        },
                                        "spec": {
                                            "destination": {
                                                "name": "string",
                                                "namespace": "string",
                                                "server": "string",
                                            },
                                            "ignore_differences": [{
                                                "group": "string",
                                                "jq_path_expressions": ["string"],
                                                "json_pointers": ["string"],
                                                "kind": "string",
                                                "managed_fields_managers": ["string"],
                                                "name": "string",
                                                "namespace": "string",
                                            }],
                                            "infos": [{
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "project": "string",
                                            "revision_history_limit": 0,
                                            "sources": [{
                                                "chart": "string",
                                                "directory": {
                                                    "exclude": "string",
                                                    "include": "string",
                                                    "jsonnet": {
                                                        "ext_vars": [{
                                                            "code": False,
                                                            "name": "string",
                                                            "value": "string",
                                                        }],
                                                        "libs": ["string"],
                                                        "tlas": [{
                                                            "code": False,
                                                            "name": "string",
                                                            "value": "string",
                                                        }],
                                                    },
                                                    "recurse": False,
                                                },
                                                "helm": {
                                                    "file_parameters": [{
                                                        "name": "string",
                                                        "path": "string",
                                                    }],
                                                    "ignore_missing_value_files": False,
                                                    "parameters": [{
                                                        "force_string": False,
                                                        "name": "string",
                                                        "value": "string",
                                                    }],
                                                    "pass_credentials": False,
                                                    "release_name": "string",
                                                    "skip_crds": False,
                                                    "value_files": ["string"],
                                                    "values": "string",
                                                    "version": "string",
                                                },
                                                "kustomize": {
                                                    "common_annotations": {
                                                        "string": "string",
                                                    },
                                                    "common_labels": {
                                                        "string": "string",
                                                    },
                                                    "images": ["string"],
                                                    "name_prefix": "string",
                                                    "name_suffix": "string",
                                                    "patches": [{
                                                        "target": {
                                                            "annotation_selector": "string",
                                                            "group": "string",
                                                            "kind": "string",
                                                            "label_selector": "string",
                                                            "name": "string",
                                                            "namespace": "string",
                                                            "version": "string",
                                                        },
                                                        "options": {
                                                            "string": False,
                                                        },
                                                        "patch": "string",
                                                        "path": "string",
                                                    }],
                                                    "version": "string",
                                                },
                                                "path": "string",
                                                "plugin": {
                                                    "envs": [{
                                                        "name": "string",
                                                        "value": "string",
                                                    }],
                                                    "name": "string",
                                                },
                                                "ref": "string",
                                                "repo_url": "string",
                                                "target_revision": "string",
                                            }],
                                            "sync_policy": {
                                                "automated": {
                                                    "allow_empty": False,
                                                    "prune": False,
                                                    "self_heal": False,
                                                },
                                                "managed_namespace_metadata": {
                                                    "annotations": {
                                                        "string": "string",
                                                    },
                                                    "labels": {
                                                        "string": "string",
                                                    },
                                                },
                                                "retry": {
                                                    "backoff": {
                                                        "duration": "string",
                                                        "factor": "string",
                                                        "max_duration": "string",
                                                    },
                                                    "limit": "string",
                                                },
                                                "sync_options": ["string"],
                                            },
                                        },
                                    },
                                }],
                                "scm_providers": [{
                                    "azure_devops": {
                                        "organization": "string",
                                        "team_project": "string",
                                        "access_token_ref": {
                                            "key": "string",
                                            "secret_name": "string",
                                        },
                                        "all_branches": False,
                                        "api": "string",
                                    },
                                    "bitbucket_cloud": {
                                        "owner": "string",
                                        "user": "string",
                                        "all_branches": False,
                                        "app_password_ref": {
                                            "key": "string",
                                            "secret_name": "string",
                                        },
                                    },
                                    "bitbucket_server": {
                                        "api": "string",
                                        "project": "string",
                                        "all_branches": False,
                                        "basic_auth": {
                                            "password_ref": {
                                                "key": "string",
                                                "secret_name": "string",
                                            },
                                            "username": "string",
                                        },
                                    },
                                    "clone_protocol": "string",
                                    "filters": [{
                                        "branch_match": "string",
                                        "label_match": "string",
                                        "paths_do_not_exists": ["string"],
                                        "paths_exists": ["string"],
                                        "repository_match": "string",
                                    }],
                                    "gitea": {
                                        "owner": "string",
                                        "all_branches": False,
                                        "api": "string",
                                        "insecure": False,
                                        "token_ref": {
                                            "key": "string",
                                            "secret_name": "string",
                                        },
                                    },
                                    "github": {
                                        "organization": "string",
                                        "all_branches": False,
                                        "api": "string",
                                        "app_secret_name": "string",
                                        "token_ref": {
                                            "key": "string",
                                            "secret_name": "string",
                                        },
                                    },
                                    "gitlab": {
                                        "group": "string",
                                        "all_branches": False,
                                        "api": "string",
                                        "include_subgroups": False,
                                        "token_ref": {
                                            "key": "string",
                                            "secret_name": "string",
                                        },
                                    },
                                    "requeue_after_seconds": "string",
                                    "template": {
                                        "metadata": {
                                            "annotations": {
                                                "string": "string",
                                            },
                                            "finalizers": ["string"],
                                            "labels": {
                                                "string": "string",
                                            },
                                            "name": "string",
                                            "namespace": "string",
                                        },
                                        "spec": {
                                            "destination": {
                                                "name": "string",
                                                "namespace": "string",
                                                "server": "string",
                                            },
                                            "ignore_differences": [{
                                                "group": "string",
                                                "jq_path_expressions": ["string"],
                                                "json_pointers": ["string"],
                                                "kind": "string",
                                                "managed_fields_managers": ["string"],
                                                "name": "string",
                                                "namespace": "string",
                                            }],
                                            "infos": [{
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "project": "string",
                                            "revision_history_limit": 0,
                                            "sources": [{
                                                "chart": "string",
                                                "directory": {
                                                    "exclude": "string",
                                                    "include": "string",
                                                    "jsonnet": {
                                                        "ext_vars": [{
                                                            "code": False,
                                                            "name": "string",
                                                            "value": "string",
                                                        }],
                                                        "libs": ["string"],
                                                        "tlas": [{
                                                            "code": False,
                                                            "name": "string",
                                                            "value": "string",
                                                        }],
                                                    },
                                                    "recurse": False,
                                                },
                                                "helm": {
                                                    "file_parameters": [{
                                                        "name": "string",
                                                        "path": "string",
                                                    }],
                                                    "ignore_missing_value_files": False,
                                                    "parameters": [{
                                                        "force_string": False,
                                                        "name": "string",
                                                        "value": "string",
                                                    }],
                                                    "pass_credentials": False,
                                                    "release_name": "string",
                                                    "skip_crds": False,
                                                    "value_files": ["string"],
                                                    "values": "string",
                                                    "version": "string",
                                                },
                                                "kustomize": {
                                                    "common_annotations": {
                                                        "string": "string",
                                                    },
                                                    "common_labels": {
                                                        "string": "string",
                                                    },
                                                    "images": ["string"],
                                                    "name_prefix": "string",
                                                    "name_suffix": "string",
                                                    "patches": [{
                                                        "target": {
                                                            "annotation_selector": "string",
                                                            "group": "string",
                                                            "kind": "string",
                                                            "label_selector": "string",
                                                            "name": "string",
                                                            "namespace": "string",
                                                            "version": "string",
                                                        },
                                                        "options": {
                                                            "string": False,
                                                        },
                                                        "patch": "string",
                                                        "path": "string",
                                                    }],
                                                    "version": "string",
                                                },
                                                "path": "string",
                                                "plugin": {
                                                    "envs": [{
                                                        "name": "string",
                                                        "value": "string",
                                                    }],
                                                    "name": "string",
                                                },
                                                "ref": "string",
                                                "repo_url": "string",
                                                "target_revision": "string",
                                            }],
                                            "sync_policy": {
                                                "automated": {
                                                    "allow_empty": False,
                                                    "prune": False,
                                                    "self_heal": False,
                                                },
                                                "managed_namespace_metadata": {
                                                    "annotations": {
                                                        "string": "string",
                                                    },
                                                    "labels": {
                                                        "string": "string",
                                                    },
                                                },
                                                "retry": {
                                                    "backoff": {
                                                        "duration": "string",
                                                        "factor": "string",
                                                        "max_duration": "string",
                                                    },
                                                    "limit": "string",
                                                },
                                                "sync_options": ["string"],
                                            },
                                        },
                                    },
                                }],
                                "selector": {
                                    "match_expressions": [{
                                        "key": "string",
                                        "operator": "string",
                                        "values": ["string"],
                                    }],
                                    "match_labels": {
                                        "string": "string",
                                    },
                                },
                            }],
                            "template": {
                                "metadata": {
                                    "annotations": {
                                        "string": "string",
                                    },
                                    "finalizers": ["string"],
                                    "labels": {
                                        "string": "string",
                                    },
                                    "name": "string",
                                    "namespace": "string",
                                },
                                "spec": {
                                    "destination": {
                                        "name": "string",
                                        "namespace": "string",
                                        "server": "string",
                                    },
                                    "ignore_differences": [{
                                        "group": "string",
                                        "jq_path_expressions": ["string"],
                                        "json_pointers": ["string"],
                                        "kind": "string",
                                        "managed_fields_managers": ["string"],
                                        "name": "string",
                                        "namespace": "string",
                                    }],
                                    "infos": [{
                                        "name": "string",
                                        "value": "string",
                                    }],
                                    "project": "string",
                                    "revision_history_limit": 0,
                                    "sources": [{
                                        "chart": "string",
                                        "directory": {
                                            "exclude": "string",
                                            "include": "string",
                                            "jsonnet": {
                                                "ext_vars": [{
                                                    "code": False,
                                                    "name": "string",
                                                    "value": "string",
                                                }],
                                                "libs": ["string"],
                                                "tlas": [{
                                                    "code": False,
                                                    "name": "string",
                                                    "value": "string",
                                                }],
                                            },
                                            "recurse": False,
                                        },
                                        "helm": {
                                            "file_parameters": [{
                                                "name": "string",
                                                "path": "string",
                                            }],
                                            "ignore_missing_value_files": False,
                                            "parameters": [{
                                                "force_string": False,
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "pass_credentials": False,
                                            "release_name": "string",
                                            "skip_crds": False,
                                            "value_files": ["string"],
                                            "values": "string",
                                            "version": "string",
                                        },
                                        "kustomize": {
                                            "common_annotations": {
                                                "string": "string",
                                            },
                                            "common_labels": {
                                                "string": "string",
                                            },
                                            "images": ["string"],
                                            "name_prefix": "string",
                                            "name_suffix": "string",
                                            "patches": [{
                                                "target": {
                                                    "annotation_selector": "string",
                                                    "group": "string",
                                                    "kind": "string",
                                                    "label_selector": "string",
                                                    "name": "string",
                                                    "namespace": "string",
                                                    "version": "string",
                                                },
                                                "options": {
                                                    "string": False,
                                                },
                                                "patch": "string",
                                                "path": "string",
                                            }],
                                            "version": "string",
                                        },
                                        "path": "string",
                                        "plugin": {
                                            "envs": [{
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "name": "string",
                                        },
                                        "ref": "string",
                                        "repo_url": "string",
                                        "target_revision": "string",
                                    }],
                                    "sync_policy": {
                                        "automated": {
                                            "allow_empty": False,
                                            "prune": False,
                                            "self_heal": False,
                                        },
                                        "managed_namespace_metadata": {
                                            "annotations": {
                                                "string": "string",
                                            },
                                            "labels": {
                                                "string": "string",
                                            },
                                        },
                                        "retry": {
                                            "backoff": {
                                                "duration": "string",
                                                "factor": "string",
                                                "max_duration": "string",
                                            },
                                            "limit": "string",
                                        },
                                        "sync_options": ["string"],
                                    },
                                },
                            },
                        }],
                        "merges": [{
                            "generators": [{
                                "cluster_decision_resources": [{
                                    "config_map_ref": "string",
                                    "label_selector": {
                                        "match_expressions": [{
                                            "key": "string",
                                            "operator": "string",
                                            "values": ["string"],
                                        }],
                                        "match_labels": {
                                            "string": "string",
                                        },
                                    },
                                    "name": "string",
                                    "requeue_after_seconds": "string",
                                    "template": {
                                        "metadata": {
                                            "annotations": {
                                                "string": "string",
                                            },
                                            "finalizers": ["string"],
                                            "labels": {
                                                "string": "string",
                                            },
                                            "name": "string",
                                            "namespace": "string",
                                        },
                                        "spec": {
                                            "destination": {
                                                "name": "string",
                                                "namespace": "string",
                                                "server": "string",
                                            },
                                            "ignore_differences": [{
                                                "group": "string",
                                                "jq_path_expressions": ["string"],
                                                "json_pointers": ["string"],
                                                "kind": "string",
                                                "managed_fields_managers": ["string"],
                                                "name": "string",
                                                "namespace": "string",
                                            }],
                                            "infos": [{
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "project": "string",
                                            "revision_history_limit": 0,
                                            "sources": [{
                                                "chart": "string",
                                                "directory": {
                                                    "exclude": "string",
                                                    "include": "string",
                                                    "jsonnet": {
                                                        "ext_vars": [{
                                                            "code": False,
                                                            "name": "string",
                                                            "value": "string",
                                                        }],
                                                        "libs": ["string"],
                                                        "tlas": [{
                                                            "code": False,
                                                            "name": "string",
                                                            "value": "string",
                                                        }],
                                                    },
                                                    "recurse": False,
                                                },
                                                "helm": {
                                                    "file_parameters": [{
                                                        "name": "string",
                                                        "path": "string",
                                                    }],
                                                    "ignore_missing_value_files": False,
                                                    "parameters": [{
                                                        "force_string": False,
                                                        "name": "string",
                                                        "value": "string",
                                                    }],
                                                    "pass_credentials": False,
                                                    "release_name": "string",
                                                    "skip_crds": False,
                                                    "value_files": ["string"],
                                                    "values": "string",
                                                    "version": "string",
                                                },
                                                "kustomize": {
                                                    "common_annotations": {
                                                        "string": "string",
                                                    },
                                                    "common_labels": {
                                                        "string": "string",
                                                    },
                                                    "images": ["string"],
                                                    "name_prefix": "string",
                                                    "name_suffix": "string",
                                                    "patches": [{
                                                        "target": {
                                                            "annotation_selector": "string",
                                                            "group": "string",
                                                            "kind": "string",
                                                            "label_selector": "string",
                                                            "name": "string",
                                                            "namespace": "string",
                                                            "version": "string",
                                                        },
                                                        "options": {
                                                            "string": False,
                                                        },
                                                        "patch": "string",
                                                        "path": "string",
                                                    }],
                                                    "version": "string",
                                                },
                                                "path": "string",
                                                "plugin": {
                                                    "envs": [{
                                                        "name": "string",
                                                        "value": "string",
                                                    }],
                                                    "name": "string",
                                                },
                                                "ref": "string",
                                                "repo_url": "string",
                                                "target_revision": "string",
                                            }],
                                            "sync_policy": {
                                                "automated": {
                                                    "allow_empty": False,
                                                    "prune": False,
                                                    "self_heal": False,
                                                },
                                                "managed_namespace_metadata": {
                                                    "annotations": {
                                                        "string": "string",
                                                    },
                                                    "labels": {
                                                        "string": "string",
                                                    },
                                                },
                                                "retry": {
                                                    "backoff": {
                                                        "duration": "string",
                                                        "factor": "string",
                                                        "max_duration": "string",
                                                    },
                                                    "limit": "string",
                                                },
                                                "sync_options": ["string"],
                                            },
                                        },
                                    },
                                    "values": {
                                        "string": "string",
                                    },
                                }],
                                "clusters": [{
                                    "enabled": False,
                                    "selector": {
                                        "match_expressions": [{
                                            "key": "string",
                                            "operator": "string",
                                            "values": ["string"],
                                        }],
                                        "match_labels": {
                                            "string": "string",
                                        },
                                    },
                                    "template": {
                                        "metadata": {
                                            "annotations": {
                                                "string": "string",
                                            },
                                            "finalizers": ["string"],
                                            "labels": {
                                                "string": "string",
                                            },
                                            "name": "string",
                                            "namespace": "string",
                                        },
                                        "spec": {
                                            "destination": {
                                                "name": "string",
                                                "namespace": "string",
                                                "server": "string",
                                            },
                                            "ignore_differences": [{
                                                "group": "string",
                                                "jq_path_expressions": ["string"],
                                                "json_pointers": ["string"],
                                                "kind": "string",
                                                "managed_fields_managers": ["string"],
                                                "name": "string",
                                                "namespace": "string",
                                            }],
                                            "infos": [{
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "project": "string",
                                            "revision_history_limit": 0,
                                            "sources": [{
                                                "chart": "string",
                                                "directory": {
                                                    "exclude": "string",
                                                    "include": "string",
                                                    "jsonnet": {
                                                        "ext_vars": [{
                                                            "code": False,
                                                            "name": "string",
                                                            "value": "string",
                                                        }],
                                                        "libs": ["string"],
                                                        "tlas": [{
                                                            "code": False,
                                                            "name": "string",
                                                            "value": "string",
                                                        }],
                                                    },
                                                    "recurse": False,
                                                },
                                                "helm": {
                                                    "file_parameters": [{
                                                        "name": "string",
                                                        "path": "string",
                                                    }],
                                                    "ignore_missing_value_files": False,
                                                    "parameters": [{
                                                        "force_string": False,
                                                        "name": "string",
                                                        "value": "string",
                                                    }],
                                                    "pass_credentials": False,
                                                    "release_name": "string",
                                                    "skip_crds": False,
                                                    "value_files": ["string"],
                                                    "values": "string",
                                                    "version": "string",
                                                },
                                                "kustomize": {
                                                    "common_annotations": {
                                                        "string": "string",
                                                    },
                                                    "common_labels": {
                                                        "string": "string",
                                                    },
                                                    "images": ["string"],
                                                    "name_prefix": "string",
                                                    "name_suffix": "string",
                                                    "patches": [{
                                                        "target": {
                                                            "annotation_selector": "string",
                                                            "group": "string",
                                                            "kind": "string",
                                                            "label_selector": "string",
                                                            "name": "string",
                                                            "namespace": "string",
                                                            "version": "string",
                                                        },
                                                        "options": {
                                                            "string": False,
                                                        },
                                                        "patch": "string",
                                                        "path": "string",
                                                    }],
                                                    "version": "string",
                                                },
                                                "path": "string",
                                                "plugin": {
                                                    "envs": [{
                                                        "name": "string",
                                                        "value": "string",
                                                    }],
                                                    "name": "string",
                                                },
                                                "ref": "string",
                                                "repo_url": "string",
                                                "target_revision": "string",
                                            }],
                                            "sync_policy": {
                                                "automated": {
                                                    "allow_empty": False,
                                                    "prune": False,
                                                    "self_heal": False,
                                                },
                                                "managed_namespace_metadata": {
                                                    "annotations": {
                                                        "string": "string",
                                                    },
                                                    "labels": {
                                                        "string": "string",
                                                    },
                                                },
                                                "retry": {
                                                    "backoff": {
                                                        "duration": "string",
                                                        "factor": "string",
                                                        "max_duration": "string",
                                                    },
                                                    "limit": "string",
                                                },
                                                "sync_options": ["string"],
                                            },
                                        },
                                    },
                                    "values": {
                                        "string": "string",
                                    },
                                }],
                                "gits": [{
                                    "repo_url": "string",
                                    "directories": [{
                                        "path": "string",
                                        "exclude": False,
                                    }],
                                    "files": [{
                                        "path": "string",
                                    }],
                                    "path_param_prefix": "string",
                                    "revision": "string",
                                    "template": {
                                        "metadata": {
                                            "annotations": {
                                                "string": "string",
                                            },
                                            "finalizers": ["string"],
                                            "labels": {
                                                "string": "string",
                                            },
                                            "name": "string",
                                            "namespace": "string",
                                        },
                                        "spec": {
                                            "destination": {
                                                "name": "string",
                                                "namespace": "string",
                                                "server": "string",
                                            },
                                            "ignore_differences": [{
                                                "group": "string",
                                                "jq_path_expressions": ["string"],
                                                "json_pointers": ["string"],
                                                "kind": "string",
                                                "managed_fields_managers": ["string"],
                                                "name": "string",
                                                "namespace": "string",
                                            }],
                                            "infos": [{
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "project": "string",
                                            "revision_history_limit": 0,
                                            "sources": [{
                                                "chart": "string",
                                                "directory": {
                                                    "exclude": "string",
                                                    "include": "string",
                                                    "jsonnet": {
                                                        "ext_vars": [{
                                                            "code": False,
                                                            "name": "string",
                                                            "value": "string",
                                                        }],
                                                        "libs": ["string"],
                                                        "tlas": [{
                                                            "code": False,
                                                            "name": "string",
                                                            "value": "string",
                                                        }],
                                                    },
                                                    "recurse": False,
                                                },
                                                "helm": {
                                                    "file_parameters": [{
                                                        "name": "string",
                                                        "path": "string",
                                                    }],
                                                    "ignore_missing_value_files": False,
                                                    "parameters": [{
                                                        "force_string": False,
                                                        "name": "string",
                                                        "value": "string",
                                                    }],
                                                    "pass_credentials": False,
                                                    "release_name": "string",
                                                    "skip_crds": False,
                                                    "value_files": ["string"],
                                                    "values": "string",
                                                    "version": "string",
                                                },
                                                "kustomize": {
                                                    "common_annotations": {
                                                        "string": "string",
                                                    },
                                                    "common_labels": {
                                                        "string": "string",
                                                    },
                                                    "images": ["string"],
                                                    "name_prefix": "string",
                                                    "name_suffix": "string",
                                                    "patches": [{
                                                        "target": {
                                                            "annotation_selector": "string",
                                                            "group": "string",
                                                            "kind": "string",
                                                            "label_selector": "string",
                                                            "name": "string",
                                                            "namespace": "string",
                                                            "version": "string",
                                                        },
                                                        "options": {
                                                            "string": False,
                                                        },
                                                        "patch": "string",
                                                        "path": "string",
                                                    }],
                                                    "version": "string",
                                                },
                                                "path": "string",
                                                "plugin": {
                                                    "envs": [{
                                                        "name": "string",
                                                        "value": "string",
                                                    }],
                                                    "name": "string",
                                                },
                                                "ref": "string",
                                                "repo_url": "string",
                                                "target_revision": "string",
                                            }],
                                            "sync_policy": {
                                                "automated": {
                                                    "allow_empty": False,
                                                    "prune": False,
                                                    "self_heal": False,
                                                },
                                                "managed_namespace_metadata": {
                                                    "annotations": {
                                                        "string": "string",
                                                    },
                                                    "labels": {
                                                        "string": "string",
                                                    },
                                                },
                                                "retry": {
                                                    "backoff": {
                                                        "duration": "string",
                                                        "factor": "string",
                                                        "max_duration": "string",
                                                    },
                                                    "limit": "string",
                                                },
                                                "sync_options": ["string"],
                                            },
                                        },
                                    },
                                    "values": {
                                        "string": "string",
                                    },
                                }],
                                "lists": [{
                                    "elements": [{
                                        "string": "string",
                                    }],
                                    "template": {
                                        "metadata": {
                                            "annotations": {
                                                "string": "string",
                                            },
                                            "finalizers": ["string"],
                                            "labels": {
                                                "string": "string",
                                            },
                                            "name": "string",
                                            "namespace": "string",
                                        },
                                        "spec": {
                                            "destination": {
                                                "name": "string",
                                                "namespace": "string",
                                                "server": "string",
                                            },
                                            "ignore_differences": [{
                                                "group": "string",
                                                "jq_path_expressions": ["string"],
                                                "json_pointers": ["string"],
                                                "kind": "string",
                                                "managed_fields_managers": ["string"],
                                                "name": "string",
                                                "namespace": "string",
                                            }],
                                            "infos": [{
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "project": "string",
                                            "revision_history_limit": 0,
                                            "sources": [{
                                                "chart": "string",
                                                "directory": {
                                                    "exclude": "string",
                                                    "include": "string",
                                                    "jsonnet": {
                                                        "ext_vars": [{
                                                            "code": False,
                                                            "name": "string",
                                                            "value": "string",
                                                        }],
                                                        "libs": ["string"],
                                                        "tlas": [{
                                                            "code": False,
                                                            "name": "string",
                                                            "value": "string",
                                                        }],
                                                    },
                                                    "recurse": False,
                                                },
                                                "helm": {
                                                    "file_parameters": [{
                                                        "name": "string",
                                                        "path": "string",
                                                    }],
                                                    "ignore_missing_value_files": False,
                                                    "parameters": [{
                                                        "force_string": False,
                                                        "name": "string",
                                                        "value": "string",
                                                    }],
                                                    "pass_credentials": False,
                                                    "release_name": "string",
                                                    "skip_crds": False,
                                                    "value_files": ["string"],
                                                    "values": "string",
                                                    "version": "string",
                                                },
                                                "kustomize": {
                                                    "common_annotations": {
                                                        "string": "string",
                                                    },
                                                    "common_labels": {
                                                        "string": "string",
                                                    },
                                                    "images": ["string"],
                                                    "name_prefix": "string",
                                                    "name_suffix": "string",
                                                    "patches": [{
                                                        "target": {
                                                            "annotation_selector": "string",
                                                            "group": "string",
                                                            "kind": "string",
                                                            "label_selector": "string",
                                                            "name": "string",
                                                            "namespace": "string",
                                                            "version": "string",
                                                        },
                                                        "options": {
                                                            "string": False,
                                                        },
                                                        "patch": "string",
                                                        "path": "string",
                                                    }],
                                                    "version": "string",
                                                },
                                                "path": "string",
                                                "plugin": {
                                                    "envs": [{
                                                        "name": "string",
                                                        "value": "string",
                                                    }],
                                                    "name": "string",
                                                },
                                                "ref": "string",
                                                "repo_url": "string",
                                                "target_revision": "string",
                                            }],
                                            "sync_policy": {
                                                "automated": {
                                                    "allow_empty": False,
                                                    "prune": False,
                                                    "self_heal": False,
                                                },
                                                "managed_namespace_metadata": {
                                                    "annotations": {
                                                        "string": "string",
                                                    },
                                                    "labels": {
                                                        "string": "string",
                                                    },
                                                },
                                                "retry": {
                                                    "backoff": {
                                                        "duration": "string",
                                                        "factor": "string",
                                                        "max_duration": "string",
                                                    },
                                                    "limit": "string",
                                                },
                                                "sync_options": ["string"],
                                            },
                                        },
                                    },
                                }],
                                "pull_requests": [{
                                    "bitbucket_server": {
                                        "api": "string",
                                        "project": "string",
                                        "repo": "string",
                                        "basic_auth": {
                                            "password_ref": {
                                                "key": "string",
                                                "secret_name": "string",
                                            },
                                            "username": "string",
                                        },
                                    },
                                    "filters": [{
                                        "branch_match": "string",
                                    }],
                                    "gitea": {
                                        "api": "string",
                                        "owner": "string",
                                        "repo": "string",
                                        "insecure": False,
                                        "token_ref": {
                                            "key": "string",
                                            "secret_name": "string",
                                        },
                                    },
                                    "github": {
                                        "owner": "string",
                                        "repo": "string",
                                        "api": "string",
                                        "app_secret_name": "string",
                                        "labels": ["string"],
                                        "token_ref": {
                                            "key": "string",
                                            "secret_name": "string",
                                        },
                                    },
                                    "gitlab": {
                                        "project": "string",
                                        "api": "string",
                                        "labels": ["string"],
                                        "pull_request_state": "string",
                                        "token_ref": {
                                            "key": "string",
                                            "secret_name": "string",
                                        },
                                    },
                                    "requeue_after_seconds": "string",
                                    "template": {
                                        "metadata": {
                                            "annotations": {
                                                "string": "string",
                                            },
                                            "finalizers": ["string"],
                                            "labels": {
                                                "string": "string",
                                            },
                                            "name": "string",
                                            "namespace": "string",
                                        },
                                        "spec": {
                                            "destination": {
                                                "name": "string",
                                                "namespace": "string",
                                                "server": "string",
                                            },
                                            "ignore_differences": [{
                                                "group": "string",
                                                "jq_path_expressions": ["string"],
                                                "json_pointers": ["string"],
                                                "kind": "string",
                                                "managed_fields_managers": ["string"],
                                                "name": "string",
                                                "namespace": "string",
                                            }],
                                            "infos": [{
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "project": "string",
                                            "revision_history_limit": 0,
                                            "sources": [{
                                                "chart": "string",
                                                "directory": {
                                                    "exclude": "string",
                                                    "include": "string",
                                                    "jsonnet": {
                                                        "ext_vars": [{
                                                            "code": False,
                                                            "name": "string",
                                                            "value": "string",
                                                        }],
                                                        "libs": ["string"],
                                                        "tlas": [{
                                                            "code": False,
                                                            "name": "string",
                                                            "value": "string",
                                                        }],
                                                    },
                                                    "recurse": False,
                                                },
                                                "helm": {
                                                    "file_parameters": [{
                                                        "name": "string",
                                                        "path": "string",
                                                    }],
                                                    "ignore_missing_value_files": False,
                                                    "parameters": [{
                                                        "force_string": False,
                                                        "name": "string",
                                                        "value": "string",
                                                    }],
                                                    "pass_credentials": False,
                                                    "release_name": "string",
                                                    "skip_crds": False,
                                                    "value_files": ["string"],
                                                    "values": "string",
                                                    "version": "string",
                                                },
                                                "kustomize": {
                                                    "common_annotations": {
                                                        "string": "string",
                                                    },
                                                    "common_labels": {
                                                        "string": "string",
                                                    },
                                                    "images": ["string"],
                                                    "name_prefix": "string",
                                                    "name_suffix": "string",
                                                    "patches": [{
                                                        "target": {
                                                            "annotation_selector": "string",
                                                            "group": "string",
                                                            "kind": "string",
                                                            "label_selector": "string",
                                                            "name": "string",
                                                            "namespace": "string",
                                                            "version": "string",
                                                        },
                                                        "options": {
                                                            "string": False,
                                                        },
                                                        "patch": "string",
                                                        "path": "string",
                                                    }],
                                                    "version": "string",
                                                },
                                                "path": "string",
                                                "plugin": {
                                                    "envs": [{
                                                        "name": "string",
                                                        "value": "string",
                                                    }],
                                                    "name": "string",
                                                },
                                                "ref": "string",
                                                "repo_url": "string",
                                                "target_revision": "string",
                                            }],
                                            "sync_policy": {
                                                "automated": {
                                                    "allow_empty": False,
                                                    "prune": False,
                                                    "self_heal": False,
                                                },
                                                "managed_namespace_metadata": {
                                                    "annotations": {
                                                        "string": "string",
                                                    },
                                                    "labels": {
                                                        "string": "string",
                                                    },
                                                },
                                                "retry": {
                                                    "backoff": {
                                                        "duration": "string",
                                                        "factor": "string",
                                                        "max_duration": "string",
                                                    },
                                                    "limit": "string",
                                                },
                                                "sync_options": ["string"],
                                            },
                                        },
                                    },
                                }],
                                "scm_providers": [{
                                    "azure_devops": {
                                        "organization": "string",
                                        "team_project": "string",
                                        "access_token_ref": {
                                            "key": "string",
                                            "secret_name": "string",
                                        },
                                        "all_branches": False,
                                        "api": "string",
                                    },
                                    "bitbucket_cloud": {
                                        "owner": "string",
                                        "user": "string",
                                        "all_branches": False,
                                        "app_password_ref": {
                                            "key": "string",
                                            "secret_name": "string",
                                        },
                                    },
                                    "bitbucket_server": {
                                        "api": "string",
                                        "project": "string",
                                        "all_branches": False,
                                        "basic_auth": {
                                            "password_ref": {
                                                "key": "string",
                                                "secret_name": "string",
                                            },
                                            "username": "string",
                                        },
                                    },
                                    "clone_protocol": "string",
                                    "filters": [{
                                        "branch_match": "string",
                                        "label_match": "string",
                                        "paths_do_not_exists": ["string"],
                                        "paths_exists": ["string"],
                                        "repository_match": "string",
                                    }],
                                    "gitea": {
                                        "owner": "string",
                                        "all_branches": False,
                                        "api": "string",
                                        "insecure": False,
                                        "token_ref": {
                                            "key": "string",
                                            "secret_name": "string",
                                        },
                                    },
                                    "github": {
                                        "organization": "string",
                                        "all_branches": False,
                                        "api": "string",
                                        "app_secret_name": "string",
                                        "token_ref": {
                                            "key": "string",
                                            "secret_name": "string",
                                        },
                                    },
                                    "gitlab": {
                                        "group": "string",
                                        "all_branches": False,
                                        "api": "string",
                                        "include_subgroups": False,
                                        "token_ref": {
                                            "key": "string",
                                            "secret_name": "string",
                                        },
                                    },
                                    "requeue_after_seconds": "string",
                                    "template": {
                                        "metadata": {
                                            "annotations": {
                                                "string": "string",
                                            },
                                            "finalizers": ["string"],
                                            "labels": {
                                                "string": "string",
                                            },
                                            "name": "string",
                                            "namespace": "string",
                                        },
                                        "spec": {
                                            "destination": {
                                                "name": "string",
                                                "namespace": "string",
                                                "server": "string",
                                            },
                                            "ignore_differences": [{
                                                "group": "string",
                                                "jq_path_expressions": ["string"],
                                                "json_pointers": ["string"],
                                                "kind": "string",
                                                "managed_fields_managers": ["string"],
                                                "name": "string",
                                                "namespace": "string",
                                            }],
                                            "infos": [{
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "project": "string",
                                            "revision_history_limit": 0,
                                            "sources": [{
                                                "chart": "string",
                                                "directory": {
                                                    "exclude": "string",
                                                    "include": "string",
                                                    "jsonnet": {
                                                        "ext_vars": [{
                                                            "code": False,
                                                            "name": "string",
                                                            "value": "string",
                                                        }],
                                                        "libs": ["string"],
                                                        "tlas": [{
                                                            "code": False,
                                                            "name": "string",
                                                            "value": "string",
                                                        }],
                                                    },
                                                    "recurse": False,
                                                },
                                                "helm": {
                                                    "file_parameters": [{
                                                        "name": "string",
                                                        "path": "string",
                                                    }],
                                                    "ignore_missing_value_files": False,
                                                    "parameters": [{
                                                        "force_string": False,
                                                        "name": "string",
                                                        "value": "string",
                                                    }],
                                                    "pass_credentials": False,
                                                    "release_name": "string",
                                                    "skip_crds": False,
                                                    "value_files": ["string"],
                                                    "values": "string",
                                                    "version": "string",
                                                },
                                                "kustomize": {
                                                    "common_annotations": {
                                                        "string": "string",
                                                    },
                                                    "common_labels": {
                                                        "string": "string",
                                                    },
                                                    "images": ["string"],
                                                    "name_prefix": "string",
                                                    "name_suffix": "string",
                                                    "patches": [{
                                                        "target": {
                                                            "annotation_selector": "string",
                                                            "group": "string",
                                                            "kind": "string",
                                                            "label_selector": "string",
                                                            "name": "string",
                                                            "namespace": "string",
                                                            "version": "string",
                                                        },
                                                        "options": {
                                                            "string": False,
                                                        },
                                                        "patch": "string",
                                                        "path": "string",
                                                    }],
                                                    "version": "string",
                                                },
                                                "path": "string",
                                                "plugin": {
                                                    "envs": [{
                                                        "name": "string",
                                                        "value": "string",
                                                    }],
                                                    "name": "string",
                                                },
                                                "ref": "string",
                                                "repo_url": "string",
                                                "target_revision": "string",
                                            }],
                                            "sync_policy": {
                                                "automated": {
                                                    "allow_empty": False,
                                                    "prune": False,
                                                    "self_heal": False,
                                                },
                                                "managed_namespace_metadata": {
                                                    "annotations": {
                                                        "string": "string",
                                                    },
                                                    "labels": {
                                                        "string": "string",
                                                    },
                                                },
                                                "retry": {
                                                    "backoff": {
                                                        "duration": "string",
                                                        "factor": "string",
                                                        "max_duration": "string",
                                                    },
                                                    "limit": "string",
                                                },
                                                "sync_options": ["string"],
                                            },
                                        },
                                    },
                                }],
                                "selector": {
                                    "match_expressions": [{
                                        "key": "string",
                                        "operator": "string",
                                        "values": ["string"],
                                    }],
                                    "match_labels": {
                                        "string": "string",
                                    },
                                },
                            }],
                            "merge_keys": ["string"],
                            "template": {
                                "metadata": {
                                    "annotations": {
                                        "string": "string",
                                    },
                                    "finalizers": ["string"],
                                    "labels": {
                                        "string": "string",
                                    },
                                    "name": "string",
                                    "namespace": "string",
                                },
                                "spec": {
                                    "destination": {
                                        "name": "string",
                                        "namespace": "string",
                                        "server": "string",
                                    },
                                    "ignore_differences": [{
                                        "group": "string",
                                        "jq_path_expressions": ["string"],
                                        "json_pointers": ["string"],
                                        "kind": "string",
                                        "managed_fields_managers": ["string"],
                                        "name": "string",
                                        "namespace": "string",
                                    }],
                                    "infos": [{
                                        "name": "string",
                                        "value": "string",
                                    }],
                                    "project": "string",
                                    "revision_history_limit": 0,
                                    "sources": [{
                                        "chart": "string",
                                        "directory": {
                                            "exclude": "string",
                                            "include": "string",
                                            "jsonnet": {
                                                "ext_vars": [{
                                                    "code": False,
                                                    "name": "string",
                                                    "value": "string",
                                                }],
                                                "libs": ["string"],
                                                "tlas": [{
                                                    "code": False,
                                                    "name": "string",
                                                    "value": "string",
                                                }],
                                            },
                                            "recurse": False,
                                        },
                                        "helm": {
                                            "file_parameters": [{
                                                "name": "string",
                                                "path": "string",
                                            }],
                                            "ignore_missing_value_files": False,
                                            "parameters": [{
                                                "force_string": False,
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "pass_credentials": False,
                                            "release_name": "string",
                                            "skip_crds": False,
                                            "value_files": ["string"],
                                            "values": "string",
                                            "version": "string",
                                        },
                                        "kustomize": {
                                            "common_annotations": {
                                                "string": "string",
                                            },
                                            "common_labels": {
                                                "string": "string",
                                            },
                                            "images": ["string"],
                                            "name_prefix": "string",
                                            "name_suffix": "string",
                                            "patches": [{
                                                "target": {
                                                    "annotation_selector": "string",
                                                    "group": "string",
                                                    "kind": "string",
                                                    "label_selector": "string",
                                                    "name": "string",
                                                    "namespace": "string",
                                                    "version": "string",
                                                },
                                                "options": {
                                                    "string": False,
                                                },
                                                "patch": "string",
                                                "path": "string",
                                            }],
                                            "version": "string",
                                        },
                                        "path": "string",
                                        "plugin": {
                                            "envs": [{
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "name": "string",
                                        },
                                        "ref": "string",
                                        "repo_url": "string",
                                        "target_revision": "string",
                                    }],
                                    "sync_policy": {
                                        "automated": {
                                            "allow_empty": False,
                                            "prune": False,
                                            "self_heal": False,
                                        },
                                        "managed_namespace_metadata": {
                                            "annotations": {
                                                "string": "string",
                                            },
                                            "labels": {
                                                "string": "string",
                                            },
                                        },
                                        "retry": {
                                            "backoff": {
                                                "duration": "string",
                                                "factor": "string",
                                                "max_duration": "string",
                                            },
                                            "limit": "string",
                                        },
                                        "sync_options": ["string"],
                                    },
                                },
                            },
                        }],
                        "pull_requests": [{
                            "bitbucket_server": {
                                "api": "string",
                                "project": "string",
                                "repo": "string",
                                "basic_auth": {
                                    "password_ref": {
                                        "key": "string",
                                        "secret_name": "string",
                                    },
                                    "username": "string",
                                },
                            },
                            "filters": [{
                                "branch_match": "string",
                            }],
                            "gitea": {
                                "api": "string",
                                "owner": "string",
                                "repo": "string",
                                "insecure": False,
                                "token_ref": {
                                    "key": "string",
                                    "secret_name": "string",
                                },
                            },
                            "github": {
                                "owner": "string",
                                "repo": "string",
                                "api": "string",
                                "app_secret_name": "string",
                                "labels": ["string"],
                                "token_ref": {
                                    "key": "string",
                                    "secret_name": "string",
                                },
                            },
                            "gitlab": {
                                "project": "string",
                                "api": "string",
                                "labels": ["string"],
                                "pull_request_state": "string",
                                "token_ref": {
                                    "key": "string",
                                    "secret_name": "string",
                                },
                            },
                            "requeue_after_seconds": "string",
                            "template": {
                                "metadata": {
                                    "annotations": {
                                        "string": "string",
                                    },
                                    "finalizers": ["string"],
                                    "labels": {
                                        "string": "string",
                                    },
                                    "name": "string",
                                    "namespace": "string",
                                },
                                "spec": {
                                    "destination": {
                                        "name": "string",
                                        "namespace": "string",
                                        "server": "string",
                                    },
                                    "ignore_differences": [{
                                        "group": "string",
                                        "jq_path_expressions": ["string"],
                                        "json_pointers": ["string"],
                                        "kind": "string",
                                        "managed_fields_managers": ["string"],
                                        "name": "string",
                                        "namespace": "string",
                                    }],
                                    "infos": [{
                                        "name": "string",
                                        "value": "string",
                                    }],
                                    "project": "string",
                                    "revision_history_limit": 0,
                                    "sources": [{
                                        "chart": "string",
                                        "directory": {
                                            "exclude": "string",
                                            "include": "string",
                                            "jsonnet": {
                                                "ext_vars": [{
                                                    "code": False,
                                                    "name": "string",
                                                    "value": "string",
                                                }],
                                                "libs": ["string"],
                                                "tlas": [{
                                                    "code": False,
                                                    "name": "string",
                                                    "value": "string",
                                                }],
                                            },
                                            "recurse": False,
                                        },
                                        "helm": {
                                            "file_parameters": [{
                                                "name": "string",
                                                "path": "string",
                                            }],
                                            "ignore_missing_value_files": False,
                                            "parameters": [{
                                                "force_string": False,
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "pass_credentials": False,
                                            "release_name": "string",
                                            "skip_crds": False,
                                            "value_files": ["string"],
                                            "values": "string",
                                            "version": "string",
                                        },
                                        "kustomize": {
                                            "common_annotations": {
                                                "string": "string",
                                            },
                                            "common_labels": {
                                                "string": "string",
                                            },
                                            "images": ["string"],
                                            "name_prefix": "string",
                                            "name_suffix": "string",
                                            "patches": [{
                                                "target": {
                                                    "annotation_selector": "string",
                                                    "group": "string",
                                                    "kind": "string",
                                                    "label_selector": "string",
                                                    "name": "string",
                                                    "namespace": "string",
                                                    "version": "string",
                                                },
                                                "options": {
                                                    "string": False,
                                                },
                                                "patch": "string",
                                                "path": "string",
                                            }],
                                            "version": "string",
                                        },
                                        "path": "string",
                                        "plugin": {
                                            "envs": [{
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "name": "string",
                                        },
                                        "ref": "string",
                                        "repo_url": "string",
                                        "target_revision": "string",
                                    }],
                                    "sync_policy": {
                                        "automated": {
                                            "allow_empty": False,
                                            "prune": False,
                                            "self_heal": False,
                                        },
                                        "managed_namespace_metadata": {
                                            "annotations": {
                                                "string": "string",
                                            },
                                            "labels": {
                                                "string": "string",
                                            },
                                        },
                                        "retry": {
                                            "backoff": {
                                                "duration": "string",
                                                "factor": "string",
                                                "max_duration": "string",
                                            },
                                            "limit": "string",
                                        },
                                        "sync_options": ["string"],
                                    },
                                },
                            },
                        }],
                        "scm_providers": [{
                            "azure_devops": {
                                "organization": "string",
                                "team_project": "string",
                                "access_token_ref": {
                                    "key": "string",
                                    "secret_name": "string",
                                },
                                "all_branches": False,
                                "api": "string",
                            },
                            "bitbucket_cloud": {
                                "owner": "string",
                                "user": "string",
                                "all_branches": False,
                                "app_password_ref": {
                                    "key": "string",
                                    "secret_name": "string",
                                },
                            },
                            "bitbucket_server": {
                                "api": "string",
                                "project": "string",
                                "all_branches": False,
                                "basic_auth": {
                                    "password_ref": {
                                        "key": "string",
                                        "secret_name": "string",
                                    },
                                    "username": "string",
                                },
                            },
                            "clone_protocol": "string",
                            "filters": [{
                                "branch_match": "string",
                                "label_match": "string",
                                "paths_do_not_exists": ["string"],
                                "paths_exists": ["string"],
                                "repository_match": "string",
                            }],
                            "gitea": {
                                "owner": "string",
                                "all_branches": False,
                                "api": "string",
                                "insecure": False,
                                "token_ref": {
                                    "key": "string",
                                    "secret_name": "string",
                                },
                            },
                            "github": {
                                "organization": "string",
                                "all_branches": False,
                                "api": "string",
                                "app_secret_name": "string",
                                "token_ref": {
                                    "key": "string",
                                    "secret_name": "string",
                                },
                            },
                            "gitlab": {
                                "group": "string",
                                "all_branches": False,
                                "api": "string",
                                "include_subgroups": False,
                                "token_ref": {
                                    "key": "string",
                                    "secret_name": "string",
                                },
                            },
                            "requeue_after_seconds": "string",
                            "template": {
                                "metadata": {
                                    "annotations": {
                                        "string": "string",
                                    },
                                    "finalizers": ["string"],
                                    "labels": {
                                        "string": "string",
                                    },
                                    "name": "string",
                                    "namespace": "string",
                                },
                                "spec": {
                                    "destination": {
                                        "name": "string",
                                        "namespace": "string",
                                        "server": "string",
                                    },
                                    "ignore_differences": [{
                                        "group": "string",
                                        "jq_path_expressions": ["string"],
                                        "json_pointers": ["string"],
                                        "kind": "string",
                                        "managed_fields_managers": ["string"],
                                        "name": "string",
                                        "namespace": "string",
                                    }],
                                    "infos": [{
                                        "name": "string",
                                        "value": "string",
                                    }],
                                    "project": "string",
                                    "revision_history_limit": 0,
                                    "sources": [{
                                        "chart": "string",
                                        "directory": {
                                            "exclude": "string",
                                            "include": "string",
                                            "jsonnet": {
                                                "ext_vars": [{
                                                    "code": False,
                                                    "name": "string",
                                                    "value": "string",
                                                }],
                                                "libs": ["string"],
                                                "tlas": [{
                                                    "code": False,
                                                    "name": "string",
                                                    "value": "string",
                                                }],
                                            },
                                            "recurse": False,
                                        },
                                        "helm": {
                                            "file_parameters": [{
                                                "name": "string",
                                                "path": "string",
                                            }],
                                            "ignore_missing_value_files": False,
                                            "parameters": [{
                                                "force_string": False,
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "pass_credentials": False,
                                            "release_name": "string",
                                            "skip_crds": False,
                                            "value_files": ["string"],
                                            "values": "string",
                                            "version": "string",
                                        },
                                        "kustomize": {
                                            "common_annotations": {
                                                "string": "string",
                                            },
                                            "common_labels": {
                                                "string": "string",
                                            },
                                            "images": ["string"],
                                            "name_prefix": "string",
                                            "name_suffix": "string",
                                            "patches": [{
                                                "target": {
                                                    "annotation_selector": "string",
                                                    "group": "string",
                                                    "kind": "string",
                                                    "label_selector": "string",
                                                    "name": "string",
                                                    "namespace": "string",
                                                    "version": "string",
                                                },
                                                "options": {
                                                    "string": False,
                                                },
                                                "patch": "string",
                                                "path": "string",
                                            }],
                                            "version": "string",
                                        },
                                        "path": "string",
                                        "plugin": {
                                            "envs": [{
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "name": "string",
                                        },
                                        "ref": "string",
                                        "repo_url": "string",
                                        "target_revision": "string",
                                    }],
                                    "sync_policy": {
                                        "automated": {
                                            "allow_empty": False,
                                            "prune": False,
                                            "self_heal": False,
                                        },
                                        "managed_namespace_metadata": {
                                            "annotations": {
                                                "string": "string",
                                            },
                                            "labels": {
                                                "string": "string",
                                            },
                                        },
                                        "retry": {
                                            "backoff": {
                                                "duration": "string",
                                                "factor": "string",
                                                "max_duration": "string",
                                            },
                                            "limit": "string",
                                        },
                                        "sync_options": ["string"],
                                    },
                                },
                            },
                        }],
                        "selector": {
                            "match_expressions": [{
                                "key": "string",
                                "operator": "string",
                                "values": ["string"],
                            }],
                            "match_labels": {
                                "string": "string",
                            },
                        },
                    }],
                    "template": {
                        "metadata": {
                            "annotations": {
                                "string": "string",
                            },
                            "finalizers": ["string"],
                            "labels": {
                                "string": "string",
                            },
                            "name": "string",
                            "namespace": "string",
                        },
                        "spec": {
                            "destination": {
                                "name": "string",
                                "namespace": "string",
                                "server": "string",
                            },
                            "ignore_differences": [{
                                "group": "string",
                                "jq_path_expressions": ["string"],
                                "json_pointers": ["string"],
                                "kind": "string",
                                "managed_fields_managers": ["string"],
                                "name": "string",
                                "namespace": "string",
                            }],
                            "infos": [{
                                "name": "string",
                                "value": "string",
                            }],
                            "project": "string",
                            "revision_history_limit": 0,
                            "sources": [{
                                "chart": "string",
                                "directory": {
                                    "exclude": "string",
                                    "include": "string",
                                    "jsonnet": {
                                        "ext_vars": [{
                                            "code": False,
                                            "name": "string",
                                            "value": "string",
                                        }],
                                        "libs": ["string"],
                                        "tlas": [{
                                            "code": False,
                                            "name": "string",
                                            "value": "string",
                                        }],
                                    },
                                    "recurse": False,
                                },
                                "helm": {
                                    "file_parameters": [{
                                        "name": "string",
                                        "path": "string",
                                    }],
                                    "ignore_missing_value_files": False,
                                    "parameters": [{
                                        "force_string": False,
                                        "name": "string",
                                        "value": "string",
                                    }],
                                    "pass_credentials": False,
                                    "release_name": "string",
                                    "skip_crds": False,
                                    "value_files": ["string"],
                                    "values": "string",
                                    "version": "string",
                                },
                                "kustomize": {
                                    "common_annotations": {
                                        "string": "string",
                                    },
                                    "common_labels": {
                                        "string": "string",
                                    },
                                    "images": ["string"],
                                    "name_prefix": "string",
                                    "name_suffix": "string",
                                    "patches": [{
                                        "target": {
                                            "annotation_selector": "string",
                                            "group": "string",
                                            "kind": "string",
                                            "label_selector": "string",
                                            "name": "string",
                                            "namespace": "string",
                                            "version": "string",
                                        },
                                        "options": {
                                            "string": False,
                                        },
                                        "patch": "string",
                                        "path": "string",
                                    }],
                                    "version": "string",
                                },
                                "path": "string",
                                "plugin": {
                                    "envs": [{
                                        "name": "string",
                                        "value": "string",
                                    }],
                                    "name": "string",
                                },
                                "ref": "string",
                                "repo_url": "string",
                                "target_revision": "string",
                            }],
                            "sync_policy": {
                                "automated": {
                                    "allow_empty": False,
                                    "prune": False,
                                    "self_heal": False,
                                },
                                "managed_namespace_metadata": {
                                    "annotations": {
                                        "string": "string",
                                    },
                                    "labels": {
                                        "string": "string",
                                    },
                                },
                                "retry": {
                                    "backoff": {
                                        "duration": "string",
                                        "factor": "string",
                                        "max_duration": "string",
                                    },
                                    "limit": "string",
                                },
                                "sync_options": ["string"],
                            },
                        },
                    },
                }],
                "merges": [{
                    "generators": [{
                        "cluster_decision_resources": [{
                            "config_map_ref": "string",
                            "label_selector": {
                                "match_expressions": [{
                                    "key": "string",
                                    "operator": "string",
                                    "values": ["string"],
                                }],
                                "match_labels": {
                                    "string": "string",
                                },
                            },
                            "name": "string",
                            "requeue_after_seconds": "string",
                            "template": {
                                "metadata": {
                                    "annotations": {
                                        "string": "string",
                                    },
                                    "finalizers": ["string"],
                                    "labels": {
                                        "string": "string",
                                    },
                                    "name": "string",
                                    "namespace": "string",
                                },
                                "spec": {
                                    "destination": {
                                        "name": "string",
                                        "namespace": "string",
                                        "server": "string",
                                    },
                                    "ignore_differences": [{
                                        "group": "string",
                                        "jq_path_expressions": ["string"],
                                        "json_pointers": ["string"],
                                        "kind": "string",
                                        "managed_fields_managers": ["string"],
                                        "name": "string",
                                        "namespace": "string",
                                    }],
                                    "infos": [{
                                        "name": "string",
                                        "value": "string",
                                    }],
                                    "project": "string",
                                    "revision_history_limit": 0,
                                    "sources": [{
                                        "chart": "string",
                                        "directory": {
                                            "exclude": "string",
                                            "include": "string",
                                            "jsonnet": {
                                                "ext_vars": [{
                                                    "code": False,
                                                    "name": "string",
                                                    "value": "string",
                                                }],
                                                "libs": ["string"],
                                                "tlas": [{
                                                    "code": False,
                                                    "name": "string",
                                                    "value": "string",
                                                }],
                                            },
                                            "recurse": False,
                                        },
                                        "helm": {
                                            "file_parameters": [{
                                                "name": "string",
                                                "path": "string",
                                            }],
                                            "ignore_missing_value_files": False,
                                            "parameters": [{
                                                "force_string": False,
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "pass_credentials": False,
                                            "release_name": "string",
                                            "skip_crds": False,
                                            "value_files": ["string"],
                                            "values": "string",
                                            "version": "string",
                                        },
                                        "kustomize": {
                                            "common_annotations": {
                                                "string": "string",
                                            },
                                            "common_labels": {
                                                "string": "string",
                                            },
                                            "images": ["string"],
                                            "name_prefix": "string",
                                            "name_suffix": "string",
                                            "patches": [{
                                                "target": {
                                                    "annotation_selector": "string",
                                                    "group": "string",
                                                    "kind": "string",
                                                    "label_selector": "string",
                                                    "name": "string",
                                                    "namespace": "string",
                                                    "version": "string",
                                                },
                                                "options": {
                                                    "string": False,
                                                },
                                                "patch": "string",
                                                "path": "string",
                                            }],
                                            "version": "string",
                                        },
                                        "path": "string",
                                        "plugin": {
                                            "envs": [{
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "name": "string",
                                        },
                                        "ref": "string",
                                        "repo_url": "string",
                                        "target_revision": "string",
                                    }],
                                    "sync_policy": {
                                        "automated": {
                                            "allow_empty": False,
                                            "prune": False,
                                            "self_heal": False,
                                        },
                                        "managed_namespace_metadata": {
                                            "annotations": {
                                                "string": "string",
                                            },
                                            "labels": {
                                                "string": "string",
                                            },
                                        },
                                        "retry": {
                                            "backoff": {
                                                "duration": "string",
                                                "factor": "string",
                                                "max_duration": "string",
                                            },
                                            "limit": "string",
                                        },
                                        "sync_options": ["string"],
                                    },
                                },
                            },
                            "values": {
                                "string": "string",
                            },
                        }],
                        "clusters": [{
                            "enabled": False,
                            "selector": {
                                "match_expressions": [{
                                    "key": "string",
                                    "operator": "string",
                                    "values": ["string"],
                                }],
                                "match_labels": {
                                    "string": "string",
                                },
                            },
                            "template": {
                                "metadata": {
                                    "annotations": {
                                        "string": "string",
                                    },
                                    "finalizers": ["string"],
                                    "labels": {
                                        "string": "string",
                                    },
                                    "name": "string",
                                    "namespace": "string",
                                },
                                "spec": {
                                    "destination": {
                                        "name": "string",
                                        "namespace": "string",
                                        "server": "string",
                                    },
                                    "ignore_differences": [{
                                        "group": "string",
                                        "jq_path_expressions": ["string"],
                                        "json_pointers": ["string"],
                                        "kind": "string",
                                        "managed_fields_managers": ["string"],
                                        "name": "string",
                                        "namespace": "string",
                                    }],
                                    "infos": [{
                                        "name": "string",
                                        "value": "string",
                                    }],
                                    "project": "string",
                                    "revision_history_limit": 0,
                                    "sources": [{
                                        "chart": "string",
                                        "directory": {
                                            "exclude": "string",
                                            "include": "string",
                                            "jsonnet": {
                                                "ext_vars": [{
                                                    "code": False,
                                                    "name": "string",
                                                    "value": "string",
                                                }],
                                                "libs": ["string"],
                                                "tlas": [{
                                                    "code": False,
                                                    "name": "string",
                                                    "value": "string",
                                                }],
                                            },
                                            "recurse": False,
                                        },
                                        "helm": {
                                            "file_parameters": [{
                                                "name": "string",
                                                "path": "string",
                                            }],
                                            "ignore_missing_value_files": False,
                                            "parameters": [{
                                                "force_string": False,
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "pass_credentials": False,
                                            "release_name": "string",
                                            "skip_crds": False,
                                            "value_files": ["string"],
                                            "values": "string",
                                            "version": "string",
                                        },
                                        "kustomize": {
                                            "common_annotations": {
                                                "string": "string",
                                            },
                                            "common_labels": {
                                                "string": "string",
                                            },
                                            "images": ["string"],
                                            "name_prefix": "string",
                                            "name_suffix": "string",
                                            "patches": [{
                                                "target": {
                                                    "annotation_selector": "string",
                                                    "group": "string",
                                                    "kind": "string",
                                                    "label_selector": "string",
                                                    "name": "string",
                                                    "namespace": "string",
                                                    "version": "string",
                                                },
                                                "options": {
                                                    "string": False,
                                                },
                                                "patch": "string",
                                                "path": "string",
                                            }],
                                            "version": "string",
                                        },
                                        "path": "string",
                                        "plugin": {
                                            "envs": [{
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "name": "string",
                                        },
                                        "ref": "string",
                                        "repo_url": "string",
                                        "target_revision": "string",
                                    }],
                                    "sync_policy": {
                                        "automated": {
                                            "allow_empty": False,
                                            "prune": False,
                                            "self_heal": False,
                                        },
                                        "managed_namespace_metadata": {
                                            "annotations": {
                                                "string": "string",
                                            },
                                            "labels": {
                                                "string": "string",
                                            },
                                        },
                                        "retry": {
                                            "backoff": {
                                                "duration": "string",
                                                "factor": "string",
                                                "max_duration": "string",
                                            },
                                            "limit": "string",
                                        },
                                        "sync_options": ["string"],
                                    },
                                },
                            },
                            "values": {
                                "string": "string",
                            },
                        }],
                        "gits": [{
                            "repo_url": "string",
                            "directories": [{
                                "path": "string",
                                "exclude": False,
                            }],
                            "files": [{
                                "path": "string",
                            }],
                            "path_param_prefix": "string",
                            "revision": "string",
                            "template": {
                                "metadata": {
                                    "annotations": {
                                        "string": "string",
                                    },
                                    "finalizers": ["string"],
                                    "labels": {
                                        "string": "string",
                                    },
                                    "name": "string",
                                    "namespace": "string",
                                },
                                "spec": {
                                    "destination": {
                                        "name": "string",
                                        "namespace": "string",
                                        "server": "string",
                                    },
                                    "ignore_differences": [{
                                        "group": "string",
                                        "jq_path_expressions": ["string"],
                                        "json_pointers": ["string"],
                                        "kind": "string",
                                        "managed_fields_managers": ["string"],
                                        "name": "string",
                                        "namespace": "string",
                                    }],
                                    "infos": [{
                                        "name": "string",
                                        "value": "string",
                                    }],
                                    "project": "string",
                                    "revision_history_limit": 0,
                                    "sources": [{
                                        "chart": "string",
                                        "directory": {
                                            "exclude": "string",
                                            "include": "string",
                                            "jsonnet": {
                                                "ext_vars": [{
                                                    "code": False,
                                                    "name": "string",
                                                    "value": "string",
                                                }],
                                                "libs": ["string"],
                                                "tlas": [{
                                                    "code": False,
                                                    "name": "string",
                                                    "value": "string",
                                                }],
                                            },
                                            "recurse": False,
                                        },
                                        "helm": {
                                            "file_parameters": [{
                                                "name": "string",
                                                "path": "string",
                                            }],
                                            "ignore_missing_value_files": False,
                                            "parameters": [{
                                                "force_string": False,
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "pass_credentials": False,
                                            "release_name": "string",
                                            "skip_crds": False,
                                            "value_files": ["string"],
                                            "values": "string",
                                            "version": "string",
                                        },
                                        "kustomize": {
                                            "common_annotations": {
                                                "string": "string",
                                            },
                                            "common_labels": {
                                                "string": "string",
                                            },
                                            "images": ["string"],
                                            "name_prefix": "string",
                                            "name_suffix": "string",
                                            "patches": [{
                                                "target": {
                                                    "annotation_selector": "string",
                                                    "group": "string",
                                                    "kind": "string",
                                                    "label_selector": "string",
                                                    "name": "string",
                                                    "namespace": "string",
                                                    "version": "string",
                                                },
                                                "options": {
                                                    "string": False,
                                                },
                                                "patch": "string",
                                                "path": "string",
                                            }],
                                            "version": "string",
                                        },
                                        "path": "string",
                                        "plugin": {
                                            "envs": [{
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "name": "string",
                                        },
                                        "ref": "string",
                                        "repo_url": "string",
                                        "target_revision": "string",
                                    }],
                                    "sync_policy": {
                                        "automated": {
                                            "allow_empty": False,
                                            "prune": False,
                                            "self_heal": False,
                                        },
                                        "managed_namespace_metadata": {
                                            "annotations": {
                                                "string": "string",
                                            },
                                            "labels": {
                                                "string": "string",
                                            },
                                        },
                                        "retry": {
                                            "backoff": {
                                                "duration": "string",
                                                "factor": "string",
                                                "max_duration": "string",
                                            },
                                            "limit": "string",
                                        },
                                        "sync_options": ["string"],
                                    },
                                },
                            },
                            "values": {
                                "string": "string",
                            },
                        }],
                        "lists": [{
                            "elements": [{
                                "string": "string",
                            }],
                            "template": {
                                "metadata": {
                                    "annotations": {
                                        "string": "string",
                                    },
                                    "finalizers": ["string"],
                                    "labels": {
                                        "string": "string",
                                    },
                                    "name": "string",
                                    "namespace": "string",
                                },
                                "spec": {
                                    "destination": {
                                        "name": "string",
                                        "namespace": "string",
                                        "server": "string",
                                    },
                                    "ignore_differences": [{
                                        "group": "string",
                                        "jq_path_expressions": ["string"],
                                        "json_pointers": ["string"],
                                        "kind": "string",
                                        "managed_fields_managers": ["string"],
                                        "name": "string",
                                        "namespace": "string",
                                    }],
                                    "infos": [{
                                        "name": "string",
                                        "value": "string",
                                    }],
                                    "project": "string",
                                    "revision_history_limit": 0,
                                    "sources": [{
                                        "chart": "string",
                                        "directory": {
                                            "exclude": "string",
                                            "include": "string",
                                            "jsonnet": {
                                                "ext_vars": [{
                                                    "code": False,
                                                    "name": "string",
                                                    "value": "string",
                                                }],
                                                "libs": ["string"],
                                                "tlas": [{
                                                    "code": False,
                                                    "name": "string",
                                                    "value": "string",
                                                }],
                                            },
                                            "recurse": False,
                                        },
                                        "helm": {
                                            "file_parameters": [{
                                                "name": "string",
                                                "path": "string",
                                            }],
                                            "ignore_missing_value_files": False,
                                            "parameters": [{
                                                "force_string": False,
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "pass_credentials": False,
                                            "release_name": "string",
                                            "skip_crds": False,
                                            "value_files": ["string"],
                                            "values": "string",
                                            "version": "string",
                                        },
                                        "kustomize": {
                                            "common_annotations": {
                                                "string": "string",
                                            },
                                            "common_labels": {
                                                "string": "string",
                                            },
                                            "images": ["string"],
                                            "name_prefix": "string",
                                            "name_suffix": "string",
                                            "patches": [{
                                                "target": {
                                                    "annotation_selector": "string",
                                                    "group": "string",
                                                    "kind": "string",
                                                    "label_selector": "string",
                                                    "name": "string",
                                                    "namespace": "string",
                                                    "version": "string",
                                                },
                                                "options": {
                                                    "string": False,
                                                },
                                                "patch": "string",
                                                "path": "string",
                                            }],
                                            "version": "string",
                                        },
                                        "path": "string",
                                        "plugin": {
                                            "envs": [{
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "name": "string",
                                        },
                                        "ref": "string",
                                        "repo_url": "string",
                                        "target_revision": "string",
                                    }],
                                    "sync_policy": {
                                        "automated": {
                                            "allow_empty": False,
                                            "prune": False,
                                            "self_heal": False,
                                        },
                                        "managed_namespace_metadata": {
                                            "annotations": {
                                                "string": "string",
                                            },
                                            "labels": {
                                                "string": "string",
                                            },
                                        },
                                        "retry": {
                                            "backoff": {
                                                "duration": "string",
                                                "factor": "string",
                                                "max_duration": "string",
                                            },
                                            "limit": "string",
                                        },
                                        "sync_options": ["string"],
                                    },
                                },
                            },
                        }],
                        "matrices": [{
                            "generators": [{
                                "cluster_decision_resources": [{
                                    "config_map_ref": "string",
                                    "label_selector": {
                                        "match_expressions": [{
                                            "key": "string",
                                            "operator": "string",
                                            "values": ["string"],
                                        }],
                                        "match_labels": {
                                            "string": "string",
                                        },
                                    },
                                    "name": "string",
                                    "requeue_after_seconds": "string",
                                    "template": {
                                        "metadata": {
                                            "annotations": {
                                                "string": "string",
                                            },
                                            "finalizers": ["string"],
                                            "labels": {
                                                "string": "string",
                                            },
                                            "name": "string",
                                            "namespace": "string",
                                        },
                                        "spec": {
                                            "destination": {
                                                "name": "string",
                                                "namespace": "string",
                                                "server": "string",
                                            },
                                            "ignore_differences": [{
                                                "group": "string",
                                                "jq_path_expressions": ["string"],
                                                "json_pointers": ["string"],
                                                "kind": "string",
                                                "managed_fields_managers": ["string"],
                                                "name": "string",
                                                "namespace": "string",
                                            }],
                                            "infos": [{
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "project": "string",
                                            "revision_history_limit": 0,
                                            "sources": [{
                                                "chart": "string",
                                                "directory": {
                                                    "exclude": "string",
                                                    "include": "string",
                                                    "jsonnet": {
                                                        "ext_vars": [{
                                                            "code": False,
                                                            "name": "string",
                                                            "value": "string",
                                                        }],
                                                        "libs": ["string"],
                                                        "tlas": [{
                                                            "code": False,
                                                            "name": "string",
                                                            "value": "string",
                                                        }],
                                                    },
                                                    "recurse": False,
                                                },
                                                "helm": {
                                                    "file_parameters": [{
                                                        "name": "string",
                                                        "path": "string",
                                                    }],
                                                    "ignore_missing_value_files": False,
                                                    "parameters": [{
                                                        "force_string": False,
                                                        "name": "string",
                                                        "value": "string",
                                                    }],
                                                    "pass_credentials": False,
                                                    "release_name": "string",
                                                    "skip_crds": False,
                                                    "value_files": ["string"],
                                                    "values": "string",
                                                    "version": "string",
                                                },
                                                "kustomize": {
                                                    "common_annotations": {
                                                        "string": "string",
                                                    },
                                                    "common_labels": {
                                                        "string": "string",
                                                    },
                                                    "images": ["string"],
                                                    "name_prefix": "string",
                                                    "name_suffix": "string",
                                                    "patches": [{
                                                        "target": {
                                                            "annotation_selector": "string",
                                                            "group": "string",
                                                            "kind": "string",
                                                            "label_selector": "string",
                                                            "name": "string",
                                                            "namespace": "string",
                                                            "version": "string",
                                                        },
                                                        "options": {
                                                            "string": False,
                                                        },
                                                        "patch": "string",
                                                        "path": "string",
                                                    }],
                                                    "version": "string",
                                                },
                                                "path": "string",
                                                "plugin": {
                                                    "envs": [{
                                                        "name": "string",
                                                        "value": "string",
                                                    }],
                                                    "name": "string",
                                                },
                                                "ref": "string",
                                                "repo_url": "string",
                                                "target_revision": "string",
                                            }],
                                            "sync_policy": {
                                                "automated": {
                                                    "allow_empty": False,
                                                    "prune": False,
                                                    "self_heal": False,
                                                },
                                                "managed_namespace_metadata": {
                                                    "annotations": {
                                                        "string": "string",
                                                    },
                                                    "labels": {
                                                        "string": "string",
                                                    },
                                                },
                                                "retry": {
                                                    "backoff": {
                                                        "duration": "string",
                                                        "factor": "string",
                                                        "max_duration": "string",
                                                    },
                                                    "limit": "string",
                                                },
                                                "sync_options": ["string"],
                                            },
                                        },
                                    },
                                    "values": {
                                        "string": "string",
                                    },
                                }],
                                "clusters": [{
                                    "enabled": False,
                                    "selector": {
                                        "match_expressions": [{
                                            "key": "string",
                                            "operator": "string",
                                            "values": ["string"],
                                        }],
                                        "match_labels": {
                                            "string": "string",
                                        },
                                    },
                                    "template": {
                                        "metadata": {
                                            "annotations": {
                                                "string": "string",
                                            },
                                            "finalizers": ["string"],
                                            "labels": {
                                                "string": "string",
                                            },
                                            "name": "string",
                                            "namespace": "string",
                                        },
                                        "spec": {
                                            "destination": {
                                                "name": "string",
                                                "namespace": "string",
                                                "server": "string",
                                            },
                                            "ignore_differences": [{
                                                "group": "string",
                                                "jq_path_expressions": ["string"],
                                                "json_pointers": ["string"],
                                                "kind": "string",
                                                "managed_fields_managers": ["string"],
                                                "name": "string",
                                                "namespace": "string",
                                            }],
                                            "infos": [{
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "project": "string",
                                            "revision_history_limit": 0,
                                            "sources": [{
                                                "chart": "string",
                                                "directory": {
                                                    "exclude": "string",
                                                    "include": "string",
                                                    "jsonnet": {
                                                        "ext_vars": [{
                                                            "code": False,
                                                            "name": "string",
                                                            "value": "string",
                                                        }],
                                                        "libs": ["string"],
                                                        "tlas": [{
                                                            "code": False,
                                                            "name": "string",
                                                            "value": "string",
                                                        }],
                                                    },
                                                    "recurse": False,
                                                },
                                                "helm": {
                                                    "file_parameters": [{
                                                        "name": "string",
                                                        "path": "string",
                                                    }],
                                                    "ignore_missing_value_files": False,
                                                    "parameters": [{
                                                        "force_string": False,
                                                        "name": "string",
                                                        "value": "string",
                                                    }],
                                                    "pass_credentials": False,
                                                    "release_name": "string",
                                                    "skip_crds": False,
                                                    "value_files": ["string"],
                                                    "values": "string",
                                                    "version": "string",
                                                },
                                                "kustomize": {
                                                    "common_annotations": {
                                                        "string": "string",
                                                    },
                                                    "common_labels": {
                                                        "string": "string",
                                                    },
                                                    "images": ["string"],
                                                    "name_prefix": "string",
                                                    "name_suffix": "string",
                                                    "patches": [{
                                                        "target": {
                                                            "annotation_selector": "string",
                                                            "group": "string",
                                                            "kind": "string",
                                                            "label_selector": "string",
                                                            "name": "string",
                                                            "namespace": "string",
                                                            "version": "string",
                                                        },
                                                        "options": {
                                                            "string": False,
                                                        },
                                                        "patch": "string",
                                                        "path": "string",
                                                    }],
                                                    "version": "string",
                                                },
                                                "path": "string",
                                                "plugin": {
                                                    "envs": [{
                                                        "name": "string",
                                                        "value": "string",
                                                    }],
                                                    "name": "string",
                                                },
                                                "ref": "string",
                                                "repo_url": "string",
                                                "target_revision": "string",
                                            }],
                                            "sync_policy": {
                                                "automated": {
                                                    "allow_empty": False,
                                                    "prune": False,
                                                    "self_heal": False,
                                                },
                                                "managed_namespace_metadata": {
                                                    "annotations": {
                                                        "string": "string",
                                                    },
                                                    "labels": {
                                                        "string": "string",
                                                    },
                                                },
                                                "retry": {
                                                    "backoff": {
                                                        "duration": "string",
                                                        "factor": "string",
                                                        "max_duration": "string",
                                                    },
                                                    "limit": "string",
                                                },
                                                "sync_options": ["string"],
                                            },
                                        },
                                    },
                                    "values": {
                                        "string": "string",
                                    },
                                }],
                                "gits": [{
                                    "repo_url": "string",
                                    "directories": [{
                                        "path": "string",
                                        "exclude": False,
                                    }],
                                    "files": [{
                                        "path": "string",
                                    }],
                                    "path_param_prefix": "string",
                                    "revision": "string",
                                    "template": {
                                        "metadata": {
                                            "annotations": {
                                                "string": "string",
                                            },
                                            "finalizers": ["string"],
                                            "labels": {
                                                "string": "string",
                                            },
                                            "name": "string",
                                            "namespace": "string",
                                        },
                                        "spec": {
                                            "destination": {
                                                "name": "string",
                                                "namespace": "string",
                                                "server": "string",
                                            },
                                            "ignore_differences": [{
                                                "group": "string",
                                                "jq_path_expressions": ["string"],
                                                "json_pointers": ["string"],
                                                "kind": "string",
                                                "managed_fields_managers": ["string"],
                                                "name": "string",
                                                "namespace": "string",
                                            }],
                                            "infos": [{
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "project": "string",
                                            "revision_history_limit": 0,
                                            "sources": [{
                                                "chart": "string",
                                                "directory": {
                                                    "exclude": "string",
                                                    "include": "string",
                                                    "jsonnet": {
                                                        "ext_vars": [{
                                                            "code": False,
                                                            "name": "string",
                                                            "value": "string",
                                                        }],
                                                        "libs": ["string"],
                                                        "tlas": [{
                                                            "code": False,
                                                            "name": "string",
                                                            "value": "string",
                                                        }],
                                                    },
                                                    "recurse": False,
                                                },
                                                "helm": {
                                                    "file_parameters": [{
                                                        "name": "string",
                                                        "path": "string",
                                                    }],
                                                    "ignore_missing_value_files": False,
                                                    "parameters": [{
                                                        "force_string": False,
                                                        "name": "string",
                                                        "value": "string",
                                                    }],
                                                    "pass_credentials": False,
                                                    "release_name": "string",
                                                    "skip_crds": False,
                                                    "value_files": ["string"],
                                                    "values": "string",
                                                    "version": "string",
                                                },
                                                "kustomize": {
                                                    "common_annotations": {
                                                        "string": "string",
                                                    },
                                                    "common_labels": {
                                                        "string": "string",
                                                    },
                                                    "images": ["string"],
                                                    "name_prefix": "string",
                                                    "name_suffix": "string",
                                                    "patches": [{
                                                        "target": {
                                                            "annotation_selector": "string",
                                                            "group": "string",
                                                            "kind": "string",
                                                            "label_selector": "string",
                                                            "name": "string",
                                                            "namespace": "string",
                                                            "version": "string",
                                                        },
                                                        "options": {
                                                            "string": False,
                                                        },
                                                        "patch": "string",
                                                        "path": "string",
                                                    }],
                                                    "version": "string",
                                                },
                                                "path": "string",
                                                "plugin": {
                                                    "envs": [{
                                                        "name": "string",
                                                        "value": "string",
                                                    }],
                                                    "name": "string",
                                                },
                                                "ref": "string",
                                                "repo_url": "string",
                                                "target_revision": "string",
                                            }],
                                            "sync_policy": {
                                                "automated": {
                                                    "allow_empty": False,
                                                    "prune": False,
                                                    "self_heal": False,
                                                },
                                                "managed_namespace_metadata": {
                                                    "annotations": {
                                                        "string": "string",
                                                    },
                                                    "labels": {
                                                        "string": "string",
                                                    },
                                                },
                                                "retry": {
                                                    "backoff": {
                                                        "duration": "string",
                                                        "factor": "string",
                                                        "max_duration": "string",
                                                    },
                                                    "limit": "string",
                                                },
                                                "sync_options": ["string"],
                                            },
                                        },
                                    },
                                    "values": {
                                        "string": "string",
                                    },
                                }],
                                "lists": [{
                                    "elements": [{
                                        "string": "string",
                                    }],
                                    "template": {
                                        "metadata": {
                                            "annotations": {
                                                "string": "string",
                                            },
                                            "finalizers": ["string"],
                                            "labels": {
                                                "string": "string",
                                            },
                                            "name": "string",
                                            "namespace": "string",
                                        },
                                        "spec": {
                                            "destination": {
                                                "name": "string",
                                                "namespace": "string",
                                                "server": "string",
                                            },
                                            "ignore_differences": [{
                                                "group": "string",
                                                "jq_path_expressions": ["string"],
                                                "json_pointers": ["string"],
                                                "kind": "string",
                                                "managed_fields_managers": ["string"],
                                                "name": "string",
                                                "namespace": "string",
                                            }],
                                            "infos": [{
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "project": "string",
                                            "revision_history_limit": 0,
                                            "sources": [{
                                                "chart": "string",
                                                "directory": {
                                                    "exclude": "string",
                                                    "include": "string",
                                                    "jsonnet": {
                                                        "ext_vars": [{
                                                            "code": False,
                                                            "name": "string",
                                                            "value": "string",
                                                        }],
                                                        "libs": ["string"],
                                                        "tlas": [{
                                                            "code": False,
                                                            "name": "string",
                                                            "value": "string",
                                                        }],
                                                    },
                                                    "recurse": False,
                                                },
                                                "helm": {
                                                    "file_parameters": [{
                                                        "name": "string",
                                                        "path": "string",
                                                    }],
                                                    "ignore_missing_value_files": False,
                                                    "parameters": [{
                                                        "force_string": False,
                                                        "name": "string",
                                                        "value": "string",
                                                    }],
                                                    "pass_credentials": False,
                                                    "release_name": "string",
                                                    "skip_crds": False,
                                                    "value_files": ["string"],
                                                    "values": "string",
                                                    "version": "string",
                                                },
                                                "kustomize": {
                                                    "common_annotations": {
                                                        "string": "string",
                                                    },
                                                    "common_labels": {
                                                        "string": "string",
                                                    },
                                                    "images": ["string"],
                                                    "name_prefix": "string",
                                                    "name_suffix": "string",
                                                    "patches": [{
                                                        "target": {
                                                            "annotation_selector": "string",
                                                            "group": "string",
                                                            "kind": "string",
                                                            "label_selector": "string",
                                                            "name": "string",
                                                            "namespace": "string",
                                                            "version": "string",
                                                        },
                                                        "options": {
                                                            "string": False,
                                                        },
                                                        "patch": "string",
                                                        "path": "string",
                                                    }],
                                                    "version": "string",
                                                },
                                                "path": "string",
                                                "plugin": {
                                                    "envs": [{
                                                        "name": "string",
                                                        "value": "string",
                                                    }],
                                                    "name": "string",
                                                },
                                                "ref": "string",
                                                "repo_url": "string",
                                                "target_revision": "string",
                                            }],
                                            "sync_policy": {
                                                "automated": {
                                                    "allow_empty": False,
                                                    "prune": False,
                                                    "self_heal": False,
                                                },
                                                "managed_namespace_metadata": {
                                                    "annotations": {
                                                        "string": "string",
                                                    },
                                                    "labels": {
                                                        "string": "string",
                                                    },
                                                },
                                                "retry": {
                                                    "backoff": {
                                                        "duration": "string",
                                                        "factor": "string",
                                                        "max_duration": "string",
                                                    },
                                                    "limit": "string",
                                                },
                                                "sync_options": ["string"],
                                            },
                                        },
                                    },
                                }],
                                "pull_requests": [{
                                    "bitbucket_server": {
                                        "api": "string",
                                        "project": "string",
                                        "repo": "string",
                                        "basic_auth": {
                                            "password_ref": {
                                                "key": "string",
                                                "secret_name": "string",
                                            },
                                            "username": "string",
                                        },
                                    },
                                    "filters": [{
                                        "branch_match": "string",
                                    }],
                                    "gitea": {
                                        "api": "string",
                                        "owner": "string",
                                        "repo": "string",
                                        "insecure": False,
                                        "token_ref": {
                                            "key": "string",
                                            "secret_name": "string",
                                        },
                                    },
                                    "github": {
                                        "owner": "string",
                                        "repo": "string",
                                        "api": "string",
                                        "app_secret_name": "string",
                                        "labels": ["string"],
                                        "token_ref": {
                                            "key": "string",
                                            "secret_name": "string",
                                        },
                                    },
                                    "gitlab": {
                                        "project": "string",
                                        "api": "string",
                                        "labels": ["string"],
                                        "pull_request_state": "string",
                                        "token_ref": {
                                            "key": "string",
                                            "secret_name": "string",
                                        },
                                    },
                                    "requeue_after_seconds": "string",
                                    "template": {
                                        "metadata": {
                                            "annotations": {
                                                "string": "string",
                                            },
                                            "finalizers": ["string"],
                                            "labels": {
                                                "string": "string",
                                            },
                                            "name": "string",
                                            "namespace": "string",
                                        },
                                        "spec": {
                                            "destination": {
                                                "name": "string",
                                                "namespace": "string",
                                                "server": "string",
                                            },
                                            "ignore_differences": [{
                                                "group": "string",
                                                "jq_path_expressions": ["string"],
                                                "json_pointers": ["string"],
                                                "kind": "string",
                                                "managed_fields_managers": ["string"],
                                                "name": "string",
                                                "namespace": "string",
                                            }],
                                            "infos": [{
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "project": "string",
                                            "revision_history_limit": 0,
                                            "sources": [{
                                                "chart": "string",
                                                "directory": {
                                                    "exclude": "string",
                                                    "include": "string",
                                                    "jsonnet": {
                                                        "ext_vars": [{
                                                            "code": False,
                                                            "name": "string",
                                                            "value": "string",
                                                        }],
                                                        "libs": ["string"],
                                                        "tlas": [{
                                                            "code": False,
                                                            "name": "string",
                                                            "value": "string",
                                                        }],
                                                    },
                                                    "recurse": False,
                                                },
                                                "helm": {
                                                    "file_parameters": [{
                                                        "name": "string",
                                                        "path": "string",
                                                    }],
                                                    "ignore_missing_value_files": False,
                                                    "parameters": [{
                                                        "force_string": False,
                                                        "name": "string",
                                                        "value": "string",
                                                    }],
                                                    "pass_credentials": False,
                                                    "release_name": "string",
                                                    "skip_crds": False,
                                                    "value_files": ["string"],
                                                    "values": "string",
                                                    "version": "string",
                                                },
                                                "kustomize": {
                                                    "common_annotations": {
                                                        "string": "string",
                                                    },
                                                    "common_labels": {
                                                        "string": "string",
                                                    },
                                                    "images": ["string"],
                                                    "name_prefix": "string",
                                                    "name_suffix": "string",
                                                    "patches": [{
                                                        "target": {
                                                            "annotation_selector": "string",
                                                            "group": "string",
                                                            "kind": "string",
                                                            "label_selector": "string",
                                                            "name": "string",
                                                            "namespace": "string",
                                                            "version": "string",
                                                        },
                                                        "options": {
                                                            "string": False,
                                                        },
                                                        "patch": "string",
                                                        "path": "string",
                                                    }],
                                                    "version": "string",
                                                },
                                                "path": "string",
                                                "plugin": {
                                                    "envs": [{
                                                        "name": "string",
                                                        "value": "string",
                                                    }],
                                                    "name": "string",
                                                },
                                                "ref": "string",
                                                "repo_url": "string",
                                                "target_revision": "string",
                                            }],
                                            "sync_policy": {
                                                "automated": {
                                                    "allow_empty": False,
                                                    "prune": False,
                                                    "self_heal": False,
                                                },
                                                "managed_namespace_metadata": {
                                                    "annotations": {
                                                        "string": "string",
                                                    },
                                                    "labels": {
                                                        "string": "string",
                                                    },
                                                },
                                                "retry": {
                                                    "backoff": {
                                                        "duration": "string",
                                                        "factor": "string",
                                                        "max_duration": "string",
                                                    },
                                                    "limit": "string",
                                                },
                                                "sync_options": ["string"],
                                            },
                                        },
                                    },
                                }],
                                "scm_providers": [{
                                    "azure_devops": {
                                        "organization": "string",
                                        "team_project": "string",
                                        "access_token_ref": {
                                            "key": "string",
                                            "secret_name": "string",
                                        },
                                        "all_branches": False,
                                        "api": "string",
                                    },
                                    "bitbucket_cloud": {
                                        "owner": "string",
                                        "user": "string",
                                        "all_branches": False,
                                        "app_password_ref": {
                                            "key": "string",
                                            "secret_name": "string",
                                        },
                                    },
                                    "bitbucket_server": {
                                        "api": "string",
                                        "project": "string",
                                        "all_branches": False,
                                        "basic_auth": {
                                            "password_ref": {
                                                "key": "string",
                                                "secret_name": "string",
                                            },
                                            "username": "string",
                                        },
                                    },
                                    "clone_protocol": "string",
                                    "filters": [{
                                        "branch_match": "string",
                                        "label_match": "string",
                                        "paths_do_not_exists": ["string"],
                                        "paths_exists": ["string"],
                                        "repository_match": "string",
                                    }],
                                    "gitea": {
                                        "owner": "string",
                                        "all_branches": False,
                                        "api": "string",
                                        "insecure": False,
                                        "token_ref": {
                                            "key": "string",
                                            "secret_name": "string",
                                        },
                                    },
                                    "github": {
                                        "organization": "string",
                                        "all_branches": False,
                                        "api": "string",
                                        "app_secret_name": "string",
                                        "token_ref": {
                                            "key": "string",
                                            "secret_name": "string",
                                        },
                                    },
                                    "gitlab": {
                                        "group": "string",
                                        "all_branches": False,
                                        "api": "string",
                                        "include_subgroups": False,
                                        "token_ref": {
                                            "key": "string",
                                            "secret_name": "string",
                                        },
                                    },
                                    "requeue_after_seconds": "string",
                                    "template": {
                                        "metadata": {
                                            "annotations": {
                                                "string": "string",
                                            },
                                            "finalizers": ["string"],
                                            "labels": {
                                                "string": "string",
                                            },
                                            "name": "string",
                                            "namespace": "string",
                                        },
                                        "spec": {
                                            "destination": {
                                                "name": "string",
                                                "namespace": "string",
                                                "server": "string",
                                            },
                                            "ignore_differences": [{
                                                "group": "string",
                                                "jq_path_expressions": ["string"],
                                                "json_pointers": ["string"],
                                                "kind": "string",
                                                "managed_fields_managers": ["string"],
                                                "name": "string",
                                                "namespace": "string",
                                            }],
                                            "infos": [{
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "project": "string",
                                            "revision_history_limit": 0,
                                            "sources": [{
                                                "chart": "string",
                                                "directory": {
                                                    "exclude": "string",
                                                    "include": "string",
                                                    "jsonnet": {
                                                        "ext_vars": [{
                                                            "code": False,
                                                            "name": "string",
                                                            "value": "string",
                                                        }],
                                                        "libs": ["string"],
                                                        "tlas": [{
                                                            "code": False,
                                                            "name": "string",
                                                            "value": "string",
                                                        }],
                                                    },
                                                    "recurse": False,
                                                },
                                                "helm": {
                                                    "file_parameters": [{
                                                        "name": "string",
                                                        "path": "string",
                                                    }],
                                                    "ignore_missing_value_files": False,
                                                    "parameters": [{
                                                        "force_string": False,
                                                        "name": "string",
                                                        "value": "string",
                                                    }],
                                                    "pass_credentials": False,
                                                    "release_name": "string",
                                                    "skip_crds": False,
                                                    "value_files": ["string"],
                                                    "values": "string",
                                                    "version": "string",
                                                },
                                                "kustomize": {
                                                    "common_annotations": {
                                                        "string": "string",
                                                    },
                                                    "common_labels": {
                                                        "string": "string",
                                                    },
                                                    "images": ["string"],
                                                    "name_prefix": "string",
                                                    "name_suffix": "string",
                                                    "patches": [{
                                                        "target": {
                                                            "annotation_selector": "string",
                                                            "group": "string",
                                                            "kind": "string",
                                                            "label_selector": "string",
                                                            "name": "string",
                                                            "namespace": "string",
                                                            "version": "string",
                                                        },
                                                        "options": {
                                                            "string": False,
                                                        },
                                                        "patch": "string",
                                                        "path": "string",
                                                    }],
                                                    "version": "string",
                                                },
                                                "path": "string",
                                                "plugin": {
                                                    "envs": [{
                                                        "name": "string",
                                                        "value": "string",
                                                    }],
                                                    "name": "string",
                                                },
                                                "ref": "string",
                                                "repo_url": "string",
                                                "target_revision": "string",
                                            }],
                                            "sync_policy": {
                                                "automated": {
                                                    "allow_empty": False,
                                                    "prune": False,
                                                    "self_heal": False,
                                                },
                                                "managed_namespace_metadata": {
                                                    "annotations": {
                                                        "string": "string",
                                                    },
                                                    "labels": {
                                                        "string": "string",
                                                    },
                                                },
                                                "retry": {
                                                    "backoff": {
                                                        "duration": "string",
                                                        "factor": "string",
                                                        "max_duration": "string",
                                                    },
                                                    "limit": "string",
                                                },
                                                "sync_options": ["string"],
                                            },
                                        },
                                    },
                                }],
                                "selector": {
                                    "match_expressions": [{
                                        "key": "string",
                                        "operator": "string",
                                        "values": ["string"],
                                    }],
                                    "match_labels": {
                                        "string": "string",
                                    },
                                },
                            }],
                            "template": {
                                "metadata": {
                                    "annotations": {
                                        "string": "string",
                                    },
                                    "finalizers": ["string"],
                                    "labels": {
                                        "string": "string",
                                    },
                                    "name": "string",
                                    "namespace": "string",
                                },
                                "spec": {
                                    "destination": {
                                        "name": "string",
                                        "namespace": "string",
                                        "server": "string",
                                    },
                                    "ignore_differences": [{
                                        "group": "string",
                                        "jq_path_expressions": ["string"],
                                        "json_pointers": ["string"],
                                        "kind": "string",
                                        "managed_fields_managers": ["string"],
                                        "name": "string",
                                        "namespace": "string",
                                    }],
                                    "infos": [{
                                        "name": "string",
                                        "value": "string",
                                    }],
                                    "project": "string",
                                    "revision_history_limit": 0,
                                    "sources": [{
                                        "chart": "string",
                                        "directory": {
                                            "exclude": "string",
                                            "include": "string",
                                            "jsonnet": {
                                                "ext_vars": [{
                                                    "code": False,
                                                    "name": "string",
                                                    "value": "string",
                                                }],
                                                "libs": ["string"],
                                                "tlas": [{
                                                    "code": False,
                                                    "name": "string",
                                                    "value": "string",
                                                }],
                                            },
                                            "recurse": False,
                                        },
                                        "helm": {
                                            "file_parameters": [{
                                                "name": "string",
                                                "path": "string",
                                            }],
                                            "ignore_missing_value_files": False,
                                            "parameters": [{
                                                "force_string": False,
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "pass_credentials": False,
                                            "release_name": "string",
                                            "skip_crds": False,
                                            "value_files": ["string"],
                                            "values": "string",
                                            "version": "string",
                                        },
                                        "kustomize": {
                                            "common_annotations": {
                                                "string": "string",
                                            },
                                            "common_labels": {
                                                "string": "string",
                                            },
                                            "images": ["string"],
                                            "name_prefix": "string",
                                            "name_suffix": "string",
                                            "patches": [{
                                                "target": {
                                                    "annotation_selector": "string",
                                                    "group": "string",
                                                    "kind": "string",
                                                    "label_selector": "string",
                                                    "name": "string",
                                                    "namespace": "string",
                                                    "version": "string",
                                                },
                                                "options": {
                                                    "string": False,
                                                },
                                                "patch": "string",
                                                "path": "string",
                                            }],
                                            "version": "string",
                                        },
                                        "path": "string",
                                        "plugin": {
                                            "envs": [{
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "name": "string",
                                        },
                                        "ref": "string",
                                        "repo_url": "string",
                                        "target_revision": "string",
                                    }],
                                    "sync_policy": {
                                        "automated": {
                                            "allow_empty": False,
                                            "prune": False,
                                            "self_heal": False,
                                        },
                                        "managed_namespace_metadata": {
                                            "annotations": {
                                                "string": "string",
                                            },
                                            "labels": {
                                                "string": "string",
                                            },
                                        },
                                        "retry": {
                                            "backoff": {
                                                "duration": "string",
                                                "factor": "string",
                                                "max_duration": "string",
                                            },
                                            "limit": "string",
                                        },
                                        "sync_options": ["string"],
                                    },
                                },
                            },
                        }],
                        "merges": [{
                            "generators": [{
                                "cluster_decision_resources": [{
                                    "config_map_ref": "string",
                                    "label_selector": {
                                        "match_expressions": [{
                                            "key": "string",
                                            "operator": "string",
                                            "values": ["string"],
                                        }],
                                        "match_labels": {
                                            "string": "string",
                                        },
                                    },
                                    "name": "string",
                                    "requeue_after_seconds": "string",
                                    "template": {
                                        "metadata": {
                                            "annotations": {
                                                "string": "string",
                                            },
                                            "finalizers": ["string"],
                                            "labels": {
                                                "string": "string",
                                            },
                                            "name": "string",
                                            "namespace": "string",
                                        },
                                        "spec": {
                                            "destination": {
                                                "name": "string",
                                                "namespace": "string",
                                                "server": "string",
                                            },
                                            "ignore_differences": [{
                                                "group": "string",
                                                "jq_path_expressions": ["string"],
                                                "json_pointers": ["string"],
                                                "kind": "string",
                                                "managed_fields_managers": ["string"],
                                                "name": "string",
                                                "namespace": "string",
                                            }],
                                            "infos": [{
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "project": "string",
                                            "revision_history_limit": 0,
                                            "sources": [{
                                                "chart": "string",
                                                "directory": {
                                                    "exclude": "string",
                                                    "include": "string",
                                                    "jsonnet": {
                                                        "ext_vars": [{
                                                            "code": False,
                                                            "name": "string",
                                                            "value": "string",
                                                        }],
                                                        "libs": ["string"],
                                                        "tlas": [{
                                                            "code": False,
                                                            "name": "string",
                                                            "value": "string",
                                                        }],
                                                    },
                                                    "recurse": False,
                                                },
                                                "helm": {
                                                    "file_parameters": [{
                                                        "name": "string",
                                                        "path": "string",
                                                    }],
                                                    "ignore_missing_value_files": False,
                                                    "parameters": [{
                                                        "force_string": False,
                                                        "name": "string",
                                                        "value": "string",
                                                    }],
                                                    "pass_credentials": False,
                                                    "release_name": "string",
                                                    "skip_crds": False,
                                                    "value_files": ["string"],
                                                    "values": "string",
                                                    "version": "string",
                                                },
                                                "kustomize": {
                                                    "common_annotations": {
                                                        "string": "string",
                                                    },
                                                    "common_labels": {
                                                        "string": "string",
                                                    },
                                                    "images": ["string"],
                                                    "name_prefix": "string",
                                                    "name_suffix": "string",
                                                    "patches": [{
                                                        "target": {
                                                            "annotation_selector": "string",
                                                            "group": "string",
                                                            "kind": "string",
                                                            "label_selector": "string",
                                                            "name": "string",
                                                            "namespace": "string",
                                                            "version": "string",
                                                        },
                                                        "options": {
                                                            "string": False,
                                                        },
                                                        "patch": "string",
                                                        "path": "string",
                                                    }],
                                                    "version": "string",
                                                },
                                                "path": "string",
                                                "plugin": {
                                                    "envs": [{
                                                        "name": "string",
                                                        "value": "string",
                                                    }],
                                                    "name": "string",
                                                },
                                                "ref": "string",
                                                "repo_url": "string",
                                                "target_revision": "string",
                                            }],
                                            "sync_policy": {
                                                "automated": {
                                                    "allow_empty": False,
                                                    "prune": False,
                                                    "self_heal": False,
                                                },
                                                "managed_namespace_metadata": {
                                                    "annotations": {
                                                        "string": "string",
                                                    },
                                                    "labels": {
                                                        "string": "string",
                                                    },
                                                },
                                                "retry": {
                                                    "backoff": {
                                                        "duration": "string",
                                                        "factor": "string",
                                                        "max_duration": "string",
                                                    },
                                                    "limit": "string",
                                                },
                                                "sync_options": ["string"],
                                            },
                                        },
                                    },
                                    "values": {
                                        "string": "string",
                                    },
                                }],
                                "clusters": [{
                                    "enabled": False,
                                    "selector": {
                                        "match_expressions": [{
                                            "key": "string",
                                            "operator": "string",
                                            "values": ["string"],
                                        }],
                                        "match_labels": {
                                            "string": "string",
                                        },
                                    },
                                    "template": {
                                        "metadata": {
                                            "annotations": {
                                                "string": "string",
                                            },
                                            "finalizers": ["string"],
                                            "labels": {
                                                "string": "string",
                                            },
                                            "name": "string",
                                            "namespace": "string",
                                        },
                                        "spec": {
                                            "destination": {
                                                "name": "string",
                                                "namespace": "string",
                                                "server": "string",
                                            },
                                            "ignore_differences": [{
                                                "group": "string",
                                                "jq_path_expressions": ["string"],
                                                "json_pointers": ["string"],
                                                "kind": "string",
                                                "managed_fields_managers": ["string"],
                                                "name": "string",
                                                "namespace": "string",
                                            }],
                                            "infos": [{
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "project": "string",
                                            "revision_history_limit": 0,
                                            "sources": [{
                                                "chart": "string",
                                                "directory": {
                                                    "exclude": "string",
                                                    "include": "string",
                                                    "jsonnet": {
                                                        "ext_vars": [{
                                                            "code": False,
                                                            "name": "string",
                                                            "value": "string",
                                                        }],
                                                        "libs": ["string"],
                                                        "tlas": [{
                                                            "code": False,
                                                            "name": "string",
                                                            "value": "string",
                                                        }],
                                                    },
                                                    "recurse": False,
                                                },
                                                "helm": {
                                                    "file_parameters": [{
                                                        "name": "string",
                                                        "path": "string",
                                                    }],
                                                    "ignore_missing_value_files": False,
                                                    "parameters": [{
                                                        "force_string": False,
                                                        "name": "string",
                                                        "value": "string",
                                                    }],
                                                    "pass_credentials": False,
                                                    "release_name": "string",
                                                    "skip_crds": False,
                                                    "value_files": ["string"],
                                                    "values": "string",
                                                    "version": "string",
                                                },
                                                "kustomize": {
                                                    "common_annotations": {
                                                        "string": "string",
                                                    },
                                                    "common_labels": {
                                                        "string": "string",
                                                    },
                                                    "images": ["string"],
                                                    "name_prefix": "string",
                                                    "name_suffix": "string",
                                                    "patches": [{
                                                        "target": {
                                                            "annotation_selector": "string",
                                                            "group": "string",
                                                            "kind": "string",
                                                            "label_selector": "string",
                                                            "name": "string",
                                                            "namespace": "string",
                                                            "version": "string",
                                                        },
                                                        "options": {
                                                            "string": False,
                                                        },
                                                        "patch": "string",
                                                        "path": "string",
                                                    }],
                                                    "version": "string",
                                                },
                                                "path": "string",
                                                "plugin": {
                                                    "envs": [{
                                                        "name": "string",
                                                        "value": "string",
                                                    }],
                                                    "name": "string",
                                                },
                                                "ref": "string",
                                                "repo_url": "string",
                                                "target_revision": "string",
                                            }],
                                            "sync_policy": {
                                                "automated": {
                                                    "allow_empty": False,
                                                    "prune": False,
                                                    "self_heal": False,
                                                },
                                                "managed_namespace_metadata": {
                                                    "annotations": {
                                                        "string": "string",
                                                    },
                                                    "labels": {
                                                        "string": "string",
                                                    },
                                                },
                                                "retry": {
                                                    "backoff": {
                                                        "duration": "string",
                                                        "factor": "string",
                                                        "max_duration": "string",
                                                    },
                                                    "limit": "string",
                                                },
                                                "sync_options": ["string"],
                                            },
                                        },
                                    },
                                    "values": {
                                        "string": "string",
                                    },
                                }],
                                "gits": [{
                                    "repo_url": "string",
                                    "directories": [{
                                        "path": "string",
                                        "exclude": False,
                                    }],
                                    "files": [{
                                        "path": "string",
                                    }],
                                    "path_param_prefix": "string",
                                    "revision": "string",
                                    "template": {
                                        "metadata": {
                                            "annotations": {
                                                "string": "string",
                                            },
                                            "finalizers": ["string"],
                                            "labels": {
                                                "string": "string",
                                            },
                                            "name": "string",
                                            "namespace": "string",
                                        },
                                        "spec": {
                                            "destination": {
                                                "name": "string",
                                                "namespace": "string",
                                                "server": "string",
                                            },
                                            "ignore_differences": [{
                                                "group": "string",
                                                "jq_path_expressions": ["string"],
                                                "json_pointers": ["string"],
                                                "kind": "string",
                                                "managed_fields_managers": ["string"],
                                                "name": "string",
                                                "namespace": "string",
                                            }],
                                            "infos": [{
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "project": "string",
                                            "revision_history_limit": 0,
                                            "sources": [{
                                                "chart": "string",
                                                "directory": {
                                                    "exclude": "string",
                                                    "include": "string",
                                                    "jsonnet": {
                                                        "ext_vars": [{
                                                            "code": False,
                                                            "name": "string",
                                                            "value": "string",
                                                        }],
                                                        "libs": ["string"],
                                                        "tlas": [{
                                                            "code": False,
                                                            "name": "string",
                                                            "value": "string",
                                                        }],
                                                    },
                                                    "recurse": False,
                                                },
                                                "helm": {
                                                    "file_parameters": [{
                                                        "name": "string",
                                                        "path": "string",
                                                    }],
                                                    "ignore_missing_value_files": False,
                                                    "parameters": [{
                                                        "force_string": False,
                                                        "name": "string",
                                                        "value": "string",
                                                    }],
                                                    "pass_credentials": False,
                                                    "release_name": "string",
                                                    "skip_crds": False,
                                                    "value_files": ["string"],
                                                    "values": "string",
                                                    "version": "string",
                                                },
                                                "kustomize": {
                                                    "common_annotations": {
                                                        "string": "string",
                                                    },
                                                    "common_labels": {
                                                        "string": "string",
                                                    },
                                                    "images": ["string"],
                                                    "name_prefix": "string",
                                                    "name_suffix": "string",
                                                    "patches": [{
                                                        "target": {
                                                            "annotation_selector": "string",
                                                            "group": "string",
                                                            "kind": "string",
                                                            "label_selector": "string",
                                                            "name": "string",
                                                            "namespace": "string",
                                                            "version": "string",
                                                        },
                                                        "options": {
                                                            "string": False,
                                                        },
                                                        "patch": "string",
                                                        "path": "string",
                                                    }],
                                                    "version": "string",
                                                },
                                                "path": "string",
                                                "plugin": {
                                                    "envs": [{
                                                        "name": "string",
                                                        "value": "string",
                                                    }],
                                                    "name": "string",
                                                },
                                                "ref": "string",
                                                "repo_url": "string",
                                                "target_revision": "string",
                                            }],
                                            "sync_policy": {
                                                "automated": {
                                                    "allow_empty": False,
                                                    "prune": False,
                                                    "self_heal": False,
                                                },
                                                "managed_namespace_metadata": {
                                                    "annotations": {
                                                        "string": "string",
                                                    },
                                                    "labels": {
                                                        "string": "string",
                                                    },
                                                },
                                                "retry": {
                                                    "backoff": {
                                                        "duration": "string",
                                                        "factor": "string",
                                                        "max_duration": "string",
                                                    },
                                                    "limit": "string",
                                                },
                                                "sync_options": ["string"],
                                            },
                                        },
                                    },
                                    "values": {
                                        "string": "string",
                                    },
                                }],
                                "lists": [{
                                    "elements": [{
                                        "string": "string",
                                    }],
                                    "template": {
                                        "metadata": {
                                            "annotations": {
                                                "string": "string",
                                            },
                                            "finalizers": ["string"],
                                            "labels": {
                                                "string": "string",
                                            },
                                            "name": "string",
                                            "namespace": "string",
                                        },
                                        "spec": {
                                            "destination": {
                                                "name": "string",
                                                "namespace": "string",
                                                "server": "string",
                                            },
                                            "ignore_differences": [{
                                                "group": "string",
                                                "jq_path_expressions": ["string"],
                                                "json_pointers": ["string"],
                                                "kind": "string",
                                                "managed_fields_managers": ["string"],
                                                "name": "string",
                                                "namespace": "string",
                                            }],
                                            "infos": [{
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "project": "string",
                                            "revision_history_limit": 0,
                                            "sources": [{
                                                "chart": "string",
                                                "directory": {
                                                    "exclude": "string",
                                                    "include": "string",
                                                    "jsonnet": {
                                                        "ext_vars": [{
                                                            "code": False,
                                                            "name": "string",
                                                            "value": "string",
                                                        }],
                                                        "libs": ["string"],
                                                        "tlas": [{
                                                            "code": False,
                                                            "name": "string",
                                                            "value": "string",
                                                        }],
                                                    },
                                                    "recurse": False,
                                                },
                                                "helm": {
                                                    "file_parameters": [{
                                                        "name": "string",
                                                        "path": "string",
                                                    }],
                                                    "ignore_missing_value_files": False,
                                                    "parameters": [{
                                                        "force_string": False,
                                                        "name": "string",
                                                        "value": "string",
                                                    }],
                                                    "pass_credentials": False,
                                                    "release_name": "string",
                                                    "skip_crds": False,
                                                    "value_files": ["string"],
                                                    "values": "string",
                                                    "version": "string",
                                                },
                                                "kustomize": {
                                                    "common_annotations": {
                                                        "string": "string",
                                                    },
                                                    "common_labels": {
                                                        "string": "string",
                                                    },
                                                    "images": ["string"],
                                                    "name_prefix": "string",
                                                    "name_suffix": "string",
                                                    "patches": [{
                                                        "target": {
                                                            "annotation_selector": "string",
                                                            "group": "string",
                                                            "kind": "string",
                                                            "label_selector": "string",
                                                            "name": "string",
                                                            "namespace": "string",
                                                            "version": "string",
                                                        },
                                                        "options": {
                                                            "string": False,
                                                        },
                                                        "patch": "string",
                                                        "path": "string",
                                                    }],
                                                    "version": "string",
                                                },
                                                "path": "string",
                                                "plugin": {
                                                    "envs": [{
                                                        "name": "string",
                                                        "value": "string",
                                                    }],
                                                    "name": "string",
                                                },
                                                "ref": "string",
                                                "repo_url": "string",
                                                "target_revision": "string",
                                            }],
                                            "sync_policy": {
                                                "automated": {
                                                    "allow_empty": False,
                                                    "prune": False,
                                                    "self_heal": False,
                                                },
                                                "managed_namespace_metadata": {
                                                    "annotations": {
                                                        "string": "string",
                                                    },
                                                    "labels": {
                                                        "string": "string",
                                                    },
                                                },
                                                "retry": {
                                                    "backoff": {
                                                        "duration": "string",
                                                        "factor": "string",
                                                        "max_duration": "string",
                                                    },
                                                    "limit": "string",
                                                },
                                                "sync_options": ["string"],
                                            },
                                        },
                                    },
                                }],
                                "pull_requests": [{
                                    "bitbucket_server": {
                                        "api": "string",
                                        "project": "string",
                                        "repo": "string",
                                        "basic_auth": {
                                            "password_ref": {
                                                "key": "string",
                                                "secret_name": "string",
                                            },
                                            "username": "string",
                                        },
                                    },
                                    "filters": [{
                                        "branch_match": "string",
                                    }],
                                    "gitea": {
                                        "api": "string",
                                        "owner": "string",
                                        "repo": "string",
                                        "insecure": False,
                                        "token_ref": {
                                            "key": "string",
                                            "secret_name": "string",
                                        },
                                    },
                                    "github": {
                                        "owner": "string",
                                        "repo": "string",
                                        "api": "string",
                                        "app_secret_name": "string",
                                        "labels": ["string"],
                                        "token_ref": {
                                            "key": "string",
                                            "secret_name": "string",
                                        },
                                    },
                                    "gitlab": {
                                        "project": "string",
                                        "api": "string",
                                        "labels": ["string"],
                                        "pull_request_state": "string",
                                        "token_ref": {
                                            "key": "string",
                                            "secret_name": "string",
                                        },
                                    },
                                    "requeue_after_seconds": "string",
                                    "template": {
                                        "metadata": {
                                            "annotations": {
                                                "string": "string",
                                            },
                                            "finalizers": ["string"],
                                            "labels": {
                                                "string": "string",
                                            },
                                            "name": "string",
                                            "namespace": "string",
                                        },
                                        "spec": {
                                            "destination": {
                                                "name": "string",
                                                "namespace": "string",
                                                "server": "string",
                                            },
                                            "ignore_differences": [{
                                                "group": "string",
                                                "jq_path_expressions": ["string"],
                                                "json_pointers": ["string"],
                                                "kind": "string",
                                                "managed_fields_managers": ["string"],
                                                "name": "string",
                                                "namespace": "string",
                                            }],
                                            "infos": [{
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "project": "string",
                                            "revision_history_limit": 0,
                                            "sources": [{
                                                "chart": "string",
                                                "directory": {
                                                    "exclude": "string",
                                                    "include": "string",
                                                    "jsonnet": {
                                                        "ext_vars": [{
                                                            "code": False,
                                                            "name": "string",
                                                            "value": "string",
                                                        }],
                                                        "libs": ["string"],
                                                        "tlas": [{
                                                            "code": False,
                                                            "name": "string",
                                                            "value": "string",
                                                        }],
                                                    },
                                                    "recurse": False,
                                                },
                                                "helm": {
                                                    "file_parameters": [{
                                                        "name": "string",
                                                        "path": "string",
                                                    }],
                                                    "ignore_missing_value_files": False,
                                                    "parameters": [{
                                                        "force_string": False,
                                                        "name": "string",
                                                        "value": "string",
                                                    }],
                                                    "pass_credentials": False,
                                                    "release_name": "string",
                                                    "skip_crds": False,
                                                    "value_files": ["string"],
                                                    "values": "string",
                                                    "version": "string",
                                                },
                                                "kustomize": {
                                                    "common_annotations": {
                                                        "string": "string",
                                                    },
                                                    "common_labels": {
                                                        "string": "string",
                                                    },
                                                    "images": ["string"],
                                                    "name_prefix": "string",
                                                    "name_suffix": "string",
                                                    "patches": [{
                                                        "target": {
                                                            "annotation_selector": "string",
                                                            "group": "string",
                                                            "kind": "string",
                                                            "label_selector": "string",
                                                            "name": "string",
                                                            "namespace": "string",
                                                            "version": "string",
                                                        },
                                                        "options": {
                                                            "string": False,
                                                        },
                                                        "patch": "string",
                                                        "path": "string",
                                                    }],
                                                    "version": "string",
                                                },
                                                "path": "string",
                                                "plugin": {
                                                    "envs": [{
                                                        "name": "string",
                                                        "value": "string",
                                                    }],
                                                    "name": "string",
                                                },
                                                "ref": "string",
                                                "repo_url": "string",
                                                "target_revision": "string",
                                            }],
                                            "sync_policy": {
                                                "automated": {
                                                    "allow_empty": False,
                                                    "prune": False,
                                                    "self_heal": False,
                                                },
                                                "managed_namespace_metadata": {
                                                    "annotations": {
                                                        "string": "string",
                                                    },
                                                    "labels": {
                                                        "string": "string",
                                                    },
                                                },
                                                "retry": {
                                                    "backoff": {
                                                        "duration": "string",
                                                        "factor": "string",
                                                        "max_duration": "string",
                                                    },
                                                    "limit": "string",
                                                },
                                                "sync_options": ["string"],
                                            },
                                        },
                                    },
                                }],
                                "scm_providers": [{
                                    "azure_devops": {
                                        "organization": "string",
                                        "team_project": "string",
                                        "access_token_ref": {
                                            "key": "string",
                                            "secret_name": "string",
                                        },
                                        "all_branches": False,
                                        "api": "string",
                                    },
                                    "bitbucket_cloud": {
                                        "owner": "string",
                                        "user": "string",
                                        "all_branches": False,
                                        "app_password_ref": {
                                            "key": "string",
                                            "secret_name": "string",
                                        },
                                    },
                                    "bitbucket_server": {
                                        "api": "string",
                                        "project": "string",
                                        "all_branches": False,
                                        "basic_auth": {
                                            "password_ref": {
                                                "key": "string",
                                                "secret_name": "string",
                                            },
                                            "username": "string",
                                        },
                                    },
                                    "clone_protocol": "string",
                                    "filters": [{
                                        "branch_match": "string",
                                        "label_match": "string",
                                        "paths_do_not_exists": ["string"],
                                        "paths_exists": ["string"],
                                        "repository_match": "string",
                                    }],
                                    "gitea": {
                                        "owner": "string",
                                        "all_branches": False,
                                        "api": "string",
                                        "insecure": False,
                                        "token_ref": {
                                            "key": "string",
                                            "secret_name": "string",
                                        },
                                    },
                                    "github": {
                                        "organization": "string",
                                        "all_branches": False,
                                        "api": "string",
                                        "app_secret_name": "string",
                                        "token_ref": {
                                            "key": "string",
                                            "secret_name": "string",
                                        },
                                    },
                                    "gitlab": {
                                        "group": "string",
                                        "all_branches": False,
                                        "api": "string",
                                        "include_subgroups": False,
                                        "token_ref": {
                                            "key": "string",
                                            "secret_name": "string",
                                        },
                                    },
                                    "requeue_after_seconds": "string",
                                    "template": {
                                        "metadata": {
                                            "annotations": {
                                                "string": "string",
                                            },
                                            "finalizers": ["string"],
                                            "labels": {
                                                "string": "string",
                                            },
                                            "name": "string",
                                            "namespace": "string",
                                        },
                                        "spec": {
                                            "destination": {
                                                "name": "string",
                                                "namespace": "string",
                                                "server": "string",
                                            },
                                            "ignore_differences": [{
                                                "group": "string",
                                                "jq_path_expressions": ["string"],
                                                "json_pointers": ["string"],
                                                "kind": "string",
                                                "managed_fields_managers": ["string"],
                                                "name": "string",
                                                "namespace": "string",
                                            }],
                                            "infos": [{
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "project": "string",
                                            "revision_history_limit": 0,
                                            "sources": [{
                                                "chart": "string",
                                                "directory": {
                                                    "exclude": "string",
                                                    "include": "string",
                                                    "jsonnet": {
                                                        "ext_vars": [{
                                                            "code": False,
                                                            "name": "string",
                                                            "value": "string",
                                                        }],
                                                        "libs": ["string"],
                                                        "tlas": [{
                                                            "code": False,
                                                            "name": "string",
                                                            "value": "string",
                                                        }],
                                                    },
                                                    "recurse": False,
                                                },
                                                "helm": {
                                                    "file_parameters": [{
                                                        "name": "string",
                                                        "path": "string",
                                                    }],
                                                    "ignore_missing_value_files": False,
                                                    "parameters": [{
                                                        "force_string": False,
                                                        "name": "string",
                                                        "value": "string",
                                                    }],
                                                    "pass_credentials": False,
                                                    "release_name": "string",
                                                    "skip_crds": False,
                                                    "value_files": ["string"],
                                                    "values": "string",
                                                    "version": "string",
                                                },
                                                "kustomize": {
                                                    "common_annotations": {
                                                        "string": "string",
                                                    },
                                                    "common_labels": {
                                                        "string": "string",
                                                    },
                                                    "images": ["string"],
                                                    "name_prefix": "string",
                                                    "name_suffix": "string",
                                                    "patches": [{
                                                        "target": {
                                                            "annotation_selector": "string",
                                                            "group": "string",
                                                            "kind": "string",
                                                            "label_selector": "string",
                                                            "name": "string",
                                                            "namespace": "string",
                                                            "version": "string",
                                                        },
                                                        "options": {
                                                            "string": False,
                                                        },
                                                        "patch": "string",
                                                        "path": "string",
                                                    }],
                                                    "version": "string",
                                                },
                                                "path": "string",
                                                "plugin": {
                                                    "envs": [{
                                                        "name": "string",
                                                        "value": "string",
                                                    }],
                                                    "name": "string",
                                                },
                                                "ref": "string",
                                                "repo_url": "string",
                                                "target_revision": "string",
                                            }],
                                            "sync_policy": {
                                                "automated": {
                                                    "allow_empty": False,
                                                    "prune": False,
                                                    "self_heal": False,
                                                },
                                                "managed_namespace_metadata": {
                                                    "annotations": {
                                                        "string": "string",
                                                    },
                                                    "labels": {
                                                        "string": "string",
                                                    },
                                                },
                                                "retry": {
                                                    "backoff": {
                                                        "duration": "string",
                                                        "factor": "string",
                                                        "max_duration": "string",
                                                    },
                                                    "limit": "string",
                                                },
                                                "sync_options": ["string"],
                                            },
                                        },
                                    },
                                }],
                                "selector": {
                                    "match_expressions": [{
                                        "key": "string",
                                        "operator": "string",
                                        "values": ["string"],
                                    }],
                                    "match_labels": {
                                        "string": "string",
                                    },
                                },
                            }],
                            "merge_keys": ["string"],
                            "template": {
                                "metadata": {
                                    "annotations": {
                                        "string": "string",
                                    },
                                    "finalizers": ["string"],
                                    "labels": {
                                        "string": "string",
                                    },
                                    "name": "string",
                                    "namespace": "string",
                                },
                                "spec": {
                                    "destination": {
                                        "name": "string",
                                        "namespace": "string",
                                        "server": "string",
                                    },
                                    "ignore_differences": [{
                                        "group": "string",
                                        "jq_path_expressions": ["string"],
                                        "json_pointers": ["string"],
                                        "kind": "string",
                                        "managed_fields_managers": ["string"],
                                        "name": "string",
                                        "namespace": "string",
                                    }],
                                    "infos": [{
                                        "name": "string",
                                        "value": "string",
                                    }],
                                    "project": "string",
                                    "revision_history_limit": 0,
                                    "sources": [{
                                        "chart": "string",
                                        "directory": {
                                            "exclude": "string",
                                            "include": "string",
                                            "jsonnet": {
                                                "ext_vars": [{
                                                    "code": False,
                                                    "name": "string",
                                                    "value": "string",
                                                }],
                                                "libs": ["string"],
                                                "tlas": [{
                                                    "code": False,
                                                    "name": "string",
                                                    "value": "string",
                                                }],
                                            },
                                            "recurse": False,
                                        },
                                        "helm": {
                                            "file_parameters": [{
                                                "name": "string",
                                                "path": "string",
                                            }],
                                            "ignore_missing_value_files": False,
                                            "parameters": [{
                                                "force_string": False,
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "pass_credentials": False,
                                            "release_name": "string",
                                            "skip_crds": False,
                                            "value_files": ["string"],
                                            "values": "string",
                                            "version": "string",
                                        },
                                        "kustomize": {
                                            "common_annotations": {
                                                "string": "string",
                                            },
                                            "common_labels": {
                                                "string": "string",
                                            },
                                            "images": ["string"],
                                            "name_prefix": "string",
                                            "name_suffix": "string",
                                            "patches": [{
                                                "target": {
                                                    "annotation_selector": "string",
                                                    "group": "string",
                                                    "kind": "string",
                                                    "label_selector": "string",
                                                    "name": "string",
                                                    "namespace": "string",
                                                    "version": "string",
                                                },
                                                "options": {
                                                    "string": False,
                                                },
                                                "patch": "string",
                                                "path": "string",
                                            }],
                                            "version": "string",
                                        },
                                        "path": "string",
                                        "plugin": {
                                            "envs": [{
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "name": "string",
                                        },
                                        "ref": "string",
                                        "repo_url": "string",
                                        "target_revision": "string",
                                    }],
                                    "sync_policy": {
                                        "automated": {
                                            "allow_empty": False,
                                            "prune": False,
                                            "self_heal": False,
                                        },
                                        "managed_namespace_metadata": {
                                            "annotations": {
                                                "string": "string",
                                            },
                                            "labels": {
                                                "string": "string",
                                            },
                                        },
                                        "retry": {
                                            "backoff": {
                                                "duration": "string",
                                                "factor": "string",
                                                "max_duration": "string",
                                            },
                                            "limit": "string",
                                        },
                                        "sync_options": ["string"],
                                    },
                                },
                            },
                        }],
                        "pull_requests": [{
                            "bitbucket_server": {
                                "api": "string",
                                "project": "string",
                                "repo": "string",
                                "basic_auth": {
                                    "password_ref": {
                                        "key": "string",
                                        "secret_name": "string",
                                    },
                                    "username": "string",
                                },
                            },
                            "filters": [{
                                "branch_match": "string",
                            }],
                            "gitea": {
                                "api": "string",
                                "owner": "string",
                                "repo": "string",
                                "insecure": False,
                                "token_ref": {
                                    "key": "string",
                                    "secret_name": "string",
                                },
                            },
                            "github": {
                                "owner": "string",
                                "repo": "string",
                                "api": "string",
                                "app_secret_name": "string",
                                "labels": ["string"],
                                "token_ref": {
                                    "key": "string",
                                    "secret_name": "string",
                                },
                            },
                            "gitlab": {
                                "project": "string",
                                "api": "string",
                                "labels": ["string"],
                                "pull_request_state": "string",
                                "token_ref": {
                                    "key": "string",
                                    "secret_name": "string",
                                },
                            },
                            "requeue_after_seconds": "string",
                            "template": {
                                "metadata": {
                                    "annotations": {
                                        "string": "string",
                                    },
                                    "finalizers": ["string"],
                                    "labels": {
                                        "string": "string",
                                    },
                                    "name": "string",
                                    "namespace": "string",
                                },
                                "spec": {
                                    "destination": {
                                        "name": "string",
                                        "namespace": "string",
                                        "server": "string",
                                    },
                                    "ignore_differences": [{
                                        "group": "string",
                                        "jq_path_expressions": ["string"],
                                        "json_pointers": ["string"],
                                        "kind": "string",
                                        "managed_fields_managers": ["string"],
                                        "name": "string",
                                        "namespace": "string",
                                    }],
                                    "infos": [{
                                        "name": "string",
                                        "value": "string",
                                    }],
                                    "project": "string",
                                    "revision_history_limit": 0,
                                    "sources": [{
                                        "chart": "string",
                                        "directory": {
                                            "exclude": "string",
                                            "include": "string",
                                            "jsonnet": {
                                                "ext_vars": [{
                                                    "code": False,
                                                    "name": "string",
                                                    "value": "string",
                                                }],
                                                "libs": ["string"],
                                                "tlas": [{
                                                    "code": False,
                                                    "name": "string",
                                                    "value": "string",
                                                }],
                                            },
                                            "recurse": False,
                                        },
                                        "helm": {
                                            "file_parameters": [{
                                                "name": "string",
                                                "path": "string",
                                            }],
                                            "ignore_missing_value_files": False,
                                            "parameters": [{
                                                "force_string": False,
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "pass_credentials": False,
                                            "release_name": "string",
                                            "skip_crds": False,
                                            "value_files": ["string"],
                                            "values": "string",
                                            "version": "string",
                                        },
                                        "kustomize": {
                                            "common_annotations": {
                                                "string": "string",
                                            },
                                            "common_labels": {
                                                "string": "string",
                                            },
                                            "images": ["string"],
                                            "name_prefix": "string",
                                            "name_suffix": "string",
                                            "patches": [{
                                                "target": {
                                                    "annotation_selector": "string",
                                                    "group": "string",
                                                    "kind": "string",
                                                    "label_selector": "string",
                                                    "name": "string",
                                                    "namespace": "string",
                                                    "version": "string",
                                                },
                                                "options": {
                                                    "string": False,
                                                },
                                                "patch": "string",
                                                "path": "string",
                                            }],
                                            "version": "string",
                                        },
                                        "path": "string",
                                        "plugin": {
                                            "envs": [{
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "name": "string",
                                        },
                                        "ref": "string",
                                        "repo_url": "string",
                                        "target_revision": "string",
                                    }],
                                    "sync_policy": {
                                        "automated": {
                                            "allow_empty": False,
                                            "prune": False,
                                            "self_heal": False,
                                        },
                                        "managed_namespace_metadata": {
                                            "annotations": {
                                                "string": "string",
                                            },
                                            "labels": {
                                                "string": "string",
                                            },
                                        },
                                        "retry": {
                                            "backoff": {
                                                "duration": "string",
                                                "factor": "string",
                                                "max_duration": "string",
                                            },
                                            "limit": "string",
                                        },
                                        "sync_options": ["string"],
                                    },
                                },
                            },
                        }],
                        "scm_providers": [{
                            "azure_devops": {
                                "organization": "string",
                                "team_project": "string",
                                "access_token_ref": {
                                    "key": "string",
                                    "secret_name": "string",
                                },
                                "all_branches": False,
                                "api": "string",
                            },
                            "bitbucket_cloud": {
                                "owner": "string",
                                "user": "string",
                                "all_branches": False,
                                "app_password_ref": {
                                    "key": "string",
                                    "secret_name": "string",
                                },
                            },
                            "bitbucket_server": {
                                "api": "string",
                                "project": "string",
                                "all_branches": False,
                                "basic_auth": {
                                    "password_ref": {
                                        "key": "string",
                                        "secret_name": "string",
                                    },
                                    "username": "string",
                                },
                            },
                            "clone_protocol": "string",
                            "filters": [{
                                "branch_match": "string",
                                "label_match": "string",
                                "paths_do_not_exists": ["string"],
                                "paths_exists": ["string"],
                                "repository_match": "string",
                            }],
                            "gitea": {
                                "owner": "string",
                                "all_branches": False,
                                "api": "string",
                                "insecure": False,
                                "token_ref": {
                                    "key": "string",
                                    "secret_name": "string",
                                },
                            },
                            "github": {
                                "organization": "string",
                                "all_branches": False,
                                "api": "string",
                                "app_secret_name": "string",
                                "token_ref": {
                                    "key": "string",
                                    "secret_name": "string",
                                },
                            },
                            "gitlab": {
                                "group": "string",
                                "all_branches": False,
                                "api": "string",
                                "include_subgroups": False,
                                "token_ref": {
                                    "key": "string",
                                    "secret_name": "string",
                                },
                            },
                            "requeue_after_seconds": "string",
                            "template": {
                                "metadata": {
                                    "annotations": {
                                        "string": "string",
                                    },
                                    "finalizers": ["string"],
                                    "labels": {
                                        "string": "string",
                                    },
                                    "name": "string",
                                    "namespace": "string",
                                },
                                "spec": {
                                    "destination": {
                                        "name": "string",
                                        "namespace": "string",
                                        "server": "string",
                                    },
                                    "ignore_differences": [{
                                        "group": "string",
                                        "jq_path_expressions": ["string"],
                                        "json_pointers": ["string"],
                                        "kind": "string",
                                        "managed_fields_managers": ["string"],
                                        "name": "string",
                                        "namespace": "string",
                                    }],
                                    "infos": [{
                                        "name": "string",
                                        "value": "string",
                                    }],
                                    "project": "string",
                                    "revision_history_limit": 0,
                                    "sources": [{
                                        "chart": "string",
                                        "directory": {
                                            "exclude": "string",
                                            "include": "string",
                                            "jsonnet": {
                                                "ext_vars": [{
                                                    "code": False,
                                                    "name": "string",
                                                    "value": "string",
                                                }],
                                                "libs": ["string"],
                                                "tlas": [{
                                                    "code": False,
                                                    "name": "string",
                                                    "value": "string",
                                                }],
                                            },
                                            "recurse": False,
                                        },
                                        "helm": {
                                            "file_parameters": [{
                                                "name": "string",
                                                "path": "string",
                                            }],
                                            "ignore_missing_value_files": False,
                                            "parameters": [{
                                                "force_string": False,
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "pass_credentials": False,
                                            "release_name": "string",
                                            "skip_crds": False,
                                            "value_files": ["string"],
                                            "values": "string",
                                            "version": "string",
                                        },
                                        "kustomize": {
                                            "common_annotations": {
                                                "string": "string",
                                            },
                                            "common_labels": {
                                                "string": "string",
                                            },
                                            "images": ["string"],
                                            "name_prefix": "string",
                                            "name_suffix": "string",
                                            "patches": [{
                                                "target": {
                                                    "annotation_selector": "string",
                                                    "group": "string",
                                                    "kind": "string",
                                                    "label_selector": "string",
                                                    "name": "string",
                                                    "namespace": "string",
                                                    "version": "string",
                                                },
                                                "options": {
                                                    "string": False,
                                                },
                                                "patch": "string",
                                                "path": "string",
                                            }],
                                            "version": "string",
                                        },
                                        "path": "string",
                                        "plugin": {
                                            "envs": [{
                                                "name": "string",
                                                "value": "string",
                                            }],
                                            "name": "string",
                                        },
                                        "ref": "string",
                                        "repo_url": "string",
                                        "target_revision": "string",
                                    }],
                                    "sync_policy": {
                                        "automated": {
                                            "allow_empty": False,
                                            "prune": False,
                                            "self_heal": False,
                                        },
                                        "managed_namespace_metadata": {
                                            "annotations": {
                                                "string": "string",
                                            },
                                            "labels": {
                                                "string": "string",
                                            },
                                        },
                                        "retry": {
                                            "backoff": {
                                                "duration": "string",
                                                "factor": "string",
                                                "max_duration": "string",
                                            },
                                            "limit": "string",
                                        },
                                        "sync_options": ["string"],
                                    },
                                },
                            },
                        }],
                        "selector": {
                            "match_expressions": [{
                                "key": "string",
                                "operator": "string",
                                "values": ["string"],
                            }],
                            "match_labels": {
                                "string": "string",
                            },
                        },
                    }],
                    "merge_keys": ["string"],
                    "template": {
                        "metadata": {
                            "annotations": {
                                "string": "string",
                            },
                            "finalizers": ["string"],
                            "labels": {
                                "string": "string",
                            },
                            "name": "string",
                            "namespace": "string",
                        },
                        "spec": {
                            "destination": {
                                "name": "string",
                                "namespace": "string",
                                "server": "string",
                            },
                            "ignore_differences": [{
                                "group": "string",
                                "jq_path_expressions": ["string"],
                                "json_pointers": ["string"],
                                "kind": "string",
                                "managed_fields_managers": ["string"],
                                "name": "string",
                                "namespace": "string",
                            }],
                            "infos": [{
                                "name": "string",
                                "value": "string",
                            }],
                            "project": "string",
                            "revision_history_limit": 0,
                            "sources": [{
                                "chart": "string",
                                "directory": {
                                    "exclude": "string",
                                    "include": "string",
                                    "jsonnet": {
                                        "ext_vars": [{
                                            "code": False,
                                            "name": "string",
                                            "value": "string",
                                        }],
                                        "libs": ["string"],
                                        "tlas": [{
                                            "code": False,
                                            "name": "string",
                                            "value": "string",
                                        }],
                                    },
                                    "recurse": False,
                                },
                                "helm": {
                                    "file_parameters": [{
                                        "name": "string",
                                        "path": "string",
                                    }],
                                    "ignore_missing_value_files": False,
                                    "parameters": [{
                                        "force_string": False,
                                        "name": "string",
                                        "value": "string",
                                    }],
                                    "pass_credentials": False,
                                    "release_name": "string",
                                    "skip_crds": False,
                                    "value_files": ["string"],
                                    "values": "string",
                                    "version": "string",
                                },
                                "kustomize": {
                                    "common_annotations": {
                                        "string": "string",
                                    },
                                    "common_labels": {
                                        "string": "string",
                                    },
                                    "images": ["string"],
                                    "name_prefix": "string",
                                    "name_suffix": "string",
                                    "patches": [{
                                        "target": {
                                            "annotation_selector": "string",
                                            "group": "string",
                                            "kind": "string",
                                            "label_selector": "string",
                                            "name": "string",
                                            "namespace": "string",
                                            "version": "string",
                                        },
                                        "options": {
                                            "string": False,
                                        },
                                        "patch": "string",
                                        "path": "string",
                                    }],
                                    "version": "string",
                                },
                                "path": "string",
                                "plugin": {
                                    "envs": [{
                                        "name": "string",
                                        "value": "string",
                                    }],
                                    "name": "string",
                                },
                                "ref": "string",
                                "repo_url": "string",
                                "target_revision": "string",
                            }],
                            "sync_policy": {
                                "automated": {
                                    "allow_empty": False,
                                    "prune": False,
                                    "self_heal": False,
                                },
                                "managed_namespace_metadata": {
                                    "annotations": {
                                        "string": "string",
                                    },
                                    "labels": {
                                        "string": "string",
                                    },
                                },
                                "retry": {
                                    "backoff": {
                                        "duration": "string",
                                        "factor": "string",
                                        "max_duration": "string",
                                    },
                                    "limit": "string",
                                },
                                "sync_options": ["string"],
                            },
                        },
                    },
                }],
                "pull_requests": [{
                    "bitbucket_server": {
                        "api": "string",
                        "project": "string",
                        "repo": "string",
                        "basic_auth": {
                            "password_ref": {
                                "key": "string",
                                "secret_name": "string",
                            },
                            "username": "string",
                        },
                    },
                    "filters": [{
                        "branch_match": "string",
                    }],
                    "gitea": {
                        "api": "string",
                        "owner": "string",
                        "repo": "string",
                        "insecure": False,
                        "token_ref": {
                            "key": "string",
                            "secret_name": "string",
                        },
                    },
                    "github": {
                        "owner": "string",
                        "repo": "string",
                        "api": "string",
                        "app_secret_name": "string",
                        "labels": ["string"],
                        "token_ref": {
                            "key": "string",
                            "secret_name": "string",
                        },
                    },
                    "gitlab": {
                        "project": "string",
                        "api": "string",
                        "labels": ["string"],
                        "pull_request_state": "string",
                        "token_ref": {
                            "key": "string",
                            "secret_name": "string",
                        },
                    },
                    "requeue_after_seconds": "string",
                    "template": {
                        "metadata": {
                            "annotations": {
                                "string": "string",
                            },
                            "finalizers": ["string"],
                            "labels": {
                                "string": "string",
                            },
                            "name": "string",
                            "namespace": "string",
                        },
                        "spec": {
                            "destination": {
                                "name": "string",
                                "namespace": "string",
                                "server": "string",
                            },
                            "ignore_differences": [{
                                "group": "string",
                                "jq_path_expressions": ["string"],
                                "json_pointers": ["string"],
                                "kind": "string",
                                "managed_fields_managers": ["string"],
                                "name": "string",
                                "namespace": "string",
                            }],
                            "infos": [{
                                "name": "string",
                                "value": "string",
                            }],
                            "project": "string",
                            "revision_history_limit": 0,
                            "sources": [{
                                "chart": "string",
                                "directory": {
                                    "exclude": "string",
                                    "include": "string",
                                    "jsonnet": {
                                        "ext_vars": [{
                                            "code": False,
                                            "name": "string",
                                            "value": "string",
                                        }],
                                        "libs": ["string"],
                                        "tlas": [{
                                            "code": False,
                                            "name": "string",
                                            "value": "string",
                                        }],
                                    },
                                    "recurse": False,
                                },
                                "helm": {
                                    "file_parameters": [{
                                        "name": "string",
                                        "path": "string",
                                    }],
                                    "ignore_missing_value_files": False,
                                    "parameters": [{
                                        "force_string": False,
                                        "name": "string",
                                        "value": "string",
                                    }],
                                    "pass_credentials": False,
                                    "release_name": "string",
                                    "skip_crds": False,
                                    "value_files": ["string"],
                                    "values": "string",
                                    "version": "string",
                                },
                                "kustomize": {
                                    "common_annotations": {
                                        "string": "string",
                                    },
                                    "common_labels": {
                                        "string": "string",
                                    },
                                    "images": ["string"],
                                    "name_prefix": "string",
                                    "name_suffix": "string",
                                    "patches": [{
                                        "target": {
                                            "annotation_selector": "string",
                                            "group": "string",
                                            "kind": "string",
                                            "label_selector": "string",
                                            "name": "string",
                                            "namespace": "string",
                                            "version": "string",
                                        },
                                        "options": {
                                            "string": False,
                                        },
                                        "patch": "string",
                                        "path": "string",
                                    }],
                                    "version": "string",
                                },
                                "path": "string",
                                "plugin": {
                                    "envs": [{
                                        "name": "string",
                                        "value": "string",
                                    }],
                                    "name": "string",
                                },
                                "ref": "string",
                                "repo_url": "string",
                                "target_revision": "string",
                            }],
                            "sync_policy": {
                                "automated": {
                                    "allow_empty": False,
                                    "prune": False,
                                    "self_heal": False,
                                },
                                "managed_namespace_metadata": {
                                    "annotations": {
                                        "string": "string",
                                    },
                                    "labels": {
                                        "string": "string",
                                    },
                                },
                                "retry": {
                                    "backoff": {
                                        "duration": "string",
                                        "factor": "string",
                                        "max_duration": "string",
                                    },
                                    "limit": "string",
                                },
                                "sync_options": ["string"],
                            },
                        },
                    },
                }],
                "scm_providers": [{
                    "azure_devops": {
                        "organization": "string",
                        "team_project": "string",
                        "access_token_ref": {
                            "key": "string",
                            "secret_name": "string",
                        },
                        "all_branches": False,
                        "api": "string",
                    },
                    "bitbucket_cloud": {
                        "owner": "string",
                        "user": "string",
                        "all_branches": False,
                        "app_password_ref": {
                            "key": "string",
                            "secret_name": "string",
                        },
                    },
                    "bitbucket_server": {
                        "api": "string",
                        "project": "string",
                        "all_branches": False,
                        "basic_auth": {
                            "password_ref": {
                                "key": "string",
                                "secret_name": "string",
                            },
                            "username": "string",
                        },
                    },
                    "clone_protocol": "string",
                    "filters": [{
                        "branch_match": "string",
                        "label_match": "string",
                        "paths_do_not_exists": ["string"],
                        "paths_exists": ["string"],
                        "repository_match": "string",
                    }],
                    "gitea": {
                        "owner": "string",
                        "all_branches": False,
                        "api": "string",
                        "insecure": False,
                        "token_ref": {
                            "key": "string",
                            "secret_name": "string",
                        },
                    },
                    "github": {
                        "organization": "string",
                        "all_branches": False,
                        "api": "string",
                        "app_secret_name": "string",
                        "token_ref": {
                            "key": "string",
                            "secret_name": "string",
                        },
                    },
                    "gitlab": {
                        "group": "string",
                        "all_branches": False,
                        "api": "string",
                        "include_subgroups": False,
                        "token_ref": {
                            "key": "string",
                            "secret_name": "string",
                        },
                    },
                    "requeue_after_seconds": "string",
                    "template": {
                        "metadata": {
                            "annotations": {
                                "string": "string",
                            },
                            "finalizers": ["string"],
                            "labels": {
                                "string": "string",
                            },
                            "name": "string",
                            "namespace": "string",
                        },
                        "spec": {
                            "destination": {
                                "name": "string",
                                "namespace": "string",
                                "server": "string",
                            },
                            "ignore_differences": [{
                                "group": "string",
                                "jq_path_expressions": ["string"],
                                "json_pointers": ["string"],
                                "kind": "string",
                                "managed_fields_managers": ["string"],
                                "name": "string",
                                "namespace": "string",
                            }],
                            "infos": [{
                                "name": "string",
                                "value": "string",
                            }],
                            "project": "string",
                            "revision_history_limit": 0,
                            "sources": [{
                                "chart": "string",
                                "directory": {
                                    "exclude": "string",
                                    "include": "string",
                                    "jsonnet": {
                                        "ext_vars": [{
                                            "code": False,
                                            "name": "string",
                                            "value": "string",
                                        }],
                                        "libs": ["string"],
                                        "tlas": [{
                                            "code": False,
                                            "name": "string",
                                            "value": "string",
                                        }],
                                    },
                                    "recurse": False,
                                },
                                "helm": {
                                    "file_parameters": [{
                                        "name": "string",
                                        "path": "string",
                                    }],
                                    "ignore_missing_value_files": False,
                                    "parameters": [{
                                        "force_string": False,
                                        "name": "string",
                                        "value": "string",
                                    }],
                                    "pass_credentials": False,
                                    "release_name": "string",
                                    "skip_crds": False,
                                    "value_files": ["string"],
                                    "values": "string",
                                    "version": "string",
                                },
                                "kustomize": {
                                    "common_annotations": {
                                        "string": "string",
                                    },
                                    "common_labels": {
                                        "string": "string",
                                    },
                                    "images": ["string"],
                                    "name_prefix": "string",
                                    "name_suffix": "string",
                                    "patches": [{
                                        "target": {
                                            "annotation_selector": "string",
                                            "group": "string",
                                            "kind": "string",
                                            "label_selector": "string",
                                            "name": "string",
                                            "namespace": "string",
                                            "version": "string",
                                        },
                                        "options": {
                                            "string": False,
                                        },
                                        "patch": "string",
                                        "path": "string",
                                    }],
                                    "version": "string",
                                },
                                "path": "string",
                                "plugin": {
                                    "envs": [{
                                        "name": "string",
                                        "value": "string",
                                    }],
                                    "name": "string",
                                },
                                "ref": "string",
                                "repo_url": "string",
                                "target_revision": "string",
                            }],
                            "sync_policy": {
                                "automated": {
                                    "allow_empty": False,
                                    "prune": False,
                                    "self_heal": False,
                                },
                                "managed_namespace_metadata": {
                                    "annotations": {
                                        "string": "string",
                                    },
                                    "labels": {
                                        "string": "string",
                                    },
                                },
                                "retry": {
                                    "backoff": {
                                        "duration": "string",
                                        "factor": "string",
                                        "max_duration": "string",
                                    },
                                    "limit": "string",
                                },
                                "sync_options": ["string"],
                            },
                        },
                    },
                }],
                "selector": {
                    "match_expressions": [{
                        "key": "string",
                        "operator": "string",
                        "values": ["string"],
                    }],
                    "match_labels": {
                        "string": "string",
                    },
                },
            }],
            "template": {
                "metadata": {
                    "name": "string",
                    "annotations": {
                        "string": "string",
                    },
                    "finalizers": ["string"],
                    "labels": {
                        "string": "string",
                    },
                    "namespace": "string",
                },
                "spec": {
                    "destination": {
                        "name": "string",
                        "namespace": "string",
                        "server": "string",
                    },
                    "sources": [{
                        "repo_url": "string",
                        "chart": "string",
                        "directory": {
                            "exclude": "string",
                            "include": "string",
                            "jsonnet": {
                                "ext_vars": [{
                                    "code": False,
                                    "name": "string",
                                    "value": "string",
                                }],
                                "libs": ["string"],
                                "tlas": [{
                                    "code": False,
                                    "name": "string",
                                    "value": "string",
                                }],
                            },
                            "recurse": False,
                        },
                        "helm": {
                            "file_parameters": [{
                                "name": "string",
                                "path": "string",
                            }],
                            "ignore_missing_value_files": False,
                            "parameters": [{
                                "force_string": False,
                                "name": "string",
                                "value": "string",
                            }],
                            "pass_credentials": False,
                            "release_name": "string",
                            "skip_crds": False,
                            "value_files": ["string"],
                            "values": "string",
                            "version": "string",
                        },
                        "kustomize": {
                            "common_annotations": {
                                "string": "string",
                            },
                            "common_labels": {
                                "string": "string",
                            },
                            "images": ["string"],
                            "name_prefix": "string",
                            "name_suffix": "string",
                            "patches": [{
                                "target": {
                                    "annotation_selector": "string",
                                    "group": "string",
                                    "kind": "string",
                                    "label_selector": "string",
                                    "name": "string",
                                    "namespace": "string",
                                    "version": "string",
                                },
                                "options": {
                                    "string": False,
                                },
                                "patch": "string",
                                "path": "string",
                            }],
                            "version": "string",
                        },
                        "path": "string",
                        "plugin": {
                            "envs": [{
                                "name": "string",
                                "value": "string",
                            }],
                            "name": "string",
                        },
                        "ref": "string",
                        "target_revision": "string",
                    }],
                    "ignore_differences": [{
                        "group": "string",
                        "jq_path_expressions": ["string"],
                        "json_pointers": ["string"],
                        "kind": "string",
                        "managed_fields_managers": ["string"],
                        "name": "string",
                        "namespace": "string",
                    }],
                    "infos": [{
                        "name": "string",
                        "value": "string",
                    }],
                    "project": "string",
                    "revision_history_limit": 0,
                    "sync_policy": {
                        "automated": {
                            "allow_empty": False,
                            "prune": False,
                            "self_heal": False,
                        },
                        "managed_namespace_metadata": {
                            "annotations": {
                                "string": "string",
                            },
                            "labels": {
                                "string": "string",
                            },
                        },
                        "retry": {
                            "backoff": {
                                "duration": "string",
                                "factor": "string",
                                "max_duration": "string",
                            },
                            "limit": "string",
                        },
                        "sync_options": ["string"],
                    },
                },
            },
            "go_template": False,
            "go_template_options": ["string"],
            "ignore_application_differences": [{
                "jq_path_expressions": ["string"],
                "json_pointers": ["string"],
                "name": "string",
            }],
            "strategy": {
                "type": "string",
                "rolling_syncs": [{
                    "steps": [{
                        "match_expressions": [{
                            "key": "string",
                            "operator": "string",
                            "values": ["string"],
                        }],
                        "max_update": "string",
                    }],
                }],
            },
            "sync_policy": {
                "applications_sync": "string",
                "preserve_resources_on_deletion": False,
            },
            "template_patch": "string",
        })
    
    const applicationSetResource = new argocd.ApplicationSet("applicationSetResource", {
        metadata: {
            annotations: {
                string: "string",
            },
            generation: 0,
            labels: {
                string: "string",
            },
            name: "string",
            namespace: "string",
            resourceVersion: "string",
            uid: "string",
        },
        spec: {
            generators: [{
                clusterDecisionResources: [{
                    configMapRef: "string",
                    labelSelector: {
                        matchExpressions: [{
                            key: "string",
                            operator: "string",
                            values: ["string"],
                        }],
                        matchLabels: {
                            string: "string",
                        },
                    },
                    name: "string",
                    requeueAfterSeconds: "string",
                    template: {
                        metadata: {
                            annotations: {
                                string: "string",
                            },
                            finalizers: ["string"],
                            labels: {
                                string: "string",
                            },
                            name: "string",
                            namespace: "string",
                        },
                        spec: {
                            destination: {
                                name: "string",
                                namespace: "string",
                                server: "string",
                            },
                            ignoreDifferences: [{
                                group: "string",
                                jqPathExpressions: ["string"],
                                jsonPointers: ["string"],
                                kind: "string",
                                managedFieldsManagers: ["string"],
                                name: "string",
                                namespace: "string",
                            }],
                            infos: [{
                                name: "string",
                                value: "string",
                            }],
                            project: "string",
                            revisionHistoryLimit: 0,
                            sources: [{
                                chart: "string",
                                directory: {
                                    exclude: "string",
                                    include: "string",
                                    jsonnet: {
                                        extVars: [{
                                            code: false,
                                            name: "string",
                                            value: "string",
                                        }],
                                        libs: ["string"],
                                        tlas: [{
                                            code: false,
                                            name: "string",
                                            value: "string",
                                        }],
                                    },
                                    recurse: false,
                                },
                                helm: {
                                    fileParameters: [{
                                        name: "string",
                                        path: "string",
                                    }],
                                    ignoreMissingValueFiles: false,
                                    parameters: [{
                                        forceString: false,
                                        name: "string",
                                        value: "string",
                                    }],
                                    passCredentials: false,
                                    releaseName: "string",
                                    skipCrds: false,
                                    valueFiles: ["string"],
                                    values: "string",
                                    version: "string",
                                },
                                kustomize: {
                                    commonAnnotations: {
                                        string: "string",
                                    },
                                    commonLabels: {
                                        string: "string",
                                    },
                                    images: ["string"],
                                    namePrefix: "string",
                                    nameSuffix: "string",
                                    patches: [{
                                        target: {
                                            annotationSelector: "string",
                                            group: "string",
                                            kind: "string",
                                            labelSelector: "string",
                                            name: "string",
                                            namespace: "string",
                                            version: "string",
                                        },
                                        options: {
                                            string: false,
                                        },
                                        patch: "string",
                                        path: "string",
                                    }],
                                    version: "string",
                                },
                                path: "string",
                                plugin: {
                                    envs: [{
                                        name: "string",
                                        value: "string",
                                    }],
                                    name: "string",
                                },
                                ref: "string",
                                repoUrl: "string",
                                targetRevision: "string",
                            }],
                            syncPolicy: {
                                automated: {
                                    allowEmpty: false,
                                    prune: false,
                                    selfHeal: false,
                                },
                                managedNamespaceMetadata: {
                                    annotations: {
                                        string: "string",
                                    },
                                    labels: {
                                        string: "string",
                                    },
                                },
                                retry: {
                                    backoff: {
                                        duration: "string",
                                        factor: "string",
                                        maxDuration: "string",
                                    },
                                    limit: "string",
                                },
                                syncOptions: ["string"],
                            },
                        },
                    },
                    values: {
                        string: "string",
                    },
                }],
                clusters: [{
                    enabled: false,
                    selector: {
                        matchExpressions: [{
                            key: "string",
                            operator: "string",
                            values: ["string"],
                        }],
                        matchLabels: {
                            string: "string",
                        },
                    },
                    template: {
                        metadata: {
                            annotations: {
                                string: "string",
                            },
                            finalizers: ["string"],
                            labels: {
                                string: "string",
                            },
                            name: "string",
                            namespace: "string",
                        },
                        spec: {
                            destination: {
                                name: "string",
                                namespace: "string",
                                server: "string",
                            },
                            ignoreDifferences: [{
                                group: "string",
                                jqPathExpressions: ["string"],
                                jsonPointers: ["string"],
                                kind: "string",
                                managedFieldsManagers: ["string"],
                                name: "string",
                                namespace: "string",
                            }],
                            infos: [{
                                name: "string",
                                value: "string",
                            }],
                            project: "string",
                            revisionHistoryLimit: 0,
                            sources: [{
                                chart: "string",
                                directory: {
                                    exclude: "string",
                                    include: "string",
                                    jsonnet: {
                                        extVars: [{
                                            code: false,
                                            name: "string",
                                            value: "string",
                                        }],
                                        libs: ["string"],
                                        tlas: [{
                                            code: false,
                                            name: "string",
                                            value: "string",
                                        }],
                                    },
                                    recurse: false,
                                },
                                helm: {
                                    fileParameters: [{
                                        name: "string",
                                        path: "string",
                                    }],
                                    ignoreMissingValueFiles: false,
                                    parameters: [{
                                        forceString: false,
                                        name: "string",
                                        value: "string",
                                    }],
                                    passCredentials: false,
                                    releaseName: "string",
                                    skipCrds: false,
                                    valueFiles: ["string"],
                                    values: "string",
                                    version: "string",
                                },
                                kustomize: {
                                    commonAnnotations: {
                                        string: "string",
                                    },
                                    commonLabels: {
                                        string: "string",
                                    },
                                    images: ["string"],
                                    namePrefix: "string",
                                    nameSuffix: "string",
                                    patches: [{
                                        target: {
                                            annotationSelector: "string",
                                            group: "string",
                                            kind: "string",
                                            labelSelector: "string",
                                            name: "string",
                                            namespace: "string",
                                            version: "string",
                                        },
                                        options: {
                                            string: false,
                                        },
                                        patch: "string",
                                        path: "string",
                                    }],
                                    version: "string",
                                },
                                path: "string",
                                plugin: {
                                    envs: [{
                                        name: "string",
                                        value: "string",
                                    }],
                                    name: "string",
                                },
                                ref: "string",
                                repoUrl: "string",
                                targetRevision: "string",
                            }],
                            syncPolicy: {
                                automated: {
                                    allowEmpty: false,
                                    prune: false,
                                    selfHeal: false,
                                },
                                managedNamespaceMetadata: {
                                    annotations: {
                                        string: "string",
                                    },
                                    labels: {
                                        string: "string",
                                    },
                                },
                                retry: {
                                    backoff: {
                                        duration: "string",
                                        factor: "string",
                                        maxDuration: "string",
                                    },
                                    limit: "string",
                                },
                                syncOptions: ["string"],
                            },
                        },
                    },
                    values: {
                        string: "string",
                    },
                }],
                gits: [{
                    repoUrl: "string",
                    directories: [{
                        path: "string",
                        exclude: false,
                    }],
                    files: [{
                        path: "string",
                    }],
                    pathParamPrefix: "string",
                    revision: "string",
                    template: {
                        metadata: {
                            annotations: {
                                string: "string",
                            },
                            finalizers: ["string"],
                            labels: {
                                string: "string",
                            },
                            name: "string",
                            namespace: "string",
                        },
                        spec: {
                            destination: {
                                name: "string",
                                namespace: "string",
                                server: "string",
                            },
                            ignoreDifferences: [{
                                group: "string",
                                jqPathExpressions: ["string"],
                                jsonPointers: ["string"],
                                kind: "string",
                                managedFieldsManagers: ["string"],
                                name: "string",
                                namespace: "string",
                            }],
                            infos: [{
                                name: "string",
                                value: "string",
                            }],
                            project: "string",
                            revisionHistoryLimit: 0,
                            sources: [{
                                chart: "string",
                                directory: {
                                    exclude: "string",
                                    include: "string",
                                    jsonnet: {
                                        extVars: [{
                                            code: false,
                                            name: "string",
                                            value: "string",
                                        }],
                                        libs: ["string"],
                                        tlas: [{
                                            code: false,
                                            name: "string",
                                            value: "string",
                                        }],
                                    },
                                    recurse: false,
                                },
                                helm: {
                                    fileParameters: [{
                                        name: "string",
                                        path: "string",
                                    }],
                                    ignoreMissingValueFiles: false,
                                    parameters: [{
                                        forceString: false,
                                        name: "string",
                                        value: "string",
                                    }],
                                    passCredentials: false,
                                    releaseName: "string",
                                    skipCrds: false,
                                    valueFiles: ["string"],
                                    values: "string",
                                    version: "string",
                                },
                                kustomize: {
                                    commonAnnotations: {
                                        string: "string",
                                    },
                                    commonLabels: {
                                        string: "string",
                                    },
                                    images: ["string"],
                                    namePrefix: "string",
                                    nameSuffix: "string",
                                    patches: [{
                                        target: {
                                            annotationSelector: "string",
                                            group: "string",
                                            kind: "string",
                                            labelSelector: "string",
                                            name: "string",
                                            namespace: "string",
                                            version: "string",
                                        },
                                        options: {
                                            string: false,
                                        },
                                        patch: "string",
                                        path: "string",
                                    }],
                                    version: "string",
                                },
                                path: "string",
                                plugin: {
                                    envs: [{
                                        name: "string",
                                        value: "string",
                                    }],
                                    name: "string",
                                },
                                ref: "string",
                                repoUrl: "string",
                                targetRevision: "string",
                            }],
                            syncPolicy: {
                                automated: {
                                    allowEmpty: false,
                                    prune: false,
                                    selfHeal: false,
                                },
                                managedNamespaceMetadata: {
                                    annotations: {
                                        string: "string",
                                    },
                                    labels: {
                                        string: "string",
                                    },
                                },
                                retry: {
                                    backoff: {
                                        duration: "string",
                                        factor: "string",
                                        maxDuration: "string",
                                    },
                                    limit: "string",
                                },
                                syncOptions: ["string"],
                            },
                        },
                    },
                    values: {
                        string: "string",
                    },
                }],
                lists: [{
                    elements: [{
                        string: "string",
                    }],
                    template: {
                        metadata: {
                            annotations: {
                                string: "string",
                            },
                            finalizers: ["string"],
                            labels: {
                                string: "string",
                            },
                            name: "string",
                            namespace: "string",
                        },
                        spec: {
                            destination: {
                                name: "string",
                                namespace: "string",
                                server: "string",
                            },
                            ignoreDifferences: [{
                                group: "string",
                                jqPathExpressions: ["string"],
                                jsonPointers: ["string"],
                                kind: "string",
                                managedFieldsManagers: ["string"],
                                name: "string",
                                namespace: "string",
                            }],
                            infos: [{
                                name: "string",
                                value: "string",
                            }],
                            project: "string",
                            revisionHistoryLimit: 0,
                            sources: [{
                                chart: "string",
                                directory: {
                                    exclude: "string",
                                    include: "string",
                                    jsonnet: {
                                        extVars: [{
                                            code: false,
                                            name: "string",
                                            value: "string",
                                        }],
                                        libs: ["string"],
                                        tlas: [{
                                            code: false,
                                            name: "string",
                                            value: "string",
                                        }],
                                    },
                                    recurse: false,
                                },
                                helm: {
                                    fileParameters: [{
                                        name: "string",
                                        path: "string",
                                    }],
                                    ignoreMissingValueFiles: false,
                                    parameters: [{
                                        forceString: false,
                                        name: "string",
                                        value: "string",
                                    }],
                                    passCredentials: false,
                                    releaseName: "string",
                                    skipCrds: false,
                                    valueFiles: ["string"],
                                    values: "string",
                                    version: "string",
                                },
                                kustomize: {
                                    commonAnnotations: {
                                        string: "string",
                                    },
                                    commonLabels: {
                                        string: "string",
                                    },
                                    images: ["string"],
                                    namePrefix: "string",
                                    nameSuffix: "string",
                                    patches: [{
                                        target: {
                                            annotationSelector: "string",
                                            group: "string",
                                            kind: "string",
                                            labelSelector: "string",
                                            name: "string",
                                            namespace: "string",
                                            version: "string",
                                        },
                                        options: {
                                            string: false,
                                        },
                                        patch: "string",
                                        path: "string",
                                    }],
                                    version: "string",
                                },
                                path: "string",
                                plugin: {
                                    envs: [{
                                        name: "string",
                                        value: "string",
                                    }],
                                    name: "string",
                                },
                                ref: "string",
                                repoUrl: "string",
                                targetRevision: "string",
                            }],
                            syncPolicy: {
                                automated: {
                                    allowEmpty: false,
                                    prune: false,
                                    selfHeal: false,
                                },
                                managedNamespaceMetadata: {
                                    annotations: {
                                        string: "string",
                                    },
                                    labels: {
                                        string: "string",
                                    },
                                },
                                retry: {
                                    backoff: {
                                        duration: "string",
                                        factor: "string",
                                        maxDuration: "string",
                                    },
                                    limit: "string",
                                },
                                syncOptions: ["string"],
                            },
                        },
                    },
                }],
                matrices: [{
                    generators: [{
                        clusterDecisionResources: [{
                            configMapRef: "string",
                            labelSelector: {
                                matchExpressions: [{
                                    key: "string",
                                    operator: "string",
                                    values: ["string"],
                                }],
                                matchLabels: {
                                    string: "string",
                                },
                            },
                            name: "string",
                            requeueAfterSeconds: "string",
                            template: {
                                metadata: {
                                    annotations: {
                                        string: "string",
                                    },
                                    finalizers: ["string"],
                                    labels: {
                                        string: "string",
                                    },
                                    name: "string",
                                    namespace: "string",
                                },
                                spec: {
                                    destination: {
                                        name: "string",
                                        namespace: "string",
                                        server: "string",
                                    },
                                    ignoreDifferences: [{
                                        group: "string",
                                        jqPathExpressions: ["string"],
                                        jsonPointers: ["string"],
                                        kind: "string",
                                        managedFieldsManagers: ["string"],
                                        name: "string",
                                        namespace: "string",
                                    }],
                                    infos: [{
                                        name: "string",
                                        value: "string",
                                    }],
                                    project: "string",
                                    revisionHistoryLimit: 0,
                                    sources: [{
                                        chart: "string",
                                        directory: {
                                            exclude: "string",
                                            include: "string",
                                            jsonnet: {
                                                extVars: [{
                                                    code: false,
                                                    name: "string",
                                                    value: "string",
                                                }],
                                                libs: ["string"],
                                                tlas: [{
                                                    code: false,
                                                    name: "string",
                                                    value: "string",
                                                }],
                                            },
                                            recurse: false,
                                        },
                                        helm: {
                                            fileParameters: [{
                                                name: "string",
                                                path: "string",
                                            }],
                                            ignoreMissingValueFiles: false,
                                            parameters: [{
                                                forceString: false,
                                                name: "string",
                                                value: "string",
                                            }],
                                            passCredentials: false,
                                            releaseName: "string",
                                            skipCrds: false,
                                            valueFiles: ["string"],
                                            values: "string",
                                            version: "string",
                                        },
                                        kustomize: {
                                            commonAnnotations: {
                                                string: "string",
                                            },
                                            commonLabels: {
                                                string: "string",
                                            },
                                            images: ["string"],
                                            namePrefix: "string",
                                            nameSuffix: "string",
                                            patches: [{
                                                target: {
                                                    annotationSelector: "string",
                                                    group: "string",
                                                    kind: "string",
                                                    labelSelector: "string",
                                                    name: "string",
                                                    namespace: "string",
                                                    version: "string",
                                                },
                                                options: {
                                                    string: false,
                                                },
                                                patch: "string",
                                                path: "string",
                                            }],
                                            version: "string",
                                        },
                                        path: "string",
                                        plugin: {
                                            envs: [{
                                                name: "string",
                                                value: "string",
                                            }],
                                            name: "string",
                                        },
                                        ref: "string",
                                        repoUrl: "string",
                                        targetRevision: "string",
                                    }],
                                    syncPolicy: {
                                        automated: {
                                            allowEmpty: false,
                                            prune: false,
                                            selfHeal: false,
                                        },
                                        managedNamespaceMetadata: {
                                            annotations: {
                                                string: "string",
                                            },
                                            labels: {
                                                string: "string",
                                            },
                                        },
                                        retry: {
                                            backoff: {
                                                duration: "string",
                                                factor: "string",
                                                maxDuration: "string",
                                            },
                                            limit: "string",
                                        },
                                        syncOptions: ["string"],
                                    },
                                },
                            },
                            values: {
                                string: "string",
                            },
                        }],
                        clusters: [{
                            enabled: false,
                            selector: {
                                matchExpressions: [{
                                    key: "string",
                                    operator: "string",
                                    values: ["string"],
                                }],
                                matchLabels: {
                                    string: "string",
                                },
                            },
                            template: {
                                metadata: {
                                    annotations: {
                                        string: "string",
                                    },
                                    finalizers: ["string"],
                                    labels: {
                                        string: "string",
                                    },
                                    name: "string",
                                    namespace: "string",
                                },
                                spec: {
                                    destination: {
                                        name: "string",
                                        namespace: "string",
                                        server: "string",
                                    },
                                    ignoreDifferences: [{
                                        group: "string",
                                        jqPathExpressions: ["string"],
                                        jsonPointers: ["string"],
                                        kind: "string",
                                        managedFieldsManagers: ["string"],
                                        name: "string",
                                        namespace: "string",
                                    }],
                                    infos: [{
                                        name: "string",
                                        value: "string",
                                    }],
                                    project: "string",
                                    revisionHistoryLimit: 0,
                                    sources: [{
                                        chart: "string",
                                        directory: {
                                            exclude: "string",
                                            include: "string",
                                            jsonnet: {
                                                extVars: [{
                                                    code: false,
                                                    name: "string",
                                                    value: "string",
                                                }],
                                                libs: ["string"],
                                                tlas: [{
                                                    code: false,
                                                    name: "string",
                                                    value: "string",
                                                }],
                                            },
                                            recurse: false,
                                        },
                                        helm: {
                                            fileParameters: [{
                                                name: "string",
                                                path: "string",
                                            }],
                                            ignoreMissingValueFiles: false,
                                            parameters: [{
                                                forceString: false,
                                                name: "string",
                                                value: "string",
                                            }],
                                            passCredentials: false,
                                            releaseName: "string",
                                            skipCrds: false,
                                            valueFiles: ["string"],
                                            values: "string",
                                            version: "string",
                                        },
                                        kustomize: {
                                            commonAnnotations: {
                                                string: "string",
                                            },
                                            commonLabels: {
                                                string: "string",
                                            },
                                            images: ["string"],
                                            namePrefix: "string",
                                            nameSuffix: "string",
                                            patches: [{
                                                target: {
                                                    annotationSelector: "string",
                                                    group: "string",
                                                    kind: "string",
                                                    labelSelector: "string",
                                                    name: "string",
                                                    namespace: "string",
                                                    version: "string",
                                                },
                                                options: {
                                                    string: false,
                                                },
                                                patch: "string",
                                                path: "string",
                                            }],
                                            version: "string",
                                        },
                                        path: "string",
                                        plugin: {
                                            envs: [{
                                                name: "string",
                                                value: "string",
                                            }],
                                            name: "string",
                                        },
                                        ref: "string",
                                        repoUrl: "string",
                                        targetRevision: "string",
                                    }],
                                    syncPolicy: {
                                        automated: {
                                            allowEmpty: false,
                                            prune: false,
                                            selfHeal: false,
                                        },
                                        managedNamespaceMetadata: {
                                            annotations: {
                                                string: "string",
                                            },
                                            labels: {
                                                string: "string",
                                            },
                                        },
                                        retry: {
                                            backoff: {
                                                duration: "string",
                                                factor: "string",
                                                maxDuration: "string",
                                            },
                                            limit: "string",
                                        },
                                        syncOptions: ["string"],
                                    },
                                },
                            },
                            values: {
                                string: "string",
                            },
                        }],
                        gits: [{
                            repoUrl: "string",
                            directories: [{
                                path: "string",
                                exclude: false,
                            }],
                            files: [{
                                path: "string",
                            }],
                            pathParamPrefix: "string",
                            revision: "string",
                            template: {
                                metadata: {
                                    annotations: {
                                        string: "string",
                                    },
                                    finalizers: ["string"],
                                    labels: {
                                        string: "string",
                                    },
                                    name: "string",
                                    namespace: "string",
                                },
                                spec: {
                                    destination: {
                                        name: "string",
                                        namespace: "string",
                                        server: "string",
                                    },
                                    ignoreDifferences: [{
                                        group: "string",
                                        jqPathExpressions: ["string"],
                                        jsonPointers: ["string"],
                                        kind: "string",
                                        managedFieldsManagers: ["string"],
                                        name: "string",
                                        namespace: "string",
                                    }],
                                    infos: [{
                                        name: "string",
                                        value: "string",
                                    }],
                                    project: "string",
                                    revisionHistoryLimit: 0,
                                    sources: [{
                                        chart: "string",
                                        directory: {
                                            exclude: "string",
                                            include: "string",
                                            jsonnet: {
                                                extVars: [{
                                                    code: false,
                                                    name: "string",
                                                    value: "string",
                                                }],
                                                libs: ["string"],
                                                tlas: [{
                                                    code: false,
                                                    name: "string",
                                                    value: "string",
                                                }],
                                            },
                                            recurse: false,
                                        },
                                        helm: {
                                            fileParameters: [{
                                                name: "string",
                                                path: "string",
                                            }],
                                            ignoreMissingValueFiles: false,
                                            parameters: [{
                                                forceString: false,
                                                name: "string",
                                                value: "string",
                                            }],
                                            passCredentials: false,
                                            releaseName: "string",
                                            skipCrds: false,
                                            valueFiles: ["string"],
                                            values: "string",
                                            version: "string",
                                        },
                                        kustomize: {
                                            commonAnnotations: {
                                                string: "string",
                                            },
                                            commonLabels: {
                                                string: "string",
                                            },
                                            images: ["string"],
                                            namePrefix: "string",
                                            nameSuffix: "string",
                                            patches: [{
                                                target: {
                                                    annotationSelector: "string",
                                                    group: "string",
                                                    kind: "string",
                                                    labelSelector: "string",
                                                    name: "string",
                                                    namespace: "string",
                                                    version: "string",
                                                },
                                                options: {
                                                    string: false,
                                                },
                                                patch: "string",
                                                path: "string",
                                            }],
                                            version: "string",
                                        },
                                        path: "string",
                                        plugin: {
                                            envs: [{
                                                name: "string",
                                                value: "string",
                                            }],
                                            name: "string",
                                        },
                                        ref: "string",
                                        repoUrl: "string",
                                        targetRevision: "string",
                                    }],
                                    syncPolicy: {
                                        automated: {
                                            allowEmpty: false,
                                            prune: false,
                                            selfHeal: false,
                                        },
                                        managedNamespaceMetadata: {
                                            annotations: {
                                                string: "string",
                                            },
                                            labels: {
                                                string: "string",
                                            },
                                        },
                                        retry: {
                                            backoff: {
                                                duration: "string",
                                                factor: "string",
                                                maxDuration: "string",
                                            },
                                            limit: "string",
                                        },
                                        syncOptions: ["string"],
                                    },
                                },
                            },
                            values: {
                                string: "string",
                            },
                        }],
                        lists: [{
                            elements: [{
                                string: "string",
                            }],
                            template: {
                                metadata: {
                                    annotations: {
                                        string: "string",
                                    },
                                    finalizers: ["string"],
                                    labels: {
                                        string: "string",
                                    },
                                    name: "string",
                                    namespace: "string",
                                },
                                spec: {
                                    destination: {
                                        name: "string",
                                        namespace: "string",
                                        server: "string",
                                    },
                                    ignoreDifferences: [{
                                        group: "string",
                                        jqPathExpressions: ["string"],
                                        jsonPointers: ["string"],
                                        kind: "string",
                                        managedFieldsManagers: ["string"],
                                        name: "string",
                                        namespace: "string",
                                    }],
                                    infos: [{
                                        name: "string",
                                        value: "string",
                                    }],
                                    project: "string",
                                    revisionHistoryLimit: 0,
                                    sources: [{
                                        chart: "string",
                                        directory: {
                                            exclude: "string",
                                            include: "string",
                                            jsonnet: {
                                                extVars: [{
                                                    code: false,
                                                    name: "string",
                                                    value: "string",
                                                }],
                                                libs: ["string"],
                                                tlas: [{
                                                    code: false,
                                                    name: "string",
                                                    value: "string",
                                                }],
                                            },
                                            recurse: false,
                                        },
                                        helm: {
                                            fileParameters: [{
                                                name: "string",
                                                path: "string",
                                            }],
                                            ignoreMissingValueFiles: false,
                                            parameters: [{
                                                forceString: false,
                                                name: "string",
                                                value: "string",
                                            }],
                                            passCredentials: false,
                                            releaseName: "string",
                                            skipCrds: false,
                                            valueFiles: ["string"],
                                            values: "string",
                                            version: "string",
                                        },
                                        kustomize: {
                                            commonAnnotations: {
                                                string: "string",
                                            },
                                            commonLabels: {
                                                string: "string",
                                            },
                                            images: ["string"],
                                            namePrefix: "string",
                                            nameSuffix: "string",
                                            patches: [{
                                                target: {
                                                    annotationSelector: "string",
                                                    group: "string",
                                                    kind: "string",
                                                    labelSelector: "string",
                                                    name: "string",
                                                    namespace: "string",
                                                    version: "string",
                                                },
                                                options: {
                                                    string: false,
                                                },
                                                patch: "string",
                                                path: "string",
                                            }],
                                            version: "string",
                                        },
                                        path: "string",
                                        plugin: {
                                            envs: [{
                                                name: "string",
                                                value: "string",
                                            }],
                                            name: "string",
                                        },
                                        ref: "string",
                                        repoUrl: "string",
                                        targetRevision: "string",
                                    }],
                                    syncPolicy: {
                                        automated: {
                                            allowEmpty: false,
                                            prune: false,
                                            selfHeal: false,
                                        },
                                        managedNamespaceMetadata: {
                                            annotations: {
                                                string: "string",
                                            },
                                            labels: {
                                                string: "string",
                                            },
                                        },
                                        retry: {
                                            backoff: {
                                                duration: "string",
                                                factor: "string",
                                                maxDuration: "string",
                                            },
                                            limit: "string",
                                        },
                                        syncOptions: ["string"],
                                    },
                                },
                            },
                        }],
                        matrices: [{
                            generators: [{
                                clusterDecisionResources: [{
                                    configMapRef: "string",
                                    labelSelector: {
                                        matchExpressions: [{
                                            key: "string",
                                            operator: "string",
                                            values: ["string"],
                                        }],
                                        matchLabels: {
                                            string: "string",
                                        },
                                    },
                                    name: "string",
                                    requeueAfterSeconds: "string",
                                    template: {
                                        metadata: {
                                            annotations: {
                                                string: "string",
                                            },
                                            finalizers: ["string"],
                                            labels: {
                                                string: "string",
                                            },
                                            name: "string",
                                            namespace: "string",
                                        },
                                        spec: {
                                            destination: {
                                                name: "string",
                                                namespace: "string",
                                                server: "string",
                                            },
                                            ignoreDifferences: [{
                                                group: "string",
                                                jqPathExpressions: ["string"],
                                                jsonPointers: ["string"],
                                                kind: "string",
                                                managedFieldsManagers: ["string"],
                                                name: "string",
                                                namespace: "string",
                                            }],
                                            infos: [{
                                                name: "string",
                                                value: "string",
                                            }],
                                            project: "string",
                                            revisionHistoryLimit: 0,
                                            sources: [{
                                                chart: "string",
                                                directory: {
                                                    exclude: "string",
                                                    include: "string",
                                                    jsonnet: {
                                                        extVars: [{
                                                            code: false,
                                                            name: "string",
                                                            value: "string",
                                                        }],
                                                        libs: ["string"],
                                                        tlas: [{
                                                            code: false,
                                                            name: "string",
                                                            value: "string",
                                                        }],
                                                    },
                                                    recurse: false,
                                                },
                                                helm: {
                                                    fileParameters: [{
                                                        name: "string",
                                                        path: "string",
                                                    }],
                                                    ignoreMissingValueFiles: false,
                                                    parameters: [{
                                                        forceString: false,
                                                        name: "string",
                                                        value: "string",
                                                    }],
                                                    passCredentials: false,
                                                    releaseName: "string",
                                                    skipCrds: false,
                                                    valueFiles: ["string"],
                                                    values: "string",
                                                    version: "string",
                                                },
                                                kustomize: {
                                                    commonAnnotations: {
                                                        string: "string",
                                                    },
                                                    commonLabels: {
                                                        string: "string",
                                                    },
                                                    images: ["string"],
                                                    namePrefix: "string",
                                                    nameSuffix: "string",
                                                    patches: [{
                                                        target: {
                                                            annotationSelector: "string",
                                                            group: "string",
                                                            kind: "string",
                                                            labelSelector: "string",
                                                            name: "string",
                                                            namespace: "string",
                                                            version: "string",
                                                        },
                                                        options: {
                                                            string: false,
                                                        },
                                                        patch: "string",
                                                        path: "string",
                                                    }],
                                                    version: "string",
                                                },
                                                path: "string",
                                                plugin: {
                                                    envs: [{
                                                        name: "string",
                                                        value: "string",
                                                    }],
                                                    name: "string",
                                                },
                                                ref: "string",
                                                repoUrl: "string",
                                                targetRevision: "string",
                                            }],
                                            syncPolicy: {
                                                automated: {
                                                    allowEmpty: false,
                                                    prune: false,
                                                    selfHeal: false,
                                                },
                                                managedNamespaceMetadata: {
                                                    annotations: {
                                                        string: "string",
                                                    },
                                                    labels: {
                                                        string: "string",
                                                    },
                                                },
                                                retry: {
                                                    backoff: {
                                                        duration: "string",
                                                        factor: "string",
                                                        maxDuration: "string",
                                                    },
                                                    limit: "string",
                                                },
                                                syncOptions: ["string"],
                                            },
                                        },
                                    },
                                    values: {
                                        string: "string",
                                    },
                                }],
                                clusters: [{
                                    enabled: false,
                                    selector: {
                                        matchExpressions: [{
                                            key: "string",
                                            operator: "string",
                                            values: ["string"],
                                        }],
                                        matchLabels: {
                                            string: "string",
                                        },
                                    },
                                    template: {
                                        metadata: {
                                            annotations: {
                                                string: "string",
                                            },
                                            finalizers: ["string"],
                                            labels: {
                                                string: "string",
                                            },
                                            name: "string",
                                            namespace: "string",
                                        },
                                        spec: {
                                            destination: {
                                                name: "string",
                                                namespace: "string",
                                                server: "string",
                                            },
                                            ignoreDifferences: [{
                                                group: "string",
                                                jqPathExpressions: ["string"],
                                                jsonPointers: ["string"],
                                                kind: "string",
                                                managedFieldsManagers: ["string"],
                                                name: "string",
                                                namespace: "string",
                                            }],
                                            infos: [{
                                                name: "string",
                                                value: "string",
                                            }],
                                            project: "string",
                                            revisionHistoryLimit: 0,
                                            sources: [{
                                                chart: "string",
                                                directory: {
                                                    exclude: "string",
                                                    include: "string",
                                                    jsonnet: {
                                                        extVars: [{
                                                            code: false,
                                                            name: "string",
                                                            value: "string",
                                                        }],
                                                        libs: ["string"],
                                                        tlas: [{
                                                            code: false,
                                                            name: "string",
                                                            value: "string",
                                                        }],
                                                    },
                                                    recurse: false,
                                                },
                                                helm: {
                                                    fileParameters: [{
                                                        name: "string",
                                                        path: "string",
                                                    }],
                                                    ignoreMissingValueFiles: false,
                                                    parameters: [{
                                                        forceString: false,
                                                        name: "string",
                                                        value: "string",
                                                    }],
                                                    passCredentials: false,
                                                    releaseName: "string",
                                                    skipCrds: false,
                                                    valueFiles: ["string"],
                                                    values: "string",
                                                    version: "string",
                                                },
                                                kustomize: {
                                                    commonAnnotations: {
                                                        string: "string",
                                                    },
                                                    commonLabels: {
                                                        string: "string",
                                                    },
                                                    images: ["string"],
                                                    namePrefix: "string",
                                                    nameSuffix: "string",
                                                    patches: [{
                                                        target: {
                                                            annotationSelector: "string",
                                                            group: "string",
                                                            kind: "string",
                                                            labelSelector: "string",
                                                            name: "string",
                                                            namespace: "string",
                                                            version: "string",
                                                        },
                                                        options: {
                                                            string: false,
                                                        },
                                                        patch: "string",
                                                        path: "string",
                                                    }],
                                                    version: "string",
                                                },
                                                path: "string",
                                                plugin: {
                                                    envs: [{
                                                        name: "string",
                                                        value: "string",
                                                    }],
                                                    name: "string",
                                                },
                                                ref: "string",
                                                repoUrl: "string",
                                                targetRevision: "string",
                                            }],
                                            syncPolicy: {
                                                automated: {
                                                    allowEmpty: false,
                                                    prune: false,
                                                    selfHeal: false,
                                                },
                                                managedNamespaceMetadata: {
                                                    annotations: {
                                                        string: "string",
                                                    },
                                                    labels: {
                                                        string: "string",
                                                    },
                                                },
                                                retry: {
                                                    backoff: {
                                                        duration: "string",
                                                        factor: "string",
                                                        maxDuration: "string",
                                                    },
                                                    limit: "string",
                                                },
                                                syncOptions: ["string"],
                                            },
                                        },
                                    },
                                    values: {
                                        string: "string",
                                    },
                                }],
                                gits: [{
                                    repoUrl: "string",
                                    directories: [{
                                        path: "string",
                                        exclude: false,
                                    }],
                                    files: [{
                                        path: "string",
                                    }],
                                    pathParamPrefix: "string",
                                    revision: "string",
                                    template: {
                                        metadata: {
                                            annotations: {
                                                string: "string",
                                            },
                                            finalizers: ["string"],
                                            labels: {
                                                string: "string",
                                            },
                                            name: "string",
                                            namespace: "string",
                                        },
                                        spec: {
                                            destination: {
                                                name: "string",
                                                namespace: "string",
                                                server: "string",
                                            },
                                            ignoreDifferences: [{
                                                group: "string",
                                                jqPathExpressions: ["string"],
                                                jsonPointers: ["string"],
                                                kind: "string",
                                                managedFieldsManagers: ["string"],
                                                name: "string",
                                                namespace: "string",
                                            }],
                                            infos: [{
                                                name: "string",
                                                value: "string",
                                            }],
                                            project: "string",
                                            revisionHistoryLimit: 0,
                                            sources: [{
                                                chart: "string",
                                                directory: {
                                                    exclude: "string",
                                                    include: "string",
                                                    jsonnet: {
                                                        extVars: [{
                                                            code: false,
                                                            name: "string",
                                                            value: "string",
                                                        }],
                                                        libs: ["string"],
                                                        tlas: [{
                                                            code: false,
                                                            name: "string",
                                                            value: "string",
                                                        }],
                                                    },
                                                    recurse: false,
                                                },
                                                helm: {
                                                    fileParameters: [{
                                                        name: "string",
                                                        path: "string",
                                                    }],
                                                    ignoreMissingValueFiles: false,
                                                    parameters: [{
                                                        forceString: false,
                                                        name: "string",
                                                        value: "string",
                                                    }],
                                                    passCredentials: false,
                                                    releaseName: "string",
                                                    skipCrds: false,
                                                    valueFiles: ["string"],
                                                    values: "string",
                                                    version: "string",
                                                },
                                                kustomize: {
                                                    commonAnnotations: {
                                                        string: "string",
                                                    },
                                                    commonLabels: {
                                                        string: "string",
                                                    },
                                                    images: ["string"],
                                                    namePrefix: "string",
                                                    nameSuffix: "string",
                                                    patches: [{
                                                        target: {
                                                            annotationSelector: "string",
                                                            group: "string",
                                                            kind: "string",
                                                            labelSelector: "string",
                                                            name: "string",
                                                            namespace: "string",
                                                            version: "string",
                                                        },
                                                        options: {
                                                            string: false,
                                                        },
                                                        patch: "string",
                                                        path: "string",
                                                    }],
                                                    version: "string",
                                                },
                                                path: "string",
                                                plugin: {
                                                    envs: [{
                                                        name: "string",
                                                        value: "string",
                                                    }],
                                                    name: "string",
                                                },
                                                ref: "string",
                                                repoUrl: "string",
                                                targetRevision: "string",
                                            }],
                                            syncPolicy: {
                                                automated: {
                                                    allowEmpty: false,
                                                    prune: false,
                                                    selfHeal: false,
                                                },
                                                managedNamespaceMetadata: {
                                                    annotations: {
                                                        string: "string",
                                                    },
                                                    labels: {
                                                        string: "string",
                                                    },
                                                },
                                                retry: {
                                                    backoff: {
                                                        duration: "string",
                                                        factor: "string",
                                                        maxDuration: "string",
                                                    },
                                                    limit: "string",
                                                },
                                                syncOptions: ["string"],
                                            },
                                        },
                                    },
                                    values: {
                                        string: "string",
                                    },
                                }],
                                lists: [{
                                    elements: [{
                                        string: "string",
                                    }],
                                    template: {
                                        metadata: {
                                            annotations: {
                                                string: "string",
                                            },
                                            finalizers: ["string"],
                                            labels: {
                                                string: "string",
                                            },
                                            name: "string",
                                            namespace: "string",
                                        },
                                        spec: {
                                            destination: {
                                                name: "string",
                                                namespace: "string",
                                                server: "string",
                                            },
                                            ignoreDifferences: [{
                                                group: "string",
                                                jqPathExpressions: ["string"],
                                                jsonPointers: ["string"],
                                                kind: "string",
                                                managedFieldsManagers: ["string"],
                                                name: "string",
                                                namespace: "string",
                                            }],
                                            infos: [{
                                                name: "string",
                                                value: "string",
                                            }],
                                            project: "string",
                                            revisionHistoryLimit: 0,
                                            sources: [{
                                                chart: "string",
                                                directory: {
                                                    exclude: "string",
                                                    include: "string",
                                                    jsonnet: {
                                                        extVars: [{
                                                            code: false,
                                                            name: "string",
                                                            value: "string",
                                                        }],
                                                        libs: ["string"],
                                                        tlas: [{
                                                            code: false,
                                                            name: "string",
                                                            value: "string",
                                                        }],
                                                    },
                                                    recurse: false,
                                                },
                                                helm: {
                                                    fileParameters: [{
                                                        name: "string",
                                                        path: "string",
                                                    }],
                                                    ignoreMissingValueFiles: false,
                                                    parameters: [{
                                                        forceString: false,
                                                        name: "string",
                                                        value: "string",
                                                    }],
                                                    passCredentials: false,
                                                    releaseName: "string",
                                                    skipCrds: false,
                                                    valueFiles: ["string"],
                                                    values: "string",
                                                    version: "string",
                                                },
                                                kustomize: {
                                                    commonAnnotations: {
                                                        string: "string",
                                                    },
                                                    commonLabels: {
                                                        string: "string",
                                                    },
                                                    images: ["string"],
                                                    namePrefix: "string",
                                                    nameSuffix: "string",
                                                    patches: [{
                                                        target: {
                                                            annotationSelector: "string",
                                                            group: "string",
                                                            kind: "string",
                                                            labelSelector: "string",
                                                            name: "string",
                                                            namespace: "string",
                                                            version: "string",
                                                        },
                                                        options: {
                                                            string: false,
                                                        },
                                                        patch: "string",
                                                        path: "string",
                                                    }],
                                                    version: "string",
                                                },
                                                path: "string",
                                                plugin: {
                                                    envs: [{
                                                        name: "string",
                                                        value: "string",
                                                    }],
                                                    name: "string",
                                                },
                                                ref: "string",
                                                repoUrl: "string",
                                                targetRevision: "string",
                                            }],
                                            syncPolicy: {
                                                automated: {
                                                    allowEmpty: false,
                                                    prune: false,
                                                    selfHeal: false,
                                                },
                                                managedNamespaceMetadata: {
                                                    annotations: {
                                                        string: "string",
                                                    },
                                                    labels: {
                                                        string: "string",
                                                    },
                                                },
                                                retry: {
                                                    backoff: {
                                                        duration: "string",
                                                        factor: "string",
                                                        maxDuration: "string",
                                                    },
                                                    limit: "string",
                                                },
                                                syncOptions: ["string"],
                                            },
                                        },
                                    },
                                }],
                                pullRequests: [{
                                    bitbucketServer: {
                                        api: "string",
                                        project: "string",
                                        repo: "string",
                                        basicAuth: {
                                            passwordRef: {
                                                key: "string",
                                                secretName: "string",
                                            },
                                            username: "string",
                                        },
                                    },
                                    filters: [{
                                        branchMatch: "string",
                                    }],
                                    gitea: {
                                        api: "string",
                                        owner: "string",
                                        repo: "string",
                                        insecure: false,
                                        tokenRef: {
                                            key: "string",
                                            secretName: "string",
                                        },
                                    },
                                    github: {
                                        owner: "string",
                                        repo: "string",
                                        api: "string",
                                        appSecretName: "string",
                                        labels: ["string"],
                                        tokenRef: {
                                            key: "string",
                                            secretName: "string",
                                        },
                                    },
                                    gitlab: {
                                        project: "string",
                                        api: "string",
                                        labels: ["string"],
                                        pullRequestState: "string",
                                        tokenRef: {
                                            key: "string",
                                            secretName: "string",
                                        },
                                    },
                                    requeueAfterSeconds: "string",
                                    template: {
                                        metadata: {
                                            annotations: {
                                                string: "string",
                                            },
                                            finalizers: ["string"],
                                            labels: {
                                                string: "string",
                                            },
                                            name: "string",
                                            namespace: "string",
                                        },
                                        spec: {
                                            destination: {
                                                name: "string",
                                                namespace: "string",
                                                server: "string",
                                            },
                                            ignoreDifferences: [{
                                                group: "string",
                                                jqPathExpressions: ["string"],
                                                jsonPointers: ["string"],
                                                kind: "string",
                                                managedFieldsManagers: ["string"],
                                                name: "string",
                                                namespace: "string",
                                            }],
                                            infos: [{
                                                name: "string",
                                                value: "string",
                                            }],
                                            project: "string",
                                            revisionHistoryLimit: 0,
                                            sources: [{
                                                chart: "string",
                                                directory: {
                                                    exclude: "string",
                                                    include: "string",
                                                    jsonnet: {
                                                        extVars: [{
                                                            code: false,
                                                            name: "string",
                                                            value: "string",
                                                        }],
                                                        libs: ["string"],
                                                        tlas: [{
                                                            code: false,
                                                            name: "string",
                                                            value: "string",
                                                        }],
                                                    },
                                                    recurse: false,
                                                },
                                                helm: {
                                                    fileParameters: [{
                                                        name: "string",
                                                        path: "string",
                                                    }],
                                                    ignoreMissingValueFiles: false,
                                                    parameters: [{
                                                        forceString: false,
                                                        name: "string",
                                                        value: "string",
                                                    }],
                                                    passCredentials: false,
                                                    releaseName: "string",
                                                    skipCrds: false,
                                                    valueFiles: ["string"],
                                                    values: "string",
                                                    version: "string",
                                                },
                                                kustomize: {
                                                    commonAnnotations: {
                                                        string: "string",
                                                    },
                                                    commonLabels: {
                                                        string: "string",
                                                    },
                                                    images: ["string"],
                                                    namePrefix: "string",
                                                    nameSuffix: "string",
                                                    patches: [{
                                                        target: {
                                                            annotationSelector: "string",
                                                            group: "string",
                                                            kind: "string",
                                                            labelSelector: "string",
                                                            name: "string",
                                                            namespace: "string",
                                                            version: "string",
                                                        },
                                                        options: {
                                                            string: false,
                                                        },
                                                        patch: "string",
                                                        path: "string",
                                                    }],
                                                    version: "string",
                                                },
                                                path: "string",
                                                plugin: {
                                                    envs: [{
                                                        name: "string",
                                                        value: "string",
                                                    }],
                                                    name: "string",
                                                },
                                                ref: "string",
                                                repoUrl: "string",
                                                targetRevision: "string",
                                            }],
                                            syncPolicy: {
                                                automated: {
                                                    allowEmpty: false,
                                                    prune: false,
                                                    selfHeal: false,
                                                },
                                                managedNamespaceMetadata: {
                                                    annotations: {
                                                        string: "string",
                                                    },
                                                    labels: {
                                                        string: "string",
                                                    },
                                                },
                                                retry: {
                                                    backoff: {
                                                        duration: "string",
                                                        factor: "string",
                                                        maxDuration: "string",
                                                    },
                                                    limit: "string",
                                                },
                                                syncOptions: ["string"],
                                            },
                                        },
                                    },
                                }],
                                scmProviders: [{
                                    azureDevops: {
                                        organization: "string",
                                        teamProject: "string",
                                        accessTokenRef: {
                                            key: "string",
                                            secretName: "string",
                                        },
                                        allBranches: false,
                                        api: "string",
                                    },
                                    bitbucketCloud: {
                                        owner: "string",
                                        user: "string",
                                        allBranches: false,
                                        appPasswordRef: {
                                            key: "string",
                                            secretName: "string",
                                        },
                                    },
                                    bitbucketServer: {
                                        api: "string",
                                        project: "string",
                                        allBranches: false,
                                        basicAuth: {
                                            passwordRef: {
                                                key: "string",
                                                secretName: "string",
                                            },
                                            username: "string",
                                        },
                                    },
                                    cloneProtocol: "string",
                                    filters: [{
                                        branchMatch: "string",
                                        labelMatch: "string",
                                        pathsDoNotExists: ["string"],
                                        pathsExists: ["string"],
                                        repositoryMatch: "string",
                                    }],
                                    gitea: {
                                        owner: "string",
                                        allBranches: false,
                                        api: "string",
                                        insecure: false,
                                        tokenRef: {
                                            key: "string",
                                            secretName: "string",
                                        },
                                    },
                                    github: {
                                        organization: "string",
                                        allBranches: false,
                                        api: "string",
                                        appSecretName: "string",
                                        tokenRef: {
                                            key: "string",
                                            secretName: "string",
                                        },
                                    },
                                    gitlab: {
                                        group: "string",
                                        allBranches: false,
                                        api: "string",
                                        includeSubgroups: false,
                                        tokenRef: {
                                            key: "string",
                                            secretName: "string",
                                        },
                                    },
                                    requeueAfterSeconds: "string",
                                    template: {
                                        metadata: {
                                            annotations: {
                                                string: "string",
                                            },
                                            finalizers: ["string"],
                                            labels: {
                                                string: "string",
                                            },
                                            name: "string",
                                            namespace: "string",
                                        },
                                        spec: {
                                            destination: {
                                                name: "string",
                                                namespace: "string",
                                                server: "string",
                                            },
                                            ignoreDifferences: [{
                                                group: "string",
                                                jqPathExpressions: ["string"],
                                                jsonPointers: ["string"],
                                                kind: "string",
                                                managedFieldsManagers: ["string"],
                                                name: "string",
                                                namespace: "string",
                                            }],
                                            infos: [{
                                                name: "string",
                                                value: "string",
                                            }],
                                            project: "string",
                                            revisionHistoryLimit: 0,
                                            sources: [{
                                                chart: "string",
                                                directory: {
                                                    exclude: "string",
                                                    include: "string",
                                                    jsonnet: {
                                                        extVars: [{
                                                            code: false,
                                                            name: "string",
                                                            value: "string",
                                                        }],
                                                        libs: ["string"],
                                                        tlas: [{
                                                            code: false,
                                                            name: "string",
                                                            value: "string",
                                                        }],
                                                    },
                                                    recurse: false,
                                                },
                                                helm: {
                                                    fileParameters: [{
                                                        name: "string",
                                                        path: "string",
                                                    }],
                                                    ignoreMissingValueFiles: false,
                                                    parameters: [{
                                                        forceString: false,
                                                        name: "string",
                                                        value: "string",
                                                    }],
                                                    passCredentials: false,
                                                    releaseName: "string",
                                                    skipCrds: false,
                                                    valueFiles: ["string"],
                                                    values: "string",
                                                    version: "string",
                                                },
                                                kustomize: {
                                                    commonAnnotations: {
                                                        string: "string",
                                                    },
                                                    commonLabels: {
                                                        string: "string",
                                                    },
                                                    images: ["string"],
                                                    namePrefix: "string",
                                                    nameSuffix: "string",
                                                    patches: [{
                                                        target: {
                                                            annotationSelector: "string",
                                                            group: "string",
                                                            kind: "string",
                                                            labelSelector: "string",
                                                            name: "string",
                                                            namespace: "string",
                                                            version: "string",
                                                        },
                                                        options: {
                                                            string: false,
                                                        },
                                                        patch: "string",
                                                        path: "string",
                                                    }],
                                                    version: "string",
                                                },
                                                path: "string",
                                                plugin: {
                                                    envs: [{
                                                        name: "string",
                                                        value: "string",
                                                    }],
                                                    name: "string",
                                                },
                                                ref: "string",
                                                repoUrl: "string",
                                                targetRevision: "string",
                                            }],
                                            syncPolicy: {
                                                automated: {
                                                    allowEmpty: false,
                                                    prune: false,
                                                    selfHeal: false,
                                                },
                                                managedNamespaceMetadata: {
                                                    annotations: {
                                                        string: "string",
                                                    },
                                                    labels: {
                                                        string: "string",
                                                    },
                                                },
                                                retry: {
                                                    backoff: {
                                                        duration: "string",
                                                        factor: "string",
                                                        maxDuration: "string",
                                                    },
                                                    limit: "string",
                                                },
                                                syncOptions: ["string"],
                                            },
                                        },
                                    },
                                }],
                                selector: {
                                    matchExpressions: [{
                                        key: "string",
                                        operator: "string",
                                        values: ["string"],
                                    }],
                                    matchLabels: {
                                        string: "string",
                                    },
                                },
                            }],
                            template: {
                                metadata: {
                                    annotations: {
                                        string: "string",
                                    },
                                    finalizers: ["string"],
                                    labels: {
                                        string: "string",
                                    },
                                    name: "string",
                                    namespace: "string",
                                },
                                spec: {
                                    destination: {
                                        name: "string",
                                        namespace: "string",
                                        server: "string",
                                    },
                                    ignoreDifferences: [{
                                        group: "string",
                                        jqPathExpressions: ["string"],
                                        jsonPointers: ["string"],
                                        kind: "string",
                                        managedFieldsManagers: ["string"],
                                        name: "string",
                                        namespace: "string",
                                    }],
                                    infos: [{
                                        name: "string",
                                        value: "string",
                                    }],
                                    project: "string",
                                    revisionHistoryLimit: 0,
                                    sources: [{
                                        chart: "string",
                                        directory: {
                                            exclude: "string",
                                            include: "string",
                                            jsonnet: {
                                                extVars: [{
                                                    code: false,
                                                    name: "string",
                                                    value: "string",
                                                }],
                                                libs: ["string"],
                                                tlas: [{
                                                    code: false,
                                                    name: "string",
                                                    value: "string",
                                                }],
                                            },
                                            recurse: false,
                                        },
                                        helm: {
                                            fileParameters: [{
                                                name: "string",
                                                path: "string",
                                            }],
                                            ignoreMissingValueFiles: false,
                                            parameters: [{
                                                forceString: false,
                                                name: "string",
                                                value: "string",
                                            }],
                                            passCredentials: false,
                                            releaseName: "string",
                                            skipCrds: false,
                                            valueFiles: ["string"],
                                            values: "string",
                                            version: "string",
                                        },
                                        kustomize: {
                                            commonAnnotations: {
                                                string: "string",
                                            },
                                            commonLabels: {
                                                string: "string",
                                            },
                                            images: ["string"],
                                            namePrefix: "string",
                                            nameSuffix: "string",
                                            patches: [{
                                                target: {
                                                    annotationSelector: "string",
                                                    group: "string",
                                                    kind: "string",
                                                    labelSelector: "string",
                                                    name: "string",
                                                    namespace: "string",
                                                    version: "string",
                                                },
                                                options: {
                                                    string: false,
                                                },
                                                patch: "string",
                                                path: "string",
                                            }],
                                            version: "string",
                                        },
                                        path: "string",
                                        plugin: {
                                            envs: [{
                                                name: "string",
                                                value: "string",
                                            }],
                                            name: "string",
                                        },
                                        ref: "string",
                                        repoUrl: "string",
                                        targetRevision: "string",
                                    }],
                                    syncPolicy: {
                                        automated: {
                                            allowEmpty: false,
                                            prune: false,
                                            selfHeal: false,
                                        },
                                        managedNamespaceMetadata: {
                                            annotations: {
                                                string: "string",
                                            },
                                            labels: {
                                                string: "string",
                                            },
                                        },
                                        retry: {
                                            backoff: {
                                                duration: "string",
                                                factor: "string",
                                                maxDuration: "string",
                                            },
                                            limit: "string",
                                        },
                                        syncOptions: ["string"],
                                    },
                                },
                            },
                        }],
                        merges: [{
                            generators: [{
                                clusterDecisionResources: [{
                                    configMapRef: "string",
                                    labelSelector: {
                                        matchExpressions: [{
                                            key: "string",
                                            operator: "string",
                                            values: ["string"],
                                        }],
                                        matchLabels: {
                                            string: "string",
                                        },
                                    },
                                    name: "string",
                                    requeueAfterSeconds: "string",
                                    template: {
                                        metadata: {
                                            annotations: {
                                                string: "string",
                                            },
                                            finalizers: ["string"],
                                            labels: {
                                                string: "string",
                                            },
                                            name: "string",
                                            namespace: "string",
                                        },
                                        spec: {
                                            destination: {
                                                name: "string",
                                                namespace: "string",
                                                server: "string",
                                            },
                                            ignoreDifferences: [{
                                                group: "string",
                                                jqPathExpressions: ["string"],
                                                jsonPointers: ["string"],
                                                kind: "string",
                                                managedFieldsManagers: ["string"],
                                                name: "string",
                                                namespace: "string",
                                            }],
                                            infos: [{
                                                name: "string",
                                                value: "string",
                                            }],
                                            project: "string",
                                            revisionHistoryLimit: 0,
                                            sources: [{
                                                chart: "string",
                                                directory: {
                                                    exclude: "string",
                                                    include: "string",
                                                    jsonnet: {
                                                        extVars: [{
                                                            code: false,
                                                            name: "string",
                                                            value: "string",
                                                        }],
                                                        libs: ["string"],
                                                        tlas: [{
                                                            code: false,
                                                            name: "string",
                                                            value: "string",
                                                        }],
                                                    },
                                                    recurse: false,
                                                },
                                                helm: {
                                                    fileParameters: [{
                                                        name: "string",
                                                        path: "string",
                                                    }],
                                                    ignoreMissingValueFiles: false,
                                                    parameters: [{
                                                        forceString: false,
                                                        name: "string",
                                                        value: "string",
                                                    }],
                                                    passCredentials: false,
                                                    releaseName: "string",
                                                    skipCrds: false,
                                                    valueFiles: ["string"],
                                                    values: "string",
                                                    version: "string",
                                                },
                                                kustomize: {
                                                    commonAnnotations: {
                                                        string: "string",
                                                    },
                                                    commonLabels: {
                                                        string: "string",
                                                    },
                                                    images: ["string"],
                                                    namePrefix: "string",
                                                    nameSuffix: "string",
                                                    patches: [{
                                                        target: {
                                                            annotationSelector: "string",
                                                            group: "string",
                                                            kind: "string",
                                                            labelSelector: "string",
                                                            name: "string",
                                                            namespace: "string",
                                                            version: "string",
                                                        },
                                                        options: {
                                                            string: false,
                                                        },
                                                        patch: "string",
                                                        path: "string",
                                                    }],
                                                    version: "string",
                                                },
                                                path: "string",
                                                plugin: {
                                                    envs: [{
                                                        name: "string",
                                                        value: "string",
                                                    }],
                                                    name: "string",
                                                },
                                                ref: "string",
                                                repoUrl: "string",
                                                targetRevision: "string",
                                            }],
                                            syncPolicy: {
                                                automated: {
                                                    allowEmpty: false,
                                                    prune: false,
                                                    selfHeal: false,
                                                },
                                                managedNamespaceMetadata: {
                                                    annotations: {
                                                        string: "string",
                                                    },
                                                    labels: {
                                                        string: "string",
                                                    },
                                                },
                                                retry: {
                                                    backoff: {
                                                        duration: "string",
                                                        factor: "string",
                                                        maxDuration: "string",
                                                    },
                                                    limit: "string",
                                                },
                                                syncOptions: ["string"],
                                            },
                                        },
                                    },
                                    values: {
                                        string: "string",
                                    },
                                }],
                                clusters: [{
                                    enabled: false,
                                    selector: {
                                        matchExpressions: [{
                                            key: "string",
                                            operator: "string",
                                            values: ["string"],
                                        }],
                                        matchLabels: {
                                            string: "string",
                                        },
                                    },
                                    template: {
                                        metadata: {
                                            annotations: {
                                                string: "string",
                                            },
                                            finalizers: ["string"],
                                            labels: {
                                                string: "string",
                                            },
                                            name: "string",
                                            namespace: "string",
                                        },
                                        spec: {
                                            destination: {
                                                name: "string",
                                                namespace: "string",
                                                server: "string",
                                            },
                                            ignoreDifferences: [{
                                                group: "string",
                                                jqPathExpressions: ["string"],
                                                jsonPointers: ["string"],
                                                kind: "string",
                                                managedFieldsManagers: ["string"],
                                                name: "string",
                                                namespace: "string",
                                            }],
                                            infos: [{
                                                name: "string",
                                                value: "string",
                                            }],
                                            project: "string",
                                            revisionHistoryLimit: 0,
                                            sources: [{
                                                chart: "string",
                                                directory: {
                                                    exclude: "string",
                                                    include: "string",
                                                    jsonnet: {
                                                        extVars: [{
                                                            code: false,
                                                            name: "string",
                                                            value: "string",
                                                        }],
                                                        libs: ["string"],
                                                        tlas: [{
                                                            code: false,
                                                            name: "string",
                                                            value: "string",
                                                        }],
                                                    },
                                                    recurse: false,
                                                },
                                                helm: {
                                                    fileParameters: [{
                                                        name: "string",
                                                        path: "string",
                                                    }],
                                                    ignoreMissingValueFiles: false,
                                                    parameters: [{
                                                        forceString: false,
                                                        name: "string",
                                                        value: "string",
                                                    }],
                                                    passCredentials: false,
                                                    releaseName: "string",
                                                    skipCrds: false,
                                                    valueFiles: ["string"],
                                                    values: "string",
                                                    version: "string",
                                                },
                                                kustomize: {
                                                    commonAnnotations: {
                                                        string: "string",
                                                    },
                                                    commonLabels: {
                                                        string: "string",
                                                    },
                                                    images: ["string"],
                                                    namePrefix: "string",
                                                    nameSuffix: "string",
                                                    patches: [{
                                                        target: {
                                                            annotationSelector: "string",
                                                            group: "string",
                                                            kind: "string",
                                                            labelSelector: "string",
                                                            name: "string",
                                                            namespace: "string",
                                                            version: "string",
                                                        },
                                                        options: {
                                                            string: false,
                                                        },
                                                        patch: "string",
                                                        path: "string",
                                                    }],
                                                    version: "string",
                                                },
                                                path: "string",
                                                plugin: {
                                                    envs: [{
                                                        name: "string",
                                                        value: "string",
                                                    }],
                                                    name: "string",
                                                },
                                                ref: "string",
                                                repoUrl: "string",
                                                targetRevision: "string",
                                            }],
                                            syncPolicy: {
                                                automated: {
                                                    allowEmpty: false,
                                                    prune: false,
                                                    selfHeal: false,
                                                },
                                                managedNamespaceMetadata: {
                                                    annotations: {
                                                        string: "string",
                                                    },
                                                    labels: {
                                                        string: "string",
                                                    },
                                                },
                                                retry: {
                                                    backoff: {
                                                        duration: "string",
                                                        factor: "string",
                                                        maxDuration: "string",
                                                    },
                                                    limit: "string",
                                                },
                                                syncOptions: ["string"],
                                            },
                                        },
                                    },
                                    values: {
                                        string: "string",
                                    },
                                }],
                                gits: [{
                                    repoUrl: "string",
                                    directories: [{
                                        path: "string",
                                        exclude: false,
                                    }],
                                    files: [{
                                        path: "string",
                                    }],
                                    pathParamPrefix: "string",
                                    revision: "string",
                                    template: {
                                        metadata: {
                                            annotations: {
                                                string: "string",
                                            },
                                            finalizers: ["string"],
                                            labels: {
                                                string: "string",
                                            },
                                            name: "string",
                                            namespace: "string",
                                        },
                                        spec: {
                                            destination: {
                                                name: "string",
                                                namespace: "string",
                                                server: "string",
                                            },
                                            ignoreDifferences: [{
                                                group: "string",
                                                jqPathExpressions: ["string"],
                                                jsonPointers: ["string"],
                                                kind: "string",
                                                managedFieldsManagers: ["string"],
                                                name: "string",
                                                namespace: "string",
                                            }],
                                            infos: [{
                                                name: "string",
                                                value: "string",
                                            }],
                                            project: "string",
                                            revisionHistoryLimit: 0,
                                            sources: [{
                                                chart: "string",
                                                directory: {
                                                    exclude: "string",
                                                    include: "string",
                                                    jsonnet: {
                                                        extVars: [{
                                                            code: false,
                                                            name: "string",
                                                            value: "string",
                                                        }],
                                                        libs: ["string"],
                                                        tlas: [{
                                                            code: false,
                                                            name: "string",
                                                            value: "string",
                                                        }],
                                                    },
                                                    recurse: false,
                                                },
                                                helm: {
                                                    fileParameters: [{
                                                        name: "string",
                                                        path: "string",
                                                    }],
                                                    ignoreMissingValueFiles: false,
                                                    parameters: [{
                                                        forceString: false,
                                                        name: "string",
                                                        value: "string",
                                                    }],
                                                    passCredentials: false,
                                                    releaseName: "string",
                                                    skipCrds: false,
                                                    valueFiles: ["string"],
                                                    values: "string",
                                                    version: "string",
                                                },
                                                kustomize: {
                                                    commonAnnotations: {
                                                        string: "string",
                                                    },
                                                    commonLabels: {
                                                        string: "string",
                                                    },
                                                    images: ["string"],
                                                    namePrefix: "string",
                                                    nameSuffix: "string",
                                                    patches: [{
                                                        target: {
                                                            annotationSelector: "string",
                                                            group: "string",
                                                            kind: "string",
                                                            labelSelector: "string",
                                                            name: "string",
                                                            namespace: "string",
                                                            version: "string",
                                                        },
                                                        options: {
                                                            string: false,
                                                        },
                                                        patch: "string",
                                                        path: "string",
                                                    }],
                                                    version: "string",
                                                },
                                                path: "string",
                                                plugin: {
                                                    envs: [{
                                                        name: "string",
                                                        value: "string",
                                                    }],
                                                    name: "string",
                                                },
                                                ref: "string",
                                                repoUrl: "string",
                                                targetRevision: "string",
                                            }],
                                            syncPolicy: {
                                                automated: {
                                                    allowEmpty: false,
                                                    prune: false,
                                                    selfHeal: false,
                                                },
                                                managedNamespaceMetadata: {
                                                    annotations: {
                                                        string: "string",
                                                    },
                                                    labels: {
                                                        string: "string",
                                                    },
                                                },
                                                retry: {
                                                    backoff: {
                                                        duration: "string",
                                                        factor: "string",
                                                        maxDuration: "string",
                                                    },
                                                    limit: "string",
                                                },
                                                syncOptions: ["string"],
                                            },
                                        },
                                    },
                                    values: {
                                        string: "string",
                                    },
                                }],
                                lists: [{
                                    elements: [{
                                        string: "string",
                                    }],
                                    template: {
                                        metadata: {
                                            annotations: {
                                                string: "string",
                                            },
                                            finalizers: ["string"],
                                            labels: {
                                                string: "string",
                                            },
                                            name: "string",
                                            namespace: "string",
                                        },
                                        spec: {
                                            destination: {
                                                name: "string",
                                                namespace: "string",
                                                server: "string",
                                            },
                                            ignoreDifferences: [{
                                                group: "string",
                                                jqPathExpressions: ["string"],
                                                jsonPointers: ["string"],
                                                kind: "string",
                                                managedFieldsManagers: ["string"],
                                                name: "string",
                                                namespace: "string",
                                            }],
                                            infos: [{
                                                name: "string",
                                                value: "string",
                                            }],
                                            project: "string",
                                            revisionHistoryLimit: 0,
                                            sources: [{
                                                chart: "string",
                                                directory: {
                                                    exclude: "string",
                                                    include: "string",
                                                    jsonnet: {
                                                        extVars: [{
                                                            code: false,
                                                            name: "string",
                                                            value: "string",
                                                        }],
                                                        libs: ["string"],
                                                        tlas: [{
                                                            code: false,
                                                            name: "string",
                                                            value: "string",
                                                        }],
                                                    },
                                                    recurse: false,
                                                },
                                                helm: {
                                                    fileParameters: [{
                                                        name: "string",
                                                        path: "string",
                                                    }],
                                                    ignoreMissingValueFiles: false,
                                                    parameters: [{
                                                        forceString: false,
                                                        name: "string",
                                                        value: "string",
                                                    }],
                                                    passCredentials: false,
                                                    releaseName: "string",
                                                    skipCrds: false,
                                                    valueFiles: ["string"],
                                                    values: "string",
                                                    version: "string",
                                                },
                                                kustomize: {
                                                    commonAnnotations: {
                                                        string: "string",
                                                    },
                                                    commonLabels: {
                                                        string: "string",
                                                    },
                                                    images: ["string"],
                                                    namePrefix: "string",
                                                    nameSuffix: "string",
                                                    patches: [{
                                                        target: {
                                                            annotationSelector: "string",
                                                            group: "string",
                                                            kind: "string",
                                                            labelSelector: "string",
                                                            name: "string",
                                                            namespace: "string",
                                                            version: "string",
                                                        },
                                                        options: {
                                                            string: false,
                                                        },
                                                        patch: "string",
                                                        path: "string",
                                                    }],
                                                    version: "string",
                                                },
                                                path: "string",
                                                plugin: {
                                                    envs: [{
                                                        name: "string",
                                                        value: "string",
                                                    }],
                                                    name: "string",
                                                },
                                                ref: "string",
                                                repoUrl: "string",
                                                targetRevision: "string",
                                            }],
                                            syncPolicy: {
                                                automated: {
                                                    allowEmpty: false,
                                                    prune: false,
                                                    selfHeal: false,
                                                },
                                                managedNamespaceMetadata: {
                                                    annotations: {
                                                        string: "string",
                                                    },
                                                    labels: {
                                                        string: "string",
                                                    },
                                                },
                                                retry: {
                                                    backoff: {
                                                        duration: "string",
                                                        factor: "string",
                                                        maxDuration: "string",
                                                    },
                                                    limit: "string",
                                                },
                                                syncOptions: ["string"],
                                            },
                                        },
                                    },
                                }],
                                pullRequests: [{
                                    bitbucketServer: {
                                        api: "string",
                                        project: "string",
                                        repo: "string",
                                        basicAuth: {
                                            passwordRef: {
                                                key: "string",
                                                secretName: "string",
                                            },
                                            username: "string",
                                        },
                                    },
                                    filters: [{
                                        branchMatch: "string",
                                    }],
                                    gitea: {
                                        api: "string",
                                        owner: "string",
                                        repo: "string",
                                        insecure: false,
                                        tokenRef: {
                                            key: "string",
                                            secretName: "string",
                                        },
                                    },
                                    github: {
                                        owner: "string",
                                        repo: "string",
                                        api: "string",
                                        appSecretName: "string",
                                        labels: ["string"],
                                        tokenRef: {
                                            key: "string",
                                            secretName: "string",
                                        },
                                    },
                                    gitlab: {
                                        project: "string",
                                        api: "string",
                                        labels: ["string"],
                                        pullRequestState: "string",
                                        tokenRef: {
                                            key: "string",
                                            secretName: "string",
                                        },
                                    },
                                    requeueAfterSeconds: "string",
                                    template: {
                                        metadata: {
                                            annotations: {
                                                string: "string",
                                            },
                                            finalizers: ["string"],
                                            labels: {
                                                string: "string",
                                            },
                                            name: "string",
                                            namespace: "string",
                                        },
                                        spec: {
                                            destination: {
                                                name: "string",
                                                namespace: "string",
                                                server: "string",
                                            },
                                            ignoreDifferences: [{
                                                group: "string",
                                                jqPathExpressions: ["string"],
                                                jsonPointers: ["string"],
                                                kind: "string",
                                                managedFieldsManagers: ["string"],
                                                name: "string",
                                                namespace: "string",
                                            }],
                                            infos: [{
                                                name: "string",
                                                value: "string",
                                            }],
                                            project: "string",
                                            revisionHistoryLimit: 0,
                                            sources: [{
                                                chart: "string",
                                                directory: {
                                                    exclude: "string",
                                                    include: "string",
                                                    jsonnet: {
                                                        extVars: [{
                                                            code: false,
                                                            name: "string",
                                                            value: "string",
                                                        }],
                                                        libs: ["string"],
                                                        tlas: [{
                                                            code: false,
                                                            name: "string",
                                                            value: "string",
                                                        }],
                                                    },
                                                    recurse: false,
                                                },
                                                helm: {
                                                    fileParameters: [{
                                                        name: "string",
                                                        path: "string",
                                                    }],
                                                    ignoreMissingValueFiles: false,
                                                    parameters: [{
                                                        forceString: false,
                                                        name: "string",
                                                        value: "string",
                                                    }],
                                                    passCredentials: false,
                                                    releaseName: "string",
                                                    skipCrds: false,
                                                    valueFiles: ["string"],
                                                    values: "string",
                                                    version: "string",
                                                },
                                                kustomize: {
                                                    commonAnnotations: {
                                                        string: "string",
                                                    },
                                                    commonLabels: {
                                                        string: "string",
                                                    },
                                                    images: ["string"],
                                                    namePrefix: "string",
                                                    nameSuffix: "string",
                                                    patches: [{
                                                        target: {
                                                            annotationSelector: "string",
                                                            group: "string",
                                                            kind: "string",
                                                            labelSelector: "string",
                                                            name: "string",
                                                            namespace: "string",
                                                            version: "string",
                                                        },
                                                        options: {
                                                            string: false,
                                                        },
                                                        patch: "string",
                                                        path: "string",
                                                    }],
                                                    version: "string",
                                                },
                                                path: "string",
                                                plugin: {
                                                    envs: [{
                                                        name: "string",
                                                        value: "string",
                                                    }],
                                                    name: "string",
                                                },
                                                ref: "string",
                                                repoUrl: "string",
                                                targetRevision: "string",
                                            }],
                                            syncPolicy: {
                                                automated: {
                                                    allowEmpty: false,
                                                    prune: false,
                                                    selfHeal: false,
                                                },
                                                managedNamespaceMetadata: {
                                                    annotations: {
                                                        string: "string",
                                                    },
                                                    labels: {
                                                        string: "string",
                                                    },
                                                },
                                                retry: {
                                                    backoff: {
                                                        duration: "string",
                                                        factor: "string",
                                                        maxDuration: "string",
                                                    },
                                                    limit: "string",
                                                },
                                                syncOptions: ["string"],
                                            },
                                        },
                                    },
                                }],
                                scmProviders: [{
                                    azureDevops: {
                                        organization: "string",
                                        teamProject: "string",
                                        accessTokenRef: {
                                            key: "string",
                                            secretName: "string",
                                        },
                                        allBranches: false,
                                        api: "string",
                                    },
                                    bitbucketCloud: {
                                        owner: "string",
                                        user: "string",
                                        allBranches: false,
                                        appPasswordRef: {
                                            key: "string",
                                            secretName: "string",
                                        },
                                    },
                                    bitbucketServer: {
                                        api: "string",
                                        project: "string",
                                        allBranches: false,
                                        basicAuth: {
                                            passwordRef: {
                                                key: "string",
                                                secretName: "string",
                                            },
                                            username: "string",
                                        },
                                    },
                                    cloneProtocol: "string",
                                    filters: [{
                                        branchMatch: "string",
                                        labelMatch: "string",
                                        pathsDoNotExists: ["string"],
                                        pathsExists: ["string"],
                                        repositoryMatch: "string",
                                    }],
                                    gitea: {
                                        owner: "string",
                                        allBranches: false,
                                        api: "string",
                                        insecure: false,
                                        tokenRef: {
                                            key: "string",
                                            secretName: "string",
                                        },
                                    },
                                    github: {
                                        organization: "string",
                                        allBranches: false,
                                        api: "string",
                                        appSecretName: "string",
                                        tokenRef: {
                                            key: "string",
                                            secretName: "string",
                                        },
                                    },
                                    gitlab: {
                                        group: "string",
                                        allBranches: false,
                                        api: "string",
                                        includeSubgroups: false,
                                        tokenRef: {
                                            key: "string",
                                            secretName: "string",
                                        },
                                    },
                                    requeueAfterSeconds: "string",
                                    template: {
                                        metadata: {
                                            annotations: {
                                                string: "string",
                                            },
                                            finalizers: ["string"],
                                            labels: {
                                                string: "string",
                                            },
                                            name: "string",
                                            namespace: "string",
                                        },
                                        spec: {
                                            destination: {
                                                name: "string",
                                                namespace: "string",
                                                server: "string",
                                            },
                                            ignoreDifferences: [{
                                                group: "string",
                                                jqPathExpressions: ["string"],
                                                jsonPointers: ["string"],
                                                kind: "string",
                                                managedFieldsManagers: ["string"],
                                                name: "string",
                                                namespace: "string",
                                            }],
                                            infos: [{
                                                name: "string",
                                                value: "string",
                                            }],
                                            project: "string",
                                            revisionHistoryLimit: 0,
                                            sources: [{
                                                chart: "string",
                                                directory: {
                                                    exclude: "string",
                                                    include: "string",
                                                    jsonnet: {
                                                        extVars: [{
                                                            code: false,
                                                            name: "string",
                                                            value: "string",
                                                        }],
                                                        libs: ["string"],
                                                        tlas: [{
                                                            code: false,
                                                            name: "string",
                                                            value: "string",
                                                        }],
                                                    },
                                                    recurse: false,
                                                },
                                                helm: {
                                                    fileParameters: [{
                                                        name: "string",
                                                        path: "string",
                                                    }],
                                                    ignoreMissingValueFiles: false,
                                                    parameters: [{
                                                        forceString: false,
                                                        name: "string",
                                                        value: "string",
                                                    }],
                                                    passCredentials: false,
                                                    releaseName: "string",
                                                    skipCrds: false,
                                                    valueFiles: ["string"],
                                                    values: "string",
                                                    version: "string",
                                                },
                                                kustomize: {
                                                    commonAnnotations: {
                                                        string: "string",
                                                    },
                                                    commonLabels: {
                                                        string: "string",
                                                    },
                                                    images: ["string"],
                                                    namePrefix: "string",
                                                    nameSuffix: "string",
                                                    patches: [{
                                                        target: {
                                                            annotationSelector: "string",
                                                            group: "string",
                                                            kind: "string",
                                                            labelSelector: "string",
                                                            name: "string",
                                                            namespace: "string",
                                                            version: "string",
                                                        },
                                                        options: {
                                                            string: false,
                                                        },
                                                        patch: "string",
                                                        path: "string",
                                                    }],
                                                    version: "string",
                                                },
                                                path: "string",
                                                plugin: {
                                                    envs: [{
                                                        name: "string",
                                                        value: "string",
                                                    }],
                                                    name: "string",
                                                },
                                                ref: "string",
                                                repoUrl: "string",
                                                targetRevision: "string",
                                            }],
                                            syncPolicy: {
                                                automated: {
                                                    allowEmpty: false,
                                                    prune: false,
                                                    selfHeal: false,
                                                },
                                                managedNamespaceMetadata: {
                                                    annotations: {
                                                        string: "string",
                                                    },
                                                    labels: {
                                                        string: "string",
                                                    },
                                                },
                                                retry: {
                                                    backoff: {
                                                        duration: "string",
                                                        factor: "string",
                                                        maxDuration: "string",
                                                    },
                                                    limit: "string",
                                                },
                                                syncOptions: ["string"],
                                            },
                                        },
                                    },
                                }],
                                selector: {
                                    matchExpressions: [{
                                        key: "string",
                                        operator: "string",
                                        values: ["string"],
                                    }],
                                    matchLabels: {
                                        string: "string",
                                    },
                                },
                            }],
                            mergeKeys: ["string"],
                            template: {
                                metadata: {
                                    annotations: {
                                        string: "string",
                                    },
                                    finalizers: ["string"],
                                    labels: {
                                        string: "string",
                                    },
                                    name: "string",
                                    namespace: "string",
                                },
                                spec: {
                                    destination: {
                                        name: "string",
                                        namespace: "string",
                                        server: "string",
                                    },
                                    ignoreDifferences: [{
                                        group: "string",
                                        jqPathExpressions: ["string"],
                                        jsonPointers: ["string"],
                                        kind: "string",
                                        managedFieldsManagers: ["string"],
                                        name: "string",
                                        namespace: "string",
                                    }],
                                    infos: [{
                                        name: "string",
                                        value: "string",
                                    }],
                                    project: "string",
                                    revisionHistoryLimit: 0,
                                    sources: [{
                                        chart: "string",
                                        directory: {
                                            exclude: "string",
                                            include: "string",
                                            jsonnet: {
                                                extVars: [{
                                                    code: false,
                                                    name: "string",
                                                    value: "string",
                                                }],
                                                libs: ["string"],
                                                tlas: [{
                                                    code: false,
                                                    name: "string",
                                                    value: "string",
                                                }],
                                            },
                                            recurse: false,
                                        },
                                        helm: {
                                            fileParameters: [{
                                                name: "string",
                                                path: "string",
                                            }],
                                            ignoreMissingValueFiles: false,
                                            parameters: [{
                                                forceString: false,
                                                name: "string",
                                                value: "string",
                                            }],
                                            passCredentials: false,
                                            releaseName: "string",
                                            skipCrds: false,
                                            valueFiles: ["string"],
                                            values: "string",
                                            version: "string",
                                        },
                                        kustomize: {
                                            commonAnnotations: {
                                                string: "string",
                                            },
                                            commonLabels: {
                                                string: "string",
                                            },
                                            images: ["string"],
                                            namePrefix: "string",
                                            nameSuffix: "string",
                                            patches: [{
                                                target: {
                                                    annotationSelector: "string",
                                                    group: "string",
                                                    kind: "string",
                                                    labelSelector: "string",
                                                    name: "string",
                                                    namespace: "string",
                                                    version: "string",
                                                },
                                                options: {
                                                    string: false,
                                                },
                                                patch: "string",
                                                path: "string",
                                            }],
                                            version: "string",
                                        },
                                        path: "string",
                                        plugin: {
                                            envs: [{
                                                name: "string",
                                                value: "string",
                                            }],
                                            name: "string",
                                        },
                                        ref: "string",
                                        repoUrl: "string",
                                        targetRevision: "string",
                                    }],
                                    syncPolicy: {
                                        automated: {
                                            allowEmpty: false,
                                            prune: false,
                                            selfHeal: false,
                                        },
                                        managedNamespaceMetadata: {
                                            annotations: {
                                                string: "string",
                                            },
                                            labels: {
                                                string: "string",
                                            },
                                        },
                                        retry: {
                                            backoff: {
                                                duration: "string",
                                                factor: "string",
                                                maxDuration: "string",
                                            },
                                            limit: "string",
                                        },
                                        syncOptions: ["string"],
                                    },
                                },
                            },
                        }],
                        pullRequests: [{
                            bitbucketServer: {
                                api: "string",
                                project: "string",
                                repo: "string",
                                basicAuth: {
                                    passwordRef: {
                                        key: "string",
                                        secretName: "string",
                                    },
                                    username: "string",
                                },
                            },
                            filters: [{
                                branchMatch: "string",
                            }],
                            gitea: {
                                api: "string",
                                owner: "string",
                                repo: "string",
                                insecure: false,
                                tokenRef: {
                                    key: "string",
                                    secretName: "string",
                                },
                            },
                            github: {
                                owner: "string",
                                repo: "string",
                                api: "string",
                                appSecretName: "string",
                                labels: ["string"],
                                tokenRef: {
                                    key: "string",
                                    secretName: "string",
                                },
                            },
                            gitlab: {
                                project: "string",
                                api: "string",
                                labels: ["string"],
                                pullRequestState: "string",
                                tokenRef: {
                                    key: "string",
                                    secretName: "string",
                                },
                            },
                            requeueAfterSeconds: "string",
                            template: {
                                metadata: {
                                    annotations: {
                                        string: "string",
                                    },
                                    finalizers: ["string"],
                                    labels: {
                                        string: "string",
                                    },
                                    name: "string",
                                    namespace: "string",
                                },
                                spec: {
                                    destination: {
                                        name: "string",
                                        namespace: "string",
                                        server: "string",
                                    },
                                    ignoreDifferences: [{
                                        group: "string",
                                        jqPathExpressions: ["string"],
                                        jsonPointers: ["string"],
                                        kind: "string",
                                        managedFieldsManagers: ["string"],
                                        name: "string",
                                        namespace: "string",
                                    }],
                                    infos: [{
                                        name: "string",
                                        value: "string",
                                    }],
                                    project: "string",
                                    revisionHistoryLimit: 0,
                                    sources: [{
                                        chart: "string",
                                        directory: {
                                            exclude: "string",
                                            include: "string",
                                            jsonnet: {
                                                extVars: [{
                                                    code: false,
                                                    name: "string",
                                                    value: "string",
                                                }],
                                                libs: ["string"],
                                                tlas: [{
                                                    code: false,
                                                    name: "string",
                                                    value: "string",
                                                }],
                                            },
                                            recurse: false,
                                        },
                                        helm: {
                                            fileParameters: [{
                                                name: "string",
                                                path: "string",
                                            }],
                                            ignoreMissingValueFiles: false,
                                            parameters: [{
                                                forceString: false,
                                                name: "string",
                                                value: "string",
                                            }],
                                            passCredentials: false,
                                            releaseName: "string",
                                            skipCrds: false,
                                            valueFiles: ["string"],
                                            values: "string",
                                            version: "string",
                                        },
                                        kustomize: {
                                            commonAnnotations: {
                                                string: "string",
                                            },
                                            commonLabels: {
                                                string: "string",
                                            },
                                            images: ["string"],
                                            namePrefix: "string",
                                            nameSuffix: "string",
                                            patches: [{
                                                target: {
                                                    annotationSelector: "string",
                                                    group: "string",
                                                    kind: "string",
                                                    labelSelector: "string",
                                                    name: "string",
                                                    namespace: "string",
                                                    version: "string",
                                                },
                                                options: {
                                                    string: false,
                                                },
                                                patch: "string",
                                                path: "string",
                                            }],
                                            version: "string",
                                        },
                                        path: "string",
                                        plugin: {
                                            envs: [{
                                                name: "string",
                                                value: "string",
                                            }],
                                            name: "string",
                                        },
                                        ref: "string",
                                        repoUrl: "string",
                                        targetRevision: "string",
                                    }],
                                    syncPolicy: {
                                        automated: {
                                            allowEmpty: false,
                                            prune: false,
                                            selfHeal: false,
                                        },
                                        managedNamespaceMetadata: {
                                            annotations: {
                                                string: "string",
                                            },
                                            labels: {
                                                string: "string",
                                            },
                                        },
                                        retry: {
                                            backoff: {
                                                duration: "string",
                                                factor: "string",
                                                maxDuration: "string",
                                            },
                                            limit: "string",
                                        },
                                        syncOptions: ["string"],
                                    },
                                },
                            },
                        }],
                        scmProviders: [{
                            azureDevops: {
                                organization: "string",
                                teamProject: "string",
                                accessTokenRef: {
                                    key: "string",
                                    secretName: "string",
                                },
                                allBranches: false,
                                api: "string",
                            },
                            bitbucketCloud: {
                                owner: "string",
                                user: "string",
                                allBranches: false,
                                appPasswordRef: {
                                    key: "string",
                                    secretName: "string",
                                },
                            },
                            bitbucketServer: {
                                api: "string",
                                project: "string",
                                allBranches: false,
                                basicAuth: {
                                    passwordRef: {
                                        key: "string",
                                        secretName: "string",
                                    },
                                    username: "string",
                                },
                            },
                            cloneProtocol: "string",
                            filters: [{
                                branchMatch: "string",
                                labelMatch: "string",
                                pathsDoNotExists: ["string"],
                                pathsExists: ["string"],
                                repositoryMatch: "string",
                            }],
                            gitea: {
                                owner: "string",
                                allBranches: false,
                                api: "string",
                                insecure: false,
                                tokenRef: {
                                    key: "string",
                                    secretName: "string",
                                },
                            },
                            github: {
                                organization: "string",
                                allBranches: false,
                                api: "string",
                                appSecretName: "string",
                                tokenRef: {
                                    key: "string",
                                    secretName: "string",
                                },
                            },
                            gitlab: {
                                group: "string",
                                allBranches: false,
                                api: "string",
                                includeSubgroups: false,
                                tokenRef: {
                                    key: "string",
                                    secretName: "string",
                                },
                            },
                            requeueAfterSeconds: "string",
                            template: {
                                metadata: {
                                    annotations: {
                                        string: "string",
                                    },
                                    finalizers: ["string"],
                                    labels: {
                                        string: "string",
                                    },
                                    name: "string",
                                    namespace: "string",
                                },
                                spec: {
                                    destination: {
                                        name: "string",
                                        namespace: "string",
                                        server: "string",
                                    },
                                    ignoreDifferences: [{
                                        group: "string",
                                        jqPathExpressions: ["string"],
                                        jsonPointers: ["string"],
                                        kind: "string",
                                        managedFieldsManagers: ["string"],
                                        name: "string",
                                        namespace: "string",
                                    }],
                                    infos: [{
                                        name: "string",
                                        value: "string",
                                    }],
                                    project: "string",
                                    revisionHistoryLimit: 0,
                                    sources: [{
                                        chart: "string",
                                        directory: {
                                            exclude: "string",
                                            include: "string",
                                            jsonnet: {
                                                extVars: [{
                                                    code: false,
                                                    name: "string",
                                                    value: "string",
                                                }],
                                                libs: ["string"],
                                                tlas: [{
                                                    code: false,
                                                    name: "string",
                                                    value: "string",
                                                }],
                                            },
                                            recurse: false,
                                        },
                                        helm: {
                                            fileParameters: [{
                                                name: "string",
                                                path: "string",
                                            }],
                                            ignoreMissingValueFiles: false,
                                            parameters: [{
                                                forceString: false,
                                                name: "string",
                                                value: "string",
                                            }],
                                            passCredentials: false,
                                            releaseName: "string",
                                            skipCrds: false,
                                            valueFiles: ["string"],
                                            values: "string",
                                            version: "string",
                                        },
                                        kustomize: {
                                            commonAnnotations: {
                                                string: "string",
                                            },
                                            commonLabels: {
                                                string: "string",
                                            },
                                            images: ["string"],
                                            namePrefix: "string",
                                            nameSuffix: "string",
                                            patches: [{
                                                target: {
                                                    annotationSelector: "string",
                                                    group: "string",
                                                    kind: "string",
                                                    labelSelector: "string",
                                                    name: "string",
                                                    namespace: "string",
                                                    version: "string",
                                                },
                                                options: {
                                                    string: false,
                                                },
                                                patch: "string",
                                                path: "string",
                                            }],
                                            version: "string",
                                        },
                                        path: "string",
                                        plugin: {
                                            envs: [{
                                                name: "string",
                                                value: "string",
                                            }],
                                            name: "string",
                                        },
                                        ref: "string",
                                        repoUrl: "string",
                                        targetRevision: "string",
                                    }],
                                    syncPolicy: {
                                        automated: {
                                            allowEmpty: false,
                                            prune: false,
                                            selfHeal: false,
                                        },
                                        managedNamespaceMetadata: {
                                            annotations: {
                                                string: "string",
                                            },
                                            labels: {
                                                string: "string",
                                            },
                                        },
                                        retry: {
                                            backoff: {
                                                duration: "string",
                                                factor: "string",
                                                maxDuration: "string",
                                            },
                                            limit: "string",
                                        },
                                        syncOptions: ["string"],
                                    },
                                },
                            },
                        }],
                        selector: {
                            matchExpressions: [{
                                key: "string",
                                operator: "string",
                                values: ["string"],
                            }],
                            matchLabels: {
                                string: "string",
                            },
                        },
                    }],
                    template: {
                        metadata: {
                            annotations: {
                                string: "string",
                            },
                            finalizers: ["string"],
                            labels: {
                                string: "string",
                            },
                            name: "string",
                            namespace: "string",
                        },
                        spec: {
                            destination: {
                                name: "string",
                                namespace: "string",
                                server: "string",
                            },
                            ignoreDifferences: [{
                                group: "string",
                                jqPathExpressions: ["string"],
                                jsonPointers: ["string"],
                                kind: "string",
                                managedFieldsManagers: ["string"],
                                name: "string",
                                namespace: "string",
                            }],
                            infos: [{
                                name: "string",
                                value: "string",
                            }],
                            project: "string",
                            revisionHistoryLimit: 0,
                            sources: [{
                                chart: "string",
                                directory: {
                                    exclude: "string",
                                    include: "string",
                                    jsonnet: {
                                        extVars: [{
                                            code: false,
                                            name: "string",
                                            value: "string",
                                        }],
                                        libs: ["string"],
                                        tlas: [{
                                            code: false,
                                            name: "string",
                                            value: "string",
                                        }],
                                    },
                                    recurse: false,
                                },
                                helm: {
                                    fileParameters: [{
                                        name: "string",
                                        path: "string",
                                    }],
                                    ignoreMissingValueFiles: false,
                                    parameters: [{
                                        forceString: false,
                                        name: "string",
                                        value: "string",
                                    }],
                                    passCredentials: false,
                                    releaseName: "string",
                                    skipCrds: false,
                                    valueFiles: ["string"],
                                    values: "string",
                                    version: "string",
                                },
                                kustomize: {
                                    commonAnnotations: {
                                        string: "string",
                                    },
                                    commonLabels: {
                                        string: "string",
                                    },
                                    images: ["string"],
                                    namePrefix: "string",
                                    nameSuffix: "string",
                                    patches: [{
                                        target: {
                                            annotationSelector: "string",
                                            group: "string",
                                            kind: "string",
                                            labelSelector: "string",
                                            name: "string",
                                            namespace: "string",
                                            version: "string",
                                        },
                                        options: {
                                            string: false,
                                        },
                                        patch: "string",
                                        path: "string",
                                    }],
                                    version: "string",
                                },
                                path: "string",
                                plugin: {
                                    envs: [{
                                        name: "string",
                                        value: "string",
                                    }],
                                    name: "string",
                                },
                                ref: "string",
                                repoUrl: "string",
                                targetRevision: "string",
                            }],
                            syncPolicy: {
                                automated: {
                                    allowEmpty: false,
                                    prune: false,
                                    selfHeal: false,
                                },
                                managedNamespaceMetadata: {
                                    annotations: {
                                        string: "string",
                                    },
                                    labels: {
                                        string: "string",
                                    },
                                },
                                retry: {
                                    backoff: {
                                        duration: "string",
                                        factor: "string",
                                        maxDuration: "string",
                                    },
                                    limit: "string",
                                },
                                syncOptions: ["string"],
                            },
                        },
                    },
                }],
                merges: [{
                    generators: [{
                        clusterDecisionResources: [{
                            configMapRef: "string",
                            labelSelector: {
                                matchExpressions: [{
                                    key: "string",
                                    operator: "string",
                                    values: ["string"],
                                }],
                                matchLabels: {
                                    string: "string",
                                },
                            },
                            name: "string",
                            requeueAfterSeconds: "string",
                            template: {
                                metadata: {
                                    annotations: {
                                        string: "string",
                                    },
                                    finalizers: ["string"],
                                    labels: {
                                        string: "string",
                                    },
                                    name: "string",
                                    namespace: "string",
                                },
                                spec: {
                                    destination: {
                                        name: "string",
                                        namespace: "string",
                                        server: "string",
                                    },
                                    ignoreDifferences: [{
                                        group: "string",
                                        jqPathExpressions: ["string"],
                                        jsonPointers: ["string"],
                                        kind: "string",
                                        managedFieldsManagers: ["string"],
                                        name: "string",
                                        namespace: "string",
                                    }],
                                    infos: [{
                                        name: "string",
                                        value: "string",
                                    }],
                                    project: "string",
                                    revisionHistoryLimit: 0,
                                    sources: [{
                                        chart: "string",
                                        directory: {
                                            exclude: "string",
                                            include: "string",
                                            jsonnet: {
                                                extVars: [{
                                                    code: false,
                                                    name: "string",
                                                    value: "string",
                                                }],
                                                libs: ["string"],
                                                tlas: [{
                                                    code: false,
                                                    name: "string",
                                                    value: "string",
                                                }],
                                            },
                                            recurse: false,
                                        },
                                        helm: {
                                            fileParameters: [{
                                                name: "string",
                                                path: "string",
                                            }],
                                            ignoreMissingValueFiles: false,
                                            parameters: [{
                                                forceString: false,
                                                name: "string",
                                                value: "string",
                                            }],
                                            passCredentials: false,
                                            releaseName: "string",
                                            skipCrds: false,
                                            valueFiles: ["string"],
                                            values: "string",
                                            version: "string",
                                        },
                                        kustomize: {
                                            commonAnnotations: {
                                                string: "string",
                                            },
                                            commonLabels: {
                                                string: "string",
                                            },
                                            images: ["string"],
                                            namePrefix: "string",
                                            nameSuffix: "string",
                                            patches: [{
                                                target: {
                                                    annotationSelector: "string",
                                                    group: "string",
                                                    kind: "string",
                                                    labelSelector: "string",
                                                    name: "string",
                                                    namespace: "string",
                                                    version: "string",
                                                },
                                                options: {
                                                    string: false,
                                                },
                                                patch: "string",
                                                path: "string",
                                            }],
                                            version: "string",
                                        },
                                        path: "string",
                                        plugin: {
                                            envs: [{
                                                name: "string",
                                                value: "string",
                                            }],
                                            name: "string",
                                        },
                                        ref: "string",
                                        repoUrl: "string",
                                        targetRevision: "string",
                                    }],
                                    syncPolicy: {
                                        automated: {
                                            allowEmpty: false,
                                            prune: false,
                                            selfHeal: false,
                                        },
                                        managedNamespaceMetadata: {
                                            annotations: {
                                                string: "string",
                                            },
                                            labels: {
                                                string: "string",
                                            },
                                        },
                                        retry: {
                                            backoff: {
                                                duration: "string",
                                                factor: "string",
                                                maxDuration: "string",
                                            },
                                            limit: "string",
                                        },
                                        syncOptions: ["string"],
                                    },
                                },
                            },
                            values: {
                                string: "string",
                            },
                        }],
                        clusters: [{
                            enabled: false,
                            selector: {
                                matchExpressions: [{
                                    key: "string",
                                    operator: "string",
                                    values: ["string"],
                                }],
                                matchLabels: {
                                    string: "string",
                                },
                            },
                            template: {
                                metadata: {
                                    annotations: {
                                        string: "string",
                                    },
                                    finalizers: ["string"],
                                    labels: {
                                        string: "string",
                                    },
                                    name: "string",
                                    namespace: "string",
                                },
                                spec: {
                                    destination: {
                                        name: "string",
                                        namespace: "string",
                                        server: "string",
                                    },
                                    ignoreDifferences: [{
                                        group: "string",
                                        jqPathExpressions: ["string"],
                                        jsonPointers: ["string"],
                                        kind: "string",
                                        managedFieldsManagers: ["string"],
                                        name: "string",
                                        namespace: "string",
                                    }],
                                    infos: [{
                                        name: "string",
                                        value: "string",
                                    }],
                                    project: "string",
                                    revisionHistoryLimit: 0,
                                    sources: [{
                                        chart: "string",
                                        directory: {
                                            exclude: "string",
                                            include: "string",
                                            jsonnet: {
                                                extVars: [{
                                                    code: false,
                                                    name: "string",
                                                    value: "string",
                                                }],
                                                libs: ["string"],
                                                tlas: [{
                                                    code: false,
                                                    name: "string",
                                                    value: "string",
                                                }],
                                            },
                                            recurse: false,
                                        },
                                        helm: {
                                            fileParameters: [{
                                                name: "string",
                                                path: "string",
                                            }],
                                            ignoreMissingValueFiles: false,
                                            parameters: [{
                                                forceString: false,
                                                name: "string",
                                                value: "string",
                                            }],
                                            passCredentials: false,
                                            releaseName: "string",
                                            skipCrds: false,
                                            valueFiles: ["string"],
                                            values: "string",
                                            version: "string",
                                        },
                                        kustomize: {
                                            commonAnnotations: {
                                                string: "string",
                                            },
                                            commonLabels: {
                                                string: "string",
                                            },
                                            images: ["string"],
                                            namePrefix: "string",
                                            nameSuffix: "string",
                                            patches: [{
                                                target: {
                                                    annotationSelector: "string",
                                                    group: "string",
                                                    kind: "string",
                                                    labelSelector: "string",
                                                    name: "string",
                                                    namespace: "string",
                                                    version: "string",
                                                },
                                                options: {
                                                    string: false,
                                                },
                                                patch: "string",
                                                path: "string",
                                            }],
                                            version: "string",
                                        },
                                        path: "string",
                                        plugin: {
                                            envs: [{
                                                name: "string",
                                                value: "string",
                                            }],
                                            name: "string",
                                        },
                                        ref: "string",
                                        repoUrl: "string",
                                        targetRevision: "string",
                                    }],
                                    syncPolicy: {
                                        automated: {
                                            allowEmpty: false,
                                            prune: false,
                                            selfHeal: false,
                                        },
                                        managedNamespaceMetadata: {
                                            annotations: {
                                                string: "string",
                                            },
                                            labels: {
                                                string: "string",
                                            },
                                        },
                                        retry: {
                                            backoff: {
                                                duration: "string",
                                                factor: "string",
                                                maxDuration: "string",
                                            },
                                            limit: "string",
                                        },
                                        syncOptions: ["string"],
                                    },
                                },
                            },
                            values: {
                                string: "string",
                            },
                        }],
                        gits: [{
                            repoUrl: "string",
                            directories: [{
                                path: "string",
                                exclude: false,
                            }],
                            files: [{
                                path: "string",
                            }],
                            pathParamPrefix: "string",
                            revision: "string",
                            template: {
                                metadata: {
                                    annotations: {
                                        string: "string",
                                    },
                                    finalizers: ["string"],
                                    labels: {
                                        string: "string",
                                    },
                                    name: "string",
                                    namespace: "string",
                                },
                                spec: {
                                    destination: {
                                        name: "string",
                                        namespace: "string",
                                        server: "string",
                                    },
                                    ignoreDifferences: [{
                                        group: "string",
                                        jqPathExpressions: ["string"],
                                        jsonPointers: ["string"],
                                        kind: "string",
                                        managedFieldsManagers: ["string"],
                                        name: "string",
                                        namespace: "string",
                                    }],
                                    infos: [{
                                        name: "string",
                                        value: "string",
                                    }],
                                    project: "string",
                                    revisionHistoryLimit: 0,
                                    sources: [{
                                        chart: "string",
                                        directory: {
                                            exclude: "string",
                                            include: "string",
                                            jsonnet: {
                                                extVars: [{
                                                    code: false,
                                                    name: "string",
                                                    value: "string",
                                                }],
                                                libs: ["string"],
                                                tlas: [{
                                                    code: false,
                                                    name: "string",
                                                    value: "string",
                                                }],
                                            },
                                            recurse: false,
                                        },
                                        helm: {
                                            fileParameters: [{
                                                name: "string",
                                                path: "string",
                                            }],
                                            ignoreMissingValueFiles: false,
                                            parameters: [{
                                                forceString: false,
                                                name: "string",
                                                value: "string",
                                            }],
                                            passCredentials: false,
                                            releaseName: "string",
                                            skipCrds: false,
                                            valueFiles: ["string"],
                                            values: "string",
                                            version: "string",
                                        },
                                        kustomize: {
                                            commonAnnotations: {
                                                string: "string",
                                            },
                                            commonLabels: {
                                                string: "string",
                                            },
                                            images: ["string"],
                                            namePrefix: "string",
                                            nameSuffix: "string",
                                            patches: [{
                                                target: {
                                                    annotationSelector: "string",
                                                    group: "string",
                                                    kind: "string",
                                                    labelSelector: "string",
                                                    name: "string",
                                                    namespace: "string",
                                                    version: "string",
                                                },
                                                options: {
                                                    string: false,
                                                },
                                                patch: "string",
                                                path: "string",
                                            }],
                                            version: "string",
                                        },
                                        path: "string",
                                        plugin: {
                                            envs: [{
                                                name: "string",
                                                value: "string",
                                            }],
                                            name: "string",
                                        },
                                        ref: "string",
                                        repoUrl: "string",
                                        targetRevision: "string",
                                    }],
                                    syncPolicy: {
                                        automated: {
                                            allowEmpty: false,
                                            prune: false,
                                            selfHeal: false,
                                        },
                                        managedNamespaceMetadata: {
                                            annotations: {
                                                string: "string",
                                            },
                                            labels: {
                                                string: "string",
                                            },
                                        },
                                        retry: {
                                            backoff: {
                                                duration: "string",
                                                factor: "string",
                                                maxDuration: "string",
                                            },
                                            limit: "string",
                                        },
                                        syncOptions: ["string"],
                                    },
                                },
                            },
                            values: {
                                string: "string",
                            },
                        }],
                        lists: [{
                            elements: [{
                                string: "string",
                            }],
                            template: {
                                metadata: {
                                    annotations: {
                                        string: "string",
                                    },
                                    finalizers: ["string"],
                                    labels: {
                                        string: "string",
                                    },
                                    name: "string",
                                    namespace: "string",
                                },
                                spec: {
                                    destination: {
                                        name: "string",
                                        namespace: "string",
                                        server: "string",
                                    },
                                    ignoreDifferences: [{
                                        group: "string",
                                        jqPathExpressions: ["string"],
                                        jsonPointers: ["string"],
                                        kind: "string",
                                        managedFieldsManagers: ["string"],
                                        name: "string",
                                        namespace: "string",
                                    }],
                                    infos: [{
                                        name: "string",
                                        value: "string",
                                    }],
                                    project: "string",
                                    revisionHistoryLimit: 0,
                                    sources: [{
                                        chart: "string",
                                        directory: {
                                            exclude: "string",
                                            include: "string",
                                            jsonnet: {
                                                extVars: [{
                                                    code: false,
                                                    name: "string",
                                                    value: "string",
                                                }],
                                                libs: ["string"],
                                                tlas: [{
                                                    code: false,
                                                    name: "string",
                                                    value: "string",
                                                }],
                                            },
                                            recurse: false,
                                        },
                                        helm: {
                                            fileParameters: [{
                                                name: "string",
                                                path: "string",
                                            }],
                                            ignoreMissingValueFiles: false,
                                            parameters: [{
                                                forceString: false,
                                                name: "string",
                                                value: "string",
                                            }],
                                            passCredentials: false,
                                            releaseName: "string",
                                            skipCrds: false,
                                            valueFiles: ["string"],
                                            values: "string",
                                            version: "string",
                                        },
                                        kustomize: {
                                            commonAnnotations: {
                                                string: "string",
                                            },
                                            commonLabels: {
                                                string: "string",
                                            },
                                            images: ["string"],
                                            namePrefix: "string",
                                            nameSuffix: "string",
                                            patches: [{
                                                target: {
                                                    annotationSelector: "string",
                                                    group: "string",
                                                    kind: "string",
                                                    labelSelector: "string",
                                                    name: "string",
                                                    namespace: "string",
                                                    version: "string",
                                                },
                                                options: {
                                                    string: false,
                                                },
                                                patch: "string",
                                                path: "string",
                                            }],
                                            version: "string",
                                        },
                                        path: "string",
                                        plugin: {
                                            envs: [{
                                                name: "string",
                                                value: "string",
                                            }],
                                            name: "string",
                                        },
                                        ref: "string",
                                        repoUrl: "string",
                                        targetRevision: "string",
                                    }],
                                    syncPolicy: {
                                        automated: {
                                            allowEmpty: false,
                                            prune: false,
                                            selfHeal: false,
                                        },
                                        managedNamespaceMetadata: {
                                            annotations: {
                                                string: "string",
                                            },
                                            labels: {
                                                string: "string",
                                            },
                                        },
                                        retry: {
                                            backoff: {
                                                duration: "string",
                                                factor: "string",
                                                maxDuration: "string",
                                            },
                                            limit: "string",
                                        },
                                        syncOptions: ["string"],
                                    },
                                },
                            },
                        }],
                        matrices: [{
                            generators: [{
                                clusterDecisionResources: [{
                                    configMapRef: "string",
                                    labelSelector: {
                                        matchExpressions: [{
                                            key: "string",
                                            operator: "string",
                                            values: ["string"],
                                        }],
                                        matchLabels: {
                                            string: "string",
                                        },
                                    },
                                    name: "string",
                                    requeueAfterSeconds: "string",
                                    template: {
                                        metadata: {
                                            annotations: {
                                                string: "string",
                                            },
                                            finalizers: ["string"],
                                            labels: {
                                                string: "string",
                                            },
                                            name: "string",
                                            namespace: "string",
                                        },
                                        spec: {
                                            destination: {
                                                name: "string",
                                                namespace: "string",
                                                server: "string",
                                            },
                                            ignoreDifferences: [{
                                                group: "string",
                                                jqPathExpressions: ["string"],
                                                jsonPointers: ["string"],
                                                kind: "string",
                                                managedFieldsManagers: ["string"],
                                                name: "string",
                                                namespace: "string",
                                            }],
                                            infos: [{
                                                name: "string",
                                                value: "string",
                                            }],
                                            project: "string",
                                            revisionHistoryLimit: 0,
                                            sources: [{
                                                chart: "string",
                                                directory: {
                                                    exclude: "string",
                                                    include: "string",
                                                    jsonnet: {
                                                        extVars: [{
                                                            code: false,
                                                            name: "string",
                                                            value: "string",
                                                        }],
                                                        libs: ["string"],
                                                        tlas: [{
                                                            code: false,
                                                            name: "string",
                                                            value: "string",
                                                        }],
                                                    },
                                                    recurse: false,
                                                },
                                                helm: {
                                                    fileParameters: [{
                                                        name: "string",
                                                        path: "string",
                                                    }],
                                                    ignoreMissingValueFiles: false,
                                                    parameters: [{
                                                        forceString: false,
                                                        name: "string",
                                                        value: "string",
                                                    }],
                                                    passCredentials: false,
                                                    releaseName: "string",
                                                    skipCrds: false,
                                                    valueFiles: ["string"],
                                                    values: "string",
                                                    version: "string",
                                                },
                                                kustomize: {
                                                    commonAnnotations: {
                                                        string: "string",
                                                    },
                                                    commonLabels: {
                                                        string: "string",
                                                    },
                                                    images: ["string"],
                                                    namePrefix: "string",
                                                    nameSuffix: "string",
                                                    patches: [{
                                                        target: {
                                                            annotationSelector: "string",
                                                            group: "string",
                                                            kind: "string",
                                                            labelSelector: "string",
                                                            name: "string",
                                                            namespace: "string",
                                                            version: "string",
                                                        },
                                                        options: {
                                                            string: false,
                                                        },
                                                        patch: "string",
                                                        path: "string",
                                                    }],
                                                    version: "string",
                                                },
                                                path: "string",
                                                plugin: {
                                                    envs: [{
                                                        name: "string",
                                                        value: "string",
                                                    }],
                                                    name: "string",
                                                },
                                                ref: "string",
                                                repoUrl: "string",
                                                targetRevision: "string",
                                            }],
                                            syncPolicy: {
                                                automated: {
                                                    allowEmpty: false,
                                                    prune: false,
                                                    selfHeal: false,
                                                },
                                                managedNamespaceMetadata: {
                                                    annotations: {
                                                        string: "string",
                                                    },
                                                    labels: {
                                                        string: "string",
                                                    },
                                                },
                                                retry: {
                                                    backoff: {
                                                        duration: "string",
                                                        factor: "string",
                                                        maxDuration: "string",
                                                    },
                                                    limit: "string",
                                                },
                                                syncOptions: ["string"],
                                            },
                                        },
                                    },
                                    values: {
                                        string: "string",
                                    },
                                }],
                                clusters: [{
                                    enabled: false,
                                    selector: {
                                        matchExpressions: [{
                                            key: "string",
                                            operator: "string",
                                            values: ["string"],
                                        }],
                                        matchLabels: {
                                            string: "string",
                                        },
                                    },
                                    template: {
                                        metadata: {
                                            annotations: {
                                                string: "string",
                                            },
                                            finalizers: ["string"],
                                            labels: {
                                                string: "string",
                                            },
                                            name: "string",
                                            namespace: "string",
                                        },
                                        spec: {
                                            destination: {
                                                name: "string",
                                                namespace: "string",
                                                server: "string",
                                            },
                                            ignoreDifferences: [{
                                                group: "string",
                                                jqPathExpressions: ["string"],
                                                jsonPointers: ["string"],
                                                kind: "string",
                                                managedFieldsManagers: ["string"],
                                                name: "string",
                                                namespace: "string",
                                            }],
                                            infos: [{
                                                name: "string",
                                                value: "string",
                                            }],
                                            project: "string",
                                            revisionHistoryLimit: 0,
                                            sources: [{
                                                chart: "string",
                                                directory: {
                                                    exclude: "string",
                                                    include: "string",
                                                    jsonnet: {
                                                        extVars: [{
                                                            code: false,
                                                            name: "string",
                                                            value: "string",
                                                        }],
                                                        libs: ["string"],
                                                        tlas: [{
                                                            code: false,
                                                            name: "string",
                                                            value: "string",
                                                        }],
                                                    },
                                                    recurse: false,
                                                },
                                                helm: {
                                                    fileParameters: [{
                                                        name: "string",
                                                        path: "string",
                                                    }],
                                                    ignoreMissingValueFiles: false,
                                                    parameters: [{
                                                        forceString: false,
                                                        name: "string",
                                                        value: "string",
                                                    }],
                                                    passCredentials: false,
                                                    releaseName: "string",
                                                    skipCrds: false,
                                                    valueFiles: ["string"],
                                                    values: "string",
                                                    version: "string",
                                                },
                                                kustomize: {
                                                    commonAnnotations: {
                                                        string: "string",
                                                    },
                                                    commonLabels: {
                                                        string: "string",
                                                    },
                                                    images: ["string"],
                                                    namePrefix: "string",
                                                    nameSuffix: "string",
                                                    patches: [{
                                                        target: {
                                                            annotationSelector: "string",
                                                            group: "string",
                                                            kind: "string",
                                                            labelSelector: "string",
                                                            name: "string",
                                                            namespace: "string",
                                                            version: "string",
                                                        },
                                                        options: {
                                                            string: false,
                                                        },
                                                        patch: "string",
                                                        path: "string",
                                                    }],
                                                    version: "string",
                                                },
                                                path: "string",
                                                plugin: {
                                                    envs: [{
                                                        name: "string",
                                                        value: "string",
                                                    }],
                                                    name: "string",
                                                },
                                                ref: "string",
                                                repoUrl: "string",
                                                targetRevision: "string",
                                            }],
                                            syncPolicy: {
                                                automated: {
                                                    allowEmpty: false,
                                                    prune: false,
                                                    selfHeal: false,
                                                },
                                                managedNamespaceMetadata: {
                                                    annotations: {
                                                        string: "string",
                                                    },
                                                    labels: {
                                                        string: "string",
                                                    },
                                                },
                                                retry: {
                                                    backoff: {
                                                        duration: "string",
                                                        factor: "string",
                                                        maxDuration: "string",
                                                    },
                                                    limit: "string",
                                                },
                                                syncOptions: ["string"],
                                            },
                                        },
                                    },
                                    values: {
                                        string: "string",
                                    },
                                }],
                                gits: [{
                                    repoUrl: "string",
                                    directories: [{
                                        path: "string",
                                        exclude: false,
                                    }],
                                    files: [{
                                        path: "string",
                                    }],
                                    pathParamPrefix: "string",
                                    revision: "string",
                                    template: {
                                        metadata: {
                                            annotations: {
                                                string: "string",
                                            },
                                            finalizers: ["string"],
                                            labels: {
                                                string: "string",
                                            },
                                            name: "string",
                                            namespace: "string",
                                        },
                                        spec: {
                                            destination: {
                                                name: "string",
                                                namespace: "string",
                                                server: "string",
                                            },
                                            ignoreDifferences: [{
                                                group: "string",
                                                jqPathExpressions: ["string"],
                                                jsonPointers: ["string"],
                                                kind: "string",
                                                managedFieldsManagers: ["string"],
                                                name: "string",
                                                namespace: "string",
                                            }],
                                            infos: [{
                                                name: "string",
                                                value: "string",
                                            }],
                                            project: "string",
                                            revisionHistoryLimit: 0,
                                            sources: [{
                                                chart: "string",
                                                directory: {
                                                    exclude: "string",
                                                    include: "string",
                                                    jsonnet: {
                                                        extVars: [{
                                                            code: false,
                                                            name: "string",
                                                            value: "string",
                                                        }],
                                                        libs: ["string"],
                                                        tlas: [{
                                                            code: false,
                                                            name: "string",
                                                            value: "string",
                                                        }],
                                                    },
                                                    recurse: false,
                                                },
                                                helm: {
                                                    fileParameters: [{
                                                        name: "string",
                                                        path: "string",
                                                    }],
                                                    ignoreMissingValueFiles: false,
                                                    parameters: [{
                                                        forceString: false,
                                                        name: "string",
                                                        value: "string",
                                                    }],
                                                    passCredentials: false,
                                                    releaseName: "string",
                                                    skipCrds: false,
                                                    valueFiles: ["string"],
                                                    values: "string",
                                                    version: "string",
                                                },
                                                kustomize: {
                                                    commonAnnotations: {
                                                        string: "string",
                                                    },
                                                    commonLabels: {
                                                        string: "string",
                                                    },
                                                    images: ["string"],
                                                    namePrefix: "string",
                                                    nameSuffix: "string",
                                                    patches: [{
                                                        target: {
                                                            annotationSelector: "string",
                                                            group: "string",
                                                            kind: "string",
                                                            labelSelector: "string",
                                                            name: "string",
                                                            namespace: "string",
                                                            version: "string",
                                                        },
                                                        options: {
                                                            string: false,
                                                        },
                                                        patch: "string",
                                                        path: "string",
                                                    }],
                                                    version: "string",
                                                },
                                                path: "string",
                                                plugin: {
                                                    envs: [{
                                                        name: "string",
                                                        value: "string",
                                                    }],
                                                    name: "string",
                                                },
                                                ref: "string",
                                                repoUrl: "string",
                                                targetRevision: "string",
                                            }],
                                            syncPolicy: {
                                                automated: {
                                                    allowEmpty: false,
                                                    prune: false,
                                                    selfHeal: false,
                                                },
                                                managedNamespaceMetadata: {
                                                    annotations: {
                                                        string: "string",
                                                    },
                                                    labels: {
                                                        string: "string",
                                                    },
                                                },
                                                retry: {
                                                    backoff: {
                                                        duration: "string",
                                                        factor: "string",
                                                        maxDuration: "string",
                                                    },
                                                    limit: "string",
                                                },
                                                syncOptions: ["string"],
                                            },
                                        },
                                    },
                                    values: {
                                        string: "string",
                                    },
                                }],
                                lists: [{
                                    elements: [{
                                        string: "string",
                                    }],
                                    template: {
                                        metadata: {
                                            annotations: {
                                                string: "string",
                                            },
                                            finalizers: ["string"],
                                            labels: {
                                                string: "string",
                                            },
                                            name: "string",
                                            namespace: "string",
                                        },
                                        spec: {
                                            destination: {
                                                name: "string",
                                                namespace: "string",
                                                server: "string",
                                            },
                                            ignoreDifferences: [{
                                                group: "string",
                                                jqPathExpressions: ["string"],
                                                jsonPointers: ["string"],
                                                kind: "string",
                                                managedFieldsManagers: ["string"],
                                                name: "string",
                                                namespace: "string",
                                            }],
                                            infos: [{
                                                name: "string",
                                                value: "string",
                                            }],
                                            project: "string",
                                            revisionHistoryLimit: 0,
                                            sources: [{
                                                chart: "string",
                                                directory: {
                                                    exclude: "string",
                                                    include: "string",
                                                    jsonnet: {
                                                        extVars: [{
                                                            code: false,
                                                            name: "string",
                                                            value: "string",
                                                        }],
                                                        libs: ["string"],
                                                        tlas: [{
                                                            code: false,
                                                            name: "string",
                                                            value: "string",
                                                        }],
                                                    },
                                                    recurse: false,
                                                },
                                                helm: {
                                                    fileParameters: [{
                                                        name: "string",
                                                        path: "string",
                                                    }],
                                                    ignoreMissingValueFiles: false,
                                                    parameters: [{
                                                        forceString: false,
                                                        name: "string",
                                                        value: "string",
                                                    }],
                                                    passCredentials: false,
                                                    releaseName: "string",
                                                    skipCrds: false,
                                                    valueFiles: ["string"],
                                                    values: "string",
                                                    version: "string",
                                                },
                                                kustomize: {
                                                    commonAnnotations: {
                                                        string: "string",
                                                    },
                                                    commonLabels: {
                                                        string: "string",
                                                    },
                                                    images: ["string"],
                                                    namePrefix: "string",
                                                    nameSuffix: "string",
                                                    patches: [{
                                                        target: {
                                                            annotationSelector: "string",
                                                            group: "string",
                                                            kind: "string",
                                                            labelSelector: "string",
                                                            name: "string",
                                                            namespace: "string",
                                                            version: "string",
                                                        },
                                                        options: {
                                                            string: false,
                                                        },
                                                        patch: "string",
                                                        path: "string",
                                                    }],
                                                    version: "string",
                                                },
                                                path: "string",
                                                plugin: {
                                                    envs: [{
                                                        name: "string",
                                                        value: "string",
                                                    }],
                                                    name: "string",
                                                },
                                                ref: "string",
                                                repoUrl: "string",
                                                targetRevision: "string",
                                            }],
                                            syncPolicy: {
                                                automated: {
                                                    allowEmpty: false,
                                                    prune: false,
                                                    selfHeal: false,
                                                },
                                                managedNamespaceMetadata: {
                                                    annotations: {
                                                        string: "string",
                                                    },
                                                    labels: {
                                                        string: "string",
                                                    },
                                                },
                                                retry: {
                                                    backoff: {
                                                        duration: "string",
                                                        factor: "string",
                                                        maxDuration: "string",
                                                    },
                                                    limit: "string",
                                                },
                                                syncOptions: ["string"],
                                            },
                                        },
                                    },
                                }],
                                pullRequests: [{
                                    bitbucketServer: {
                                        api: "string",
                                        project: "string",
                                        repo: "string",
                                        basicAuth: {
                                            passwordRef: {
                                                key: "string",
                                                secretName: "string",
                                            },
                                            username: "string",
                                        },
                                    },
                                    filters: [{
                                        branchMatch: "string",
                                    }],
                                    gitea: {
                                        api: "string",
                                        owner: "string",
                                        repo: "string",
                                        insecure: false,
                                        tokenRef: {
                                            key: "string",
                                            secretName: "string",
                                        },
                                    },
                                    github: {
                                        owner: "string",
                                        repo: "string",
                                        api: "string",
                                        appSecretName: "string",
                                        labels: ["string"],
                                        tokenRef: {
                                            key: "string",
                                            secretName: "string",
                                        },
                                    },
                                    gitlab: {
                                        project: "string",
                                        api: "string",
                                        labels: ["string"],
                                        pullRequestState: "string",
                                        tokenRef: {
                                            key: "string",
                                            secretName: "string",
                                        },
                                    },
                                    requeueAfterSeconds: "string",
                                    template: {
                                        metadata: {
                                            annotations: {
                                                string: "string",
                                            },
                                            finalizers: ["string"],
                                            labels: {
                                                string: "string",
                                            },
                                            name: "string",
                                            namespace: "string",
                                        },
                                        spec: {
                                            destination: {
                                                name: "string",
                                                namespace: "string",
                                                server: "string",
                                            },
                                            ignoreDifferences: [{
                                                group: "string",
                                                jqPathExpressions: ["string"],
                                                jsonPointers: ["string"],
                                                kind: "string",
                                                managedFieldsManagers: ["string"],
                                                name: "string",
                                                namespace: "string",
                                            }],
                                            infos: [{
                                                name: "string",
                                                value: "string",
                                            }],
                                            project: "string",
                                            revisionHistoryLimit: 0,
                                            sources: [{
                                                chart: "string",
                                                directory: {
                                                    exclude: "string",
                                                    include: "string",
                                                    jsonnet: {
                                                        extVars: [{
                                                            code: false,
                                                            name: "string",
                                                            value: "string",
                                                        }],
                                                        libs: ["string"],
                                                        tlas: [{
                                                            code: false,
                                                            name: "string",
                                                            value: "string",
                                                        }],
                                                    },
                                                    recurse: false,
                                                },
                                                helm: {
                                                    fileParameters: [{
                                                        name: "string",
                                                        path: "string",
                                                    }],
                                                    ignoreMissingValueFiles: false,
                                                    parameters: [{
                                                        forceString: false,
                                                        name: "string",
                                                        value: "string",
                                                    }],
                                                    passCredentials: false,
                                                    releaseName: "string",
                                                    skipCrds: false,
                                                    valueFiles: ["string"],
                                                    values: "string",
                                                    version: "string",
                                                },
                                                kustomize: {
                                                    commonAnnotations: {
                                                        string: "string",
                                                    },
                                                    commonLabels: {
                                                        string: "string",
                                                    },
                                                    images: ["string"],
                                                    namePrefix: "string",
                                                    nameSuffix: "string",
                                                    patches: [{
                                                        target: {
                                                            annotationSelector: "string",
                                                            group: "string",
                                                            kind: "string",
                                                            labelSelector: "string",
                                                            name: "string",
                                                            namespace: "string",
                                                            version: "string",
                                                        },
                                                        options: {
                                                            string: false,
                                                        },
                                                        patch: "string",
                                                        path: "string",
                                                    }],
                                                    version: "string",
                                                },
                                                path: "string",
                                                plugin: {
                                                    envs: [{
                                                        name: "string",
                                                        value: "string",
                                                    }],
                                                    name: "string",
                                                },
                                                ref: "string",
                                                repoUrl: "string",
                                                targetRevision: "string",
                                            }],
                                            syncPolicy: {
                                                automated: {
                                                    allowEmpty: false,
                                                    prune: false,
                                                    selfHeal: false,
                                                },
                                                managedNamespaceMetadata: {
                                                    annotations: {
                                                        string: "string",
                                                    },
                                                    labels: {
                                                        string: "string",
                                                    },
                                                },
                                                retry: {
                                                    backoff: {
                                                        duration: "string",
                                                        factor: "string",
                                                        maxDuration: "string",
                                                    },
                                                    limit: "string",
                                                },
                                                syncOptions: ["string"],
                                            },
                                        },
                                    },
                                }],
                                scmProviders: [{
                                    azureDevops: {
                                        organization: "string",
                                        teamProject: "string",
                                        accessTokenRef: {
                                            key: "string",
                                            secretName: "string",
                                        },
                                        allBranches: false,
                                        api: "string",
                                    },
                                    bitbucketCloud: {
                                        owner: "string",
                                        user: "string",
                                        allBranches: false,
                                        appPasswordRef: {
                                            key: "string",
                                            secretName: "string",
                                        },
                                    },
                                    bitbucketServer: {
                                        api: "string",
                                        project: "string",
                                        allBranches: false,
                                        basicAuth: {
                                            passwordRef: {
                                                key: "string",
                                                secretName: "string",
                                            },
                                            username: "string",
                                        },
                                    },
                                    cloneProtocol: "string",
                                    filters: [{
                                        branchMatch: "string",
                                        labelMatch: "string",
                                        pathsDoNotExists: ["string"],
                                        pathsExists: ["string"],
                                        repositoryMatch: "string",
                                    }],
                                    gitea: {
                                        owner: "string",
                                        allBranches: false,
                                        api: "string",
                                        insecure: false,
                                        tokenRef: {
                                            key: "string",
                                            secretName: "string",
                                        },
                                    },
                                    github: {
                                        organization: "string",
                                        allBranches: false,
                                        api: "string",
                                        appSecretName: "string",
                                        tokenRef: {
                                            key: "string",
                                            secretName: "string",
                                        },
                                    },
                                    gitlab: {
                                        group: "string",
                                        allBranches: false,
                                        api: "string",
                                        includeSubgroups: false,
                                        tokenRef: {
                                            key: "string",
                                            secretName: "string",
                                        },
                                    },
                                    requeueAfterSeconds: "string",
                                    template: {
                                        metadata: {
                                            annotations: {
                                                string: "string",
                                            },
                                            finalizers: ["string"],
                                            labels: {
                                                string: "string",
                                            },
                                            name: "string",
                                            namespace: "string",
                                        },
                                        spec: {
                                            destination: {
                                                name: "string",
                                                namespace: "string",
                                                server: "string",
                                            },
                                            ignoreDifferences: [{
                                                group: "string",
                                                jqPathExpressions: ["string"],
                                                jsonPointers: ["string"],
                                                kind: "string",
                                                managedFieldsManagers: ["string"],
                                                name: "string",
                                                namespace: "string",
                                            }],
                                            infos: [{
                                                name: "string",
                                                value: "string",
                                            }],
                                            project: "string",
                                            revisionHistoryLimit: 0,
                                            sources: [{
                                                chart: "string",
                                                directory: {
                                                    exclude: "string",
                                                    include: "string",
                                                    jsonnet: {
                                                        extVars: [{
                                                            code: false,
                                                            name: "string",
                                                            value: "string",
                                                        }],
                                                        libs: ["string"],
                                                        tlas: [{
                                                            code: false,
                                                            name: "string",
                                                            value: "string",
                                                        }],
                                                    },
                                                    recurse: false,
                                                },
                                                helm: {
                                                    fileParameters: [{
                                                        name: "string",
                                                        path: "string",
                                                    }],
                                                    ignoreMissingValueFiles: false,
                                                    parameters: [{
                                                        forceString: false,
                                                        name: "string",
                                                        value: "string",
                                                    }],
                                                    passCredentials: false,
                                                    releaseName: "string",
                                                    skipCrds: false,
                                                    valueFiles: ["string"],
                                                    values: "string",
                                                    version: "string",
                                                },
                                                kustomize: {
                                                    commonAnnotations: {
                                                        string: "string",
                                                    },
                                                    commonLabels: {
                                                        string: "string",
                                                    },
                                                    images: ["string"],
                                                    namePrefix: "string",
                                                    nameSuffix: "string",
                                                    patches: [{
                                                        target: {
                                                            annotationSelector: "string",
                                                            group: "string",
                                                            kind: "string",
                                                            labelSelector: "string",
                                                            name: "string",
                                                            namespace: "string",
                                                            version: "string",
                                                        },
                                                        options: {
                                                            string: false,
                                                        },
                                                        patch: "string",
                                                        path: "string",
                                                    }],
                                                    version: "string",
                                                },
                                                path: "string",
                                                plugin: {
                                                    envs: [{
                                                        name: "string",
                                                        value: "string",
                                                    }],
                                                    name: "string",
                                                },
                                                ref: "string",
                                                repoUrl: "string",
                                                targetRevision: "string",
                                            }],
                                            syncPolicy: {
                                                automated: {
                                                    allowEmpty: false,
                                                    prune: false,
                                                    selfHeal: false,
                                                },
                                                managedNamespaceMetadata: {
                                                    annotations: {
                                                        string: "string",
                                                    },
                                                    labels: {
                                                        string: "string",
                                                    },
                                                },
                                                retry: {
                                                    backoff: {
                                                        duration: "string",
                                                        factor: "string",
                                                        maxDuration: "string",
                                                    },
                                                    limit: "string",
                                                },
                                                syncOptions: ["string"],
                                            },
                                        },
                                    },
                                }],
                                selector: {
                                    matchExpressions: [{
                                        key: "string",
                                        operator: "string",
                                        values: ["string"],
                                    }],
                                    matchLabels: {
                                        string: "string",
                                    },
                                },
                            }],
                            template: {
                                metadata: {
                                    annotations: {
                                        string: "string",
                                    },
                                    finalizers: ["string"],
                                    labels: {
                                        string: "string",
                                    },
                                    name: "string",
                                    namespace: "string",
                                },
                                spec: {
                                    destination: {
                                        name: "string",
                                        namespace: "string",
                                        server: "string",
                                    },
                                    ignoreDifferences: [{
                                        group: "string",
                                        jqPathExpressions: ["string"],
                                        jsonPointers: ["string"],
                                        kind: "string",
                                        managedFieldsManagers: ["string"],
                                        name: "string",
                                        namespace: "string",
                                    }],
                                    infos: [{
                                        name: "string",
                                        value: "string",
                                    }],
                                    project: "string",
                                    revisionHistoryLimit: 0,
                                    sources: [{
                                        chart: "string",
                                        directory: {
                                            exclude: "string",
                                            include: "string",
                                            jsonnet: {
                                                extVars: [{
                                                    code: false,
                                                    name: "string",
                                                    value: "string",
                                                }],
                                                libs: ["string"],
                                                tlas: [{
                                                    code: false,
                                                    name: "string",
                                                    value: "string",
                                                }],
                                            },
                                            recurse: false,
                                        },
                                        helm: {
                                            fileParameters: [{
                                                name: "string",
                                                path: "string",
                                            }],
                                            ignoreMissingValueFiles: false,
                                            parameters: [{
                                                forceString: false,
                                                name: "string",
                                                value: "string",
                                            }],
                                            passCredentials: false,
                                            releaseName: "string",
                                            skipCrds: false,
                                            valueFiles: ["string"],
                                            values: "string",
                                            version: "string",
                                        },
                                        kustomize: {
                                            commonAnnotations: {
                                                string: "string",
                                            },
                                            commonLabels: {
                                                string: "string",
                                            },
                                            images: ["string"],
                                            namePrefix: "string",
                                            nameSuffix: "string",
                                            patches: [{
                                                target: {
                                                    annotationSelector: "string",
                                                    group: "string",
                                                    kind: "string",
                                                    labelSelector: "string",
                                                    name: "string",
                                                    namespace: "string",
                                                    version: "string",
                                                },
                                                options: {
                                                    string: false,
                                                },
                                                patch: "string",
                                                path: "string",
                                            }],
                                            version: "string",
                                        },
                                        path: "string",
                                        plugin: {
                                            envs: [{
                                                name: "string",
                                                value: "string",
                                            }],
                                            name: "string",
                                        },
                                        ref: "string",
                                        repoUrl: "string",
                                        targetRevision: "string",
                                    }],
                                    syncPolicy: {
                                        automated: {
                                            allowEmpty: false,
                                            prune: false,
                                            selfHeal: false,
                                        },
                                        managedNamespaceMetadata: {
                                            annotations: {
                                                string: "string",
                                            },
                                            labels: {
                                                string: "string",
                                            },
                                        },
                                        retry: {
                                            backoff: {
                                                duration: "string",
                                                factor: "string",
                                                maxDuration: "string",
                                            },
                                            limit: "string",
                                        },
                                        syncOptions: ["string"],
                                    },
                                },
                            },
                        }],
                        merges: [{
                            generators: [{
                                clusterDecisionResources: [{
                                    configMapRef: "string",
                                    labelSelector: {
                                        matchExpressions: [{
                                            key: "string",
                                            operator: "string",
                                            values: ["string"],
                                        }],
                                        matchLabels: {
                                            string: "string",
                                        },
                                    },
                                    name: "string",
                                    requeueAfterSeconds: "string",
                                    template: {
                                        metadata: {
                                            annotations: {
                                                string: "string",
                                            },
                                            finalizers: ["string"],
                                            labels: {
                                                string: "string",
                                            },
                                            name: "string",
                                            namespace: "string",
                                        },
                                        spec: {
                                            destination: {
                                                name: "string",
                                                namespace: "string",
                                                server: "string",
                                            },
                                            ignoreDifferences: [{
                                                group: "string",
                                                jqPathExpressions: ["string"],
                                                jsonPointers: ["string"],
                                                kind: "string",
                                                managedFieldsManagers: ["string"],
                                                name: "string",
                                                namespace: "string",
                                            }],
                                            infos: [{
                                                name: "string",
                                                value: "string",
                                            }],
                                            project: "string",
                                            revisionHistoryLimit: 0,
                                            sources: [{
                                                chart: "string",
                                                directory: {
                                                    exclude: "string",
                                                    include: "string",
                                                    jsonnet: {
                                                        extVars: [{
                                                            code: false,
                                                            name: "string",
                                                            value: "string",
                                                        }],
                                                        libs: ["string"],
                                                        tlas: [{
                                                            code: false,
                                                            name: "string",
                                                            value: "string",
                                                        }],
                                                    },
                                                    recurse: false,
                                                },
                                                helm: {
                                                    fileParameters: [{
                                                        name: "string",
                                                        path: "string",
                                                    }],
                                                    ignoreMissingValueFiles: false,
                                                    parameters: [{
                                                        forceString: false,
                                                        name: "string",
                                                        value: "string",
                                                    }],
                                                    passCredentials: false,
                                                    releaseName: "string",
                                                    skipCrds: false,
                                                    valueFiles: ["string"],
                                                    values: "string",
                                                    version: "string",
                                                },
                                                kustomize: {
                                                    commonAnnotations: {
                                                        string: "string",
                                                    },
                                                    commonLabels: {
                                                        string: "string",
                                                    },
                                                    images: ["string"],
                                                    namePrefix: "string",
                                                    nameSuffix: "string",
                                                    patches: [{
                                                        target: {
                                                            annotationSelector: "string",
                                                            group: "string",
                                                            kind: "string",
                                                            labelSelector: "string",
                                                            name: "string",
                                                            namespace: "string",
                                                            version: "string",
                                                        },
                                                        options: {
                                                            string: false,
                                                        },
                                                        patch: "string",
                                                        path: "string",
                                                    }],
                                                    version: "string",
                                                },
                                                path: "string",
                                                plugin: {
                                                    envs: [{
                                                        name: "string",
                                                        value: "string",
                                                    }],
                                                    name: "string",
                                                },
                                                ref: "string",
                                                repoUrl: "string",
                                                targetRevision: "string",
                                            }],
                                            syncPolicy: {
                                                automated: {
                                                    allowEmpty: false,
                                                    prune: false,
                                                    selfHeal: false,
                                                },
                                                managedNamespaceMetadata: {
                                                    annotations: {
                                                        string: "string",
                                                    },
                                                    labels: {
                                                        string: "string",
                                                    },
                                                },
                                                retry: {
                                                    backoff: {
                                                        duration: "string",
                                                        factor: "string",
                                                        maxDuration: "string",
                                                    },
                                                    limit: "string",
                                                },
                                                syncOptions: ["string"],
                                            },
                                        },
                                    },
                                    values: {
                                        string: "string",
                                    },
                                }],
                                clusters: [{
                                    enabled: false,
                                    selector: {
                                        matchExpressions: [{
                                            key: "string",
                                            operator: "string",
                                            values: ["string"],
                                        }],
                                        matchLabels: {
                                            string: "string",
                                        },
                                    },
                                    template: {
                                        metadata: {
                                            annotations: {
                                                string: "string",
                                            },
                                            finalizers: ["string"],
                                            labels: {
                                                string: "string",
                                            },
                                            name: "string",
                                            namespace: "string",
                                        },
                                        spec: {
                                            destination: {
                                                name: "string",
                                                namespace: "string",
                                                server: "string",
                                            },
                                            ignoreDifferences: [{
                                                group: "string",
                                                jqPathExpressions: ["string"],
                                                jsonPointers: ["string"],
                                                kind: "string",
                                                managedFieldsManagers: ["string"],
                                                name: "string",
                                                namespace: "string",
                                            }],
                                            infos: [{
                                                name: "string",
                                                value: "string",
                                            }],
                                            project: "string",
                                            revisionHistoryLimit: 0,
                                            sources: [{
                                                chart: "string",
                                                directory: {
                                                    exclude: "string",
                                                    include: "string",
                                                    jsonnet: {
                                                        extVars: [{
                                                            code: false,
                                                            name: "string",
                                                            value: "string",
                                                        }],
                                                        libs: ["string"],
                                                        tlas: [{
                                                            code: false,
                                                            name: "string",
                                                            value: "string",
                                                        }],
                                                    },
                                                    recurse: false,
                                                },
                                                helm: {
                                                    fileParameters: [{
                                                        name: "string",
                                                        path: "string",
                                                    }],
                                                    ignoreMissingValueFiles: false,
                                                    parameters: [{
                                                        forceString: false,
                                                        name: "string",
                                                        value: "string",
                                                    }],
                                                    passCredentials: false,
                                                    releaseName: "string",
                                                    skipCrds: false,
                                                    valueFiles: ["string"],
                                                    values: "string",
                                                    version: "string",
                                                },
                                                kustomize: {
                                                    commonAnnotations: {
                                                        string: "string",
                                                    },
                                                    commonLabels: {
                                                        string: "string",
                                                    },
                                                    images: ["string"],
                                                    namePrefix: "string",
                                                    nameSuffix: "string",
                                                    patches: [{
                                                        target: {
                                                            annotationSelector: "string",
                                                            group: "string",
                                                            kind: "string",
                                                            labelSelector: "string",
                                                            name: "string",
                                                            namespace: "string",
                                                            version: "string",
                                                        },
                                                        options: {
                                                            string: false,
                                                        },
                                                        patch: "string",
                                                        path: "string",
                                                    }],
                                                    version: "string",
                                                },
                                                path: "string",
                                                plugin: {
                                                    envs: [{
                                                        name: "string",
                                                        value: "string",
                                                    }],
                                                    name: "string",
                                                },
                                                ref: "string",
                                                repoUrl: "string",
                                                targetRevision: "string",
                                            }],
                                            syncPolicy: {
                                                automated: {
                                                    allowEmpty: false,
                                                    prune: false,
                                                    selfHeal: false,
                                                },
                                                managedNamespaceMetadata: {
                                                    annotations: {
                                                        string: "string",
                                                    },
                                                    labels: {
                                                        string: "string",
                                                    },
                                                },
                                                retry: {
                                                    backoff: {
                                                        duration: "string",
                                                        factor: "string",
                                                        maxDuration: "string",
                                                    },
                                                    limit: "string",
                                                },
                                                syncOptions: ["string"],
                                            },
                                        },
                                    },
                                    values: {
                                        string: "string",
                                    },
                                }],
                                gits: [{
                                    repoUrl: "string",
                                    directories: [{
                                        path: "string",
                                        exclude: false,
                                    }],
                                    files: [{
                                        path: "string",
                                    }],
                                    pathParamPrefix: "string",
                                    revision: "string",
                                    template: {
                                        metadata: {
                                            annotations: {
                                                string: "string",
                                            },
                                            finalizers: ["string"],
                                            labels: {
                                                string: "string",
                                            },
                                            name: "string",
                                            namespace: "string",
                                        },
                                        spec: {
                                            destination: {
                                                name: "string",
                                                namespace: "string",
                                                server: "string",
                                            },
                                            ignoreDifferences: [{
                                                group: "string",
                                                jqPathExpressions: ["string"],
                                                jsonPointers: ["string"],
                                                kind: "string",
                                                managedFieldsManagers: ["string"],
                                                name: "string",
                                                namespace: "string",
                                            }],
                                            infos: [{
                                                name: "string",
                                                value: "string",
                                            }],
                                            project: "string",
                                            revisionHistoryLimit: 0,
                                            sources: [{
                                                chart: "string",
                                                directory: {
                                                    exclude: "string",
                                                    include: "string",
                                                    jsonnet: {
                                                        extVars: [{
                                                            code: false,
                                                            name: "string",
                                                            value: "string",
                                                        }],
                                                        libs: ["string"],
                                                        tlas: [{
                                                            code: false,
                                                            name: "string",
                                                            value: "string",
                                                        }],
                                                    },
                                                    recurse: false,
                                                },
                                                helm: {
                                                    fileParameters: [{
                                                        name: "string",
                                                        path: "string",
                                                    }],
                                                    ignoreMissingValueFiles: false,
                                                    parameters: [{
                                                        forceString: false,
                                                        name: "string",
                                                        value: "string",
                                                    }],
                                                    passCredentials: false,
                                                    releaseName: "string",
                                                    skipCrds: false,
                                                    valueFiles: ["string"],
                                                    values: "string",
                                                    version: "string",
                                                },
                                                kustomize: {
                                                    commonAnnotations: {
                                                        string: "string",
                                                    },
                                                    commonLabels: {
                                                        string: "string",
                                                    },
                                                    images: ["string"],
                                                    namePrefix: "string",
                                                    nameSuffix: "string",
                                                    patches: [{
                                                        target: {
                                                            annotationSelector: "string",
                                                            group: "string",
                                                            kind: "string",
                                                            labelSelector: "string",
                                                            name: "string",
                                                            namespace: "string",
                                                            version: "string",
                                                        },
                                                        options: {
                                                            string: false,
                                                        },
                                                        patch: "string",
                                                        path: "string",
                                                    }],
                                                    version: "string",
                                                },
                                                path: "string",
                                                plugin: {
                                                    envs: [{
                                                        name: "string",
                                                        value: "string",
                                                    }],
                                                    name: "string",
                                                },
                                                ref: "string",
                                                repoUrl: "string",
                                                targetRevision: "string",
                                            }],
                                            syncPolicy: {
                                                automated: {
                                                    allowEmpty: false,
                                                    prune: false,
                                                    selfHeal: false,
                                                },
                                                managedNamespaceMetadata: {
                                                    annotations: {
                                                        string: "string",
                                                    },
                                                    labels: {
                                                        string: "string",
                                                    },
                                                },
                                                retry: {
                                                    backoff: {
                                                        duration: "string",
                                                        factor: "string",
                                                        maxDuration: "string",
                                                    },
                                                    limit: "string",
                                                },
                                                syncOptions: ["string"],
                                            },
                                        },
                                    },
                                    values: {
                                        string: "string",
                                    },
                                }],
                                lists: [{
                                    elements: [{
                                        string: "string",
                                    }],
                                    template: {
                                        metadata: {
                                            annotations: {
                                                string: "string",
                                            },
                                            finalizers: ["string"],
                                            labels: {
                                                string: "string",
                                            },
                                            name: "string",
                                            namespace: "string",
                                        },
                                        spec: {
                                            destination: {
                                                name: "string",
                                                namespace: "string",
                                                server: "string",
                                            },
                                            ignoreDifferences: [{
                                                group: "string",
                                                jqPathExpressions: ["string"],
                                                jsonPointers: ["string"],
                                                kind: "string",
                                                managedFieldsManagers: ["string"],
                                                name: "string",
                                                namespace: "string",
                                            }],
                                            infos: [{
                                                name: "string",
                                                value: "string",
                                            }],
                                            project: "string",
                                            revisionHistoryLimit: 0,
                                            sources: [{
                                                chart: "string",
                                                directory: {
                                                    exclude: "string",
                                                    include: "string",
                                                    jsonnet: {
                                                        extVars: [{
                                                            code: false,
                                                            name: "string",
                                                            value: "string",
                                                        }],
                                                        libs: ["string"],
                                                        tlas: [{
                                                            code: false,
                                                            name: "string",
                                                            value: "string",
                                                        }],
                                                    },
                                                    recurse: false,
                                                },
                                                helm: {
                                                    fileParameters: [{
                                                        name: "string",
                                                        path: "string",
                                                    }],
                                                    ignoreMissingValueFiles: false,
                                                    parameters: [{
                                                        forceString: false,
                                                        name: "string",
                                                        value: "string",
                                                    }],
                                                    passCredentials: false,
                                                    releaseName: "string",
                                                    skipCrds: false,
                                                    valueFiles: ["string"],
                                                    values: "string",
                                                    version: "string",
                                                },
                                                kustomize: {
                                                    commonAnnotations: {
                                                        string: "string",
                                                    },
                                                    commonLabels: {
                                                        string: "string",
                                                    },
                                                    images: ["string"],
                                                    namePrefix: "string",
                                                    nameSuffix: "string",
                                                    patches: [{
                                                        target: {
                                                            annotationSelector: "string",
                                                            group: "string",
                                                            kind: "string",
                                                            labelSelector: "string",
                                                            name: "string",
                                                            namespace: "string",
                                                            version: "string",
                                                        },
                                                        options: {
                                                            string: false,
                                                        },
                                                        patch: "string",
                                                        path: "string",
                                                    }],
                                                    version: "string",
                                                },
                                                path: "string",
                                                plugin: {
                                                    envs: [{
                                                        name: "string",
                                                        value: "string",
                                                    }],
                                                    name: "string",
                                                },
                                                ref: "string",
                                                repoUrl: "string",
                                                targetRevision: "string",
                                            }],
                                            syncPolicy: {
                                                automated: {
                                                    allowEmpty: false,
                                                    prune: false,
                                                    selfHeal: false,
                                                },
                                                managedNamespaceMetadata: {
                                                    annotations: {
                                                        string: "string",
                                                    },
                                                    labels: {
                                                        string: "string",
                                                    },
                                                },
                                                retry: {
                                                    backoff: {
                                                        duration: "string",
                                                        factor: "string",
                                                        maxDuration: "string",
                                                    },
                                                    limit: "string",
                                                },
                                                syncOptions: ["string"],
                                            },
                                        },
                                    },
                                }],
                                pullRequests: [{
                                    bitbucketServer: {
                                        api: "string",
                                        project: "string",
                                        repo: "string",
                                        basicAuth: {
                                            passwordRef: {
                                                key: "string",
                                                secretName: "string",
                                            },
                                            username: "string",
                                        },
                                    },
                                    filters: [{
                                        branchMatch: "string",
                                    }],
                                    gitea: {
                                        api: "string",
                                        owner: "string",
                                        repo: "string",
                                        insecure: false,
                                        tokenRef: {
                                            key: "string",
                                            secretName: "string",
                                        },
                                    },
                                    github: {
                                        owner: "string",
                                        repo: "string",
                                        api: "string",
                                        appSecretName: "string",
                                        labels: ["string"],
                                        tokenRef: {
                                            key: "string",
                                            secretName: "string",
                                        },
                                    },
                                    gitlab: {
                                        project: "string",
                                        api: "string",
                                        labels: ["string"],
                                        pullRequestState: "string",
                                        tokenRef: {
                                            key: "string",
                                            secretName: "string",
                                        },
                                    },
                                    requeueAfterSeconds: "string",
                                    template: {
                                        metadata: {
                                            annotations: {
                                                string: "string",
                                            },
                                            finalizers: ["string"],
                                            labels: {
                                                string: "string",
                                            },
                                            name: "string",
                                            namespace: "string",
                                        },
                                        spec: {
                                            destination: {
                                                name: "string",
                                                namespace: "string",
                                                server: "string",
                                            },
                                            ignoreDifferences: [{
                                                group: "string",
                                                jqPathExpressions: ["string"],
                                                jsonPointers: ["string"],
                                                kind: "string",
                                                managedFieldsManagers: ["string"],
                                                name: "string",
                                                namespace: "string",
                                            }],
                                            infos: [{
                                                name: "string",
                                                value: "string",
                                            }],
                                            project: "string",
                                            revisionHistoryLimit: 0,
                                            sources: [{
                                                chart: "string",
                                                directory: {
                                                    exclude: "string",
                                                    include: "string",
                                                    jsonnet: {
                                                        extVars: [{
                                                            code: false,
                                                            name: "string",
                                                            value: "string",
                                                        }],
                                                        libs: ["string"],
                                                        tlas: [{
                                                            code: false,
                                                            name: "string",
                                                            value: "string",
                                                        }],
                                                    },
                                                    recurse: false,
                                                },
                                                helm: {
                                                    fileParameters: [{
                                                        name: "string",
                                                        path: "string",
                                                    }],
                                                    ignoreMissingValueFiles: false,
                                                    parameters: [{
                                                        forceString: false,
                                                        name: "string",
                                                        value: "string",
                                                    }],
                                                    passCredentials: false,
                                                    releaseName: "string",
                                                    skipCrds: false,
                                                    valueFiles: ["string"],
                                                    values: "string",
                                                    version: "string",
                                                },
                                                kustomize: {
                                                    commonAnnotations: {
                                                        string: "string",
                                                    },
                                                    commonLabels: {
                                                        string: "string",
                                                    },
                                                    images: ["string"],
                                                    namePrefix: "string",
                                                    nameSuffix: "string",
                                                    patches: [{
                                                        target: {
                                                            annotationSelector: "string",
                                                            group: "string",
                                                            kind: "string",
                                                            labelSelector: "string",
                                                            name: "string",
                                                            namespace: "string",
                                                            version: "string",
                                                        },
                                                        options: {
                                                            string: false,
                                                        },
                                                        patch: "string",
                                                        path: "string",
                                                    }],
                                                    version: "string",
                                                },
                                                path: "string",
                                                plugin: {
                                                    envs: [{
                                                        name: "string",
                                                        value: "string",
                                                    }],
                                                    name: "string",
                                                },
                                                ref: "string",
                                                repoUrl: "string",
                                                targetRevision: "string",
                                            }],
                                            syncPolicy: {
                                                automated: {
                                                    allowEmpty: false,
                                                    prune: false,
                                                    selfHeal: false,
                                                },
                                                managedNamespaceMetadata: {
                                                    annotations: {
                                                        string: "string",
                                                    },
                                                    labels: {
                                                        string: "string",
                                                    },
                                                },
                                                retry: {
                                                    backoff: {
                                                        duration: "string",
                                                        factor: "string",
                                                        maxDuration: "string",
                                                    },
                                                    limit: "string",
                                                },
                                                syncOptions: ["string"],
                                            },
                                        },
                                    },
                                }],
                                scmProviders: [{
                                    azureDevops: {
                                        organization: "string",
                                        teamProject: "string",
                                        accessTokenRef: {
                                            key: "string",
                                            secretName: "string",
                                        },
                                        allBranches: false,
                                        api: "string",
                                    },
                                    bitbucketCloud: {
                                        owner: "string",
                                        user: "string",
                                        allBranches: false,
                                        appPasswordRef: {
                                            key: "string",
                                            secretName: "string",
                                        },
                                    },
                                    bitbucketServer: {
                                        api: "string",
                                        project: "string",
                                        allBranches: false,
                                        basicAuth: {
                                            passwordRef: {
                                                key: "string",
                                                secretName: "string",
                                            },
                                            username: "string",
                                        },
                                    },
                                    cloneProtocol: "string",
                                    filters: [{
                                        branchMatch: "string",
                                        labelMatch: "string",
                                        pathsDoNotExists: ["string"],
                                        pathsExists: ["string"],
                                        repositoryMatch: "string",
                                    }],
                                    gitea: {
                                        owner: "string",
                                        allBranches: false,
                                        api: "string",
                                        insecure: false,
                                        tokenRef: {
                                            key: "string",
                                            secretName: "string",
                                        },
                                    },
                                    github: {
                                        organization: "string",
                                        allBranches: false,
                                        api: "string",
                                        appSecretName: "string",
                                        tokenRef: {
                                            key: "string",
                                            secretName: "string",
                                        },
                                    },
                                    gitlab: {
                                        group: "string",
                                        allBranches: false,
                                        api: "string",
                                        includeSubgroups: false,
                                        tokenRef: {
                                            key: "string",
                                            secretName: "string",
                                        },
                                    },
                                    requeueAfterSeconds: "string",
                                    template: {
                                        metadata: {
                                            annotations: {
                                                string: "string",
                                            },
                                            finalizers: ["string"],
                                            labels: {
                                                string: "string",
                                            },
                                            name: "string",
                                            namespace: "string",
                                        },
                                        spec: {
                                            destination: {
                                                name: "string",
                                                namespace: "string",
                                                server: "string",
                                            },
                                            ignoreDifferences: [{
                                                group: "string",
                                                jqPathExpressions: ["string"],
                                                jsonPointers: ["string"],
                                                kind: "string",
                                                managedFieldsManagers: ["string"],
                                                name: "string",
                                                namespace: "string",
                                            }],
                                            infos: [{
                                                name: "string",
                                                value: "string",
                                            }],
                                            project: "string",
                                            revisionHistoryLimit: 0,
                                            sources: [{
                                                chart: "string",
                                                directory: {
                                                    exclude: "string",
                                                    include: "string",
                                                    jsonnet: {
                                                        extVars: [{
                                                            code: false,
                                                            name: "string",
                                                            value: "string",
                                                        }],
                                                        libs: ["string"],
                                                        tlas: [{
                                                            code: false,
                                                            name: "string",
                                                            value: "string",
                                                        }],
                                                    },
                                                    recurse: false,
                                                },
                                                helm: {
                                                    fileParameters: [{
                                                        name: "string",
                                                        path: "string",
                                                    }],
                                                    ignoreMissingValueFiles: false,
                                                    parameters: [{
                                                        forceString: false,
                                                        name: "string",
                                                        value: "string",
                                                    }],
                                                    passCredentials: false,
                                                    releaseName: "string",
                                                    skipCrds: false,
                                                    valueFiles: ["string"],
                                                    values: "string",
                                                    version: "string",
                                                },
                                                kustomize: {
                                                    commonAnnotations: {
                                                        string: "string",
                                                    },
                                                    commonLabels: {
                                                        string: "string",
                                                    },
                                                    images: ["string"],
                                                    namePrefix: "string",
                                                    nameSuffix: "string",
                                                    patches: [{
                                                        target: {
                                                            annotationSelector: "string",
                                                            group: "string",
                                                            kind: "string",
                                                            labelSelector: "string",
                                                            name: "string",
                                                            namespace: "string",
                                                            version: "string",
                                                        },
                                                        options: {
                                                            string: false,
                                                        },
                                                        patch: "string",
                                                        path: "string",
                                                    }],
                                                    version: "string",
                                                },
                                                path: "string",
                                                plugin: {
                                                    envs: [{
                                                        name: "string",
                                                        value: "string",
                                                    }],
                                                    name: "string",
                                                },
                                                ref: "string",
                                                repoUrl: "string",
                                                targetRevision: "string",
                                            }],
                                            syncPolicy: {
                                                automated: {
                                                    allowEmpty: false,
                                                    prune: false,
                                                    selfHeal: false,
                                                },
                                                managedNamespaceMetadata: {
                                                    annotations: {
                                                        string: "string",
                                                    },
                                                    labels: {
                                                        string: "string",
                                                    },
                                                },
                                                retry: {
                                                    backoff: {
                                                        duration: "string",
                                                        factor: "string",
                                                        maxDuration: "string",
                                                    },
                                                    limit: "string",
                                                },
                                                syncOptions: ["string"],
                                            },
                                        },
                                    },
                                }],
                                selector: {
                                    matchExpressions: [{
                                        key: "string",
                                        operator: "string",
                                        values: ["string"],
                                    }],
                                    matchLabels: {
                                        string: "string",
                                    },
                                },
                            }],
                            mergeKeys: ["string"],
                            template: {
                                metadata: {
                                    annotations: {
                                        string: "string",
                                    },
                                    finalizers: ["string"],
                                    labels: {
                                        string: "string",
                                    },
                                    name: "string",
                                    namespace: "string",
                                },
                                spec: {
                                    destination: {
                                        name: "string",
                                        namespace: "string",
                                        server: "string",
                                    },
                                    ignoreDifferences: [{
                                        group: "string",
                                        jqPathExpressions: ["string"],
                                        jsonPointers: ["string"],
                                        kind: "string",
                                        managedFieldsManagers: ["string"],
                                        name: "string",
                                        namespace: "string",
                                    }],
                                    infos: [{
                                        name: "string",
                                        value: "string",
                                    }],
                                    project: "string",
                                    revisionHistoryLimit: 0,
                                    sources: [{
                                        chart: "string",
                                        directory: {
                                            exclude: "string",
                                            include: "string",
                                            jsonnet: {
                                                extVars: [{
                                                    code: false,
                                                    name: "string",
                                                    value: "string",
                                                }],
                                                libs: ["string"],
                                                tlas: [{
                                                    code: false,
                                                    name: "string",
                                                    value: "string",
                                                }],
                                            },
                                            recurse: false,
                                        },
                                        helm: {
                                            fileParameters: [{
                                                name: "string",
                                                path: "string",
                                            }],
                                            ignoreMissingValueFiles: false,
                                            parameters: [{
                                                forceString: false,
                                                name: "string",
                                                value: "string",
                                            }],
                                            passCredentials: false,
                                            releaseName: "string",
                                            skipCrds: false,
                                            valueFiles: ["string"],
                                            values: "string",
                                            version: "string",
                                        },
                                        kustomize: {
                                            commonAnnotations: {
                                                string: "string",
                                            },
                                            commonLabels: {
                                                string: "string",
                                            },
                                            images: ["string"],
                                            namePrefix: "string",
                                            nameSuffix: "string",
                                            patches: [{
                                                target: {
                                                    annotationSelector: "string",
                                                    group: "string",
                                                    kind: "string",
                                                    labelSelector: "string",
                                                    name: "string",
                                                    namespace: "string",
                                                    version: "string",
                                                },
                                                options: {
                                                    string: false,
                                                },
                                                patch: "string",
                                                path: "string",
                                            }],
                                            version: "string",
                                        },
                                        path: "string",
                                        plugin: {
                                            envs: [{
                                                name: "string",
                                                value: "string",
                                            }],
                                            name: "string",
                                        },
                                        ref: "string",
                                        repoUrl: "string",
                                        targetRevision: "string",
                                    }],
                                    syncPolicy: {
                                        automated: {
                                            allowEmpty: false,
                                            prune: false,
                                            selfHeal: false,
                                        },
                                        managedNamespaceMetadata: {
                                            annotations: {
                                                string: "string",
                                            },
                                            labels: {
                                                string: "string",
                                            },
                                        },
                                        retry: {
                                            backoff: {
                                                duration: "string",
                                                factor: "string",
                                                maxDuration: "string",
                                            },
                                            limit: "string",
                                        },
                                        syncOptions: ["string"],
                                    },
                                },
                            },
                        }],
                        pullRequests: [{
                            bitbucketServer: {
                                api: "string",
                                project: "string",
                                repo: "string",
                                basicAuth: {
                                    passwordRef: {
                                        key: "string",
                                        secretName: "string",
                                    },
                                    username: "string",
                                },
                            },
                            filters: [{
                                branchMatch: "string",
                            }],
                            gitea: {
                                api: "string",
                                owner: "string",
                                repo: "string",
                                insecure: false,
                                tokenRef: {
                                    key: "string",
                                    secretName: "string",
                                },
                            },
                            github: {
                                owner: "string",
                                repo: "string",
                                api: "string",
                                appSecretName: "string",
                                labels: ["string"],
                                tokenRef: {
                                    key: "string",
                                    secretName: "string",
                                },
                            },
                            gitlab: {
                                project: "string",
                                api: "string",
                                labels: ["string"],
                                pullRequestState: "string",
                                tokenRef: {
                                    key: "string",
                                    secretName: "string",
                                },
                            },
                            requeueAfterSeconds: "string",
                            template: {
                                metadata: {
                                    annotations: {
                                        string: "string",
                                    },
                                    finalizers: ["string"],
                                    labels: {
                                        string: "string",
                                    },
                                    name: "string",
                                    namespace: "string",
                                },
                                spec: {
                                    destination: {
                                        name: "string",
                                        namespace: "string",
                                        server: "string",
                                    },
                                    ignoreDifferences: [{
                                        group: "string",
                                        jqPathExpressions: ["string"],
                                        jsonPointers: ["string"],
                                        kind: "string",
                                        managedFieldsManagers: ["string"],
                                        name: "string",
                                        namespace: "string",
                                    }],
                                    infos: [{
                                        name: "string",
                                        value: "string",
                                    }],
                                    project: "string",
                                    revisionHistoryLimit: 0,
                                    sources: [{
                                        chart: "string",
                                        directory: {
                                            exclude: "string",
                                            include: "string",
                                            jsonnet: {
                                                extVars: [{
                                                    code: false,
                                                    name: "string",
                                                    value: "string",
                                                }],
                                                libs: ["string"],
                                                tlas: [{
                                                    code: false,
                                                    name: "string",
                                                    value: "string",
                                                }],
                                            },
                                            recurse: false,
                                        },
                                        helm: {
                                            fileParameters: [{
                                                name: "string",
                                                path: "string",
                                            }],
                                            ignoreMissingValueFiles: false,
                                            parameters: [{
                                                forceString: false,
                                                name: "string",
                                                value: "string",
                                            }],
                                            passCredentials: false,
                                            releaseName: "string",
                                            skipCrds: false,
                                            valueFiles: ["string"],
                                            values: "string",
                                            version: "string",
                                        },
                                        kustomize: {
                                            commonAnnotations: {
                                                string: "string",
                                            },
                                            commonLabels: {
                                                string: "string",
                                            },
                                            images: ["string"],
                                            namePrefix: "string",
                                            nameSuffix: "string",
                                            patches: [{
                                                target: {
                                                    annotationSelector: "string",
                                                    group: "string",
                                                    kind: "string",
                                                    labelSelector: "string",
                                                    name: "string",
                                                    namespace: "string",
                                                    version: "string",
                                                },
                                                options: {
                                                    string: false,
                                                },
                                                patch: "string",
                                                path: "string",
                                            }],
                                            version: "string",
                                        },
                                        path: "string",
                                        plugin: {
                                            envs: [{
                                                name: "string",
                                                value: "string",
                                            }],
                                            name: "string",
                                        },
                                        ref: "string",
                                        repoUrl: "string",
                                        targetRevision: "string",
                                    }],
                                    syncPolicy: {
                                        automated: {
                                            allowEmpty: false,
                                            prune: false,
                                            selfHeal: false,
                                        },
                                        managedNamespaceMetadata: {
                                            annotations: {
                                                string: "string",
                                            },
                                            labels: {
                                                string: "string",
                                            },
                                        },
                                        retry: {
                                            backoff: {
                                                duration: "string",
                                                factor: "string",
                                                maxDuration: "string",
                                            },
                                            limit: "string",
                                        },
                                        syncOptions: ["string"],
                                    },
                                },
                            },
                        }],
                        scmProviders: [{
                            azureDevops: {
                                organization: "string",
                                teamProject: "string",
                                accessTokenRef: {
                                    key: "string",
                                    secretName: "string",
                                },
                                allBranches: false,
                                api: "string",
                            },
                            bitbucketCloud: {
                                owner: "string",
                                user: "string",
                                allBranches: false,
                                appPasswordRef: {
                                    key: "string",
                                    secretName: "string",
                                },
                            },
                            bitbucketServer: {
                                api: "string",
                                project: "string",
                                allBranches: false,
                                basicAuth: {
                                    passwordRef: {
                                        key: "string",
                                        secretName: "string",
                                    },
                                    username: "string",
                                },
                            },
                            cloneProtocol: "string",
                            filters: [{
                                branchMatch: "string",
                                labelMatch: "string",
                                pathsDoNotExists: ["string"],
                                pathsExists: ["string"],
                                repositoryMatch: "string",
                            }],
                            gitea: {
                                owner: "string",
                                allBranches: false,
                                api: "string",
                                insecure: false,
                                tokenRef: {
                                    key: "string",
                                    secretName: "string",
                                },
                            },
                            github: {
                                organization: "string",
                                allBranches: false,
                                api: "string",
                                appSecretName: "string",
                                tokenRef: {
                                    key: "string",
                                    secretName: "string",
                                },
                            },
                            gitlab: {
                                group: "string",
                                allBranches: false,
                                api: "string",
                                includeSubgroups: false,
                                tokenRef: {
                                    key: "string",
                                    secretName: "string",
                                },
                            },
                            requeueAfterSeconds: "string",
                            template: {
                                metadata: {
                                    annotations: {
                                        string: "string",
                                    },
                                    finalizers: ["string"],
                                    labels: {
                                        string: "string",
                                    },
                                    name: "string",
                                    namespace: "string",
                                },
                                spec: {
                                    destination: {
                                        name: "string",
                                        namespace: "string",
                                        server: "string",
                                    },
                                    ignoreDifferences: [{
                                        group: "string",
                                        jqPathExpressions: ["string"],
                                        jsonPointers: ["string"],
                                        kind: "string",
                                        managedFieldsManagers: ["string"],
                                        name: "string",
                                        namespace: "string",
                                    }],
                                    infos: [{
                                        name: "string",
                                        value: "string",
                                    }],
                                    project: "string",
                                    revisionHistoryLimit: 0,
                                    sources: [{
                                        chart: "string",
                                        directory: {
                                            exclude: "string",
                                            include: "string",
                                            jsonnet: {
                                                extVars: [{
                                                    code: false,
                                                    name: "string",
                                                    value: "string",
                                                }],
                                                libs: ["string"],
                                                tlas: [{
                                                    code: false,
                                                    name: "string",
                                                    value: "string",
                                                }],
                                            },
                                            recurse: false,
                                        },
                                        helm: {
                                            fileParameters: [{
                                                name: "string",
                                                path: "string",
                                            }],
                                            ignoreMissingValueFiles: false,
                                            parameters: [{
                                                forceString: false,
                                                name: "string",
                                                value: "string",
                                            }],
                                            passCredentials: false,
                                            releaseName: "string",
                                            skipCrds: false,
                                            valueFiles: ["string"],
                                            values: "string",
                                            version: "string",
                                        },
                                        kustomize: {
                                            commonAnnotations: {
                                                string: "string",
                                            },
                                            commonLabels: {
                                                string: "string",
                                            },
                                            images: ["string"],
                                            namePrefix: "string",
                                            nameSuffix: "string",
                                            patches: [{
                                                target: {
                                                    annotationSelector: "string",
                                                    group: "string",
                                                    kind: "string",
                                                    labelSelector: "string",
                                                    name: "string",
                                                    namespace: "string",
                                                    version: "string",
                                                },
                                                options: {
                                                    string: false,
                                                },
                                                patch: "string",
                                                path: "string",
                                            }],
                                            version: "string",
                                        },
                                        path: "string",
                                        plugin: {
                                            envs: [{
                                                name: "string",
                                                value: "string",
                                            }],
                                            name: "string",
                                        },
                                        ref: "string",
                                        repoUrl: "string",
                                        targetRevision: "string",
                                    }],
                                    syncPolicy: {
                                        automated: {
                                            allowEmpty: false,
                                            prune: false,
                                            selfHeal: false,
                                        },
                                        managedNamespaceMetadata: {
                                            annotations: {
                                                string: "string",
                                            },
                                            labels: {
                                                string: "string",
                                            },
                                        },
                                        retry: {
                                            backoff: {
                                                duration: "string",
                                                factor: "string",
                                                maxDuration: "string",
                                            },
                                            limit: "string",
                                        },
                                        syncOptions: ["string"],
                                    },
                                },
                            },
                        }],
                        selector: {
                            matchExpressions: [{
                                key: "string",
                                operator: "string",
                                values: ["string"],
                            }],
                            matchLabels: {
                                string: "string",
                            },
                        },
                    }],
                    mergeKeys: ["string"],
                    template: {
                        metadata: {
                            annotations: {
                                string: "string",
                            },
                            finalizers: ["string"],
                            labels: {
                                string: "string",
                            },
                            name: "string",
                            namespace: "string",
                        },
                        spec: {
                            destination: {
                                name: "string",
                                namespace: "string",
                                server: "string",
                            },
                            ignoreDifferences: [{
                                group: "string",
                                jqPathExpressions: ["string"],
                                jsonPointers: ["string"],
                                kind: "string",
                                managedFieldsManagers: ["string"],
                                name: "string",
                                namespace: "string",
                            }],
                            infos: [{
                                name: "string",
                                value: "string",
                            }],
                            project: "string",
                            revisionHistoryLimit: 0,
                            sources: [{
                                chart: "string",
                                directory: {
                                    exclude: "string",
                                    include: "string",
                                    jsonnet: {
                                        extVars: [{
                                            code: false,
                                            name: "string",
                                            value: "string",
                                        }],
                                        libs: ["string"],
                                        tlas: [{
                                            code: false,
                                            name: "string",
                                            value: "string",
                                        }],
                                    },
                                    recurse: false,
                                },
                                helm: {
                                    fileParameters: [{
                                        name: "string",
                                        path: "string",
                                    }],
                                    ignoreMissingValueFiles: false,
                                    parameters: [{
                                        forceString: false,
                                        name: "string",
                                        value: "string",
                                    }],
                                    passCredentials: false,
                                    releaseName: "string",
                                    skipCrds: false,
                                    valueFiles: ["string"],
                                    values: "string",
                                    version: "string",
                                },
                                kustomize: {
                                    commonAnnotations: {
                                        string: "string",
                                    },
                                    commonLabels: {
                                        string: "string",
                                    },
                                    images: ["string"],
                                    namePrefix: "string",
                                    nameSuffix: "string",
                                    patches: [{
                                        target: {
                                            annotationSelector: "string",
                                            group: "string",
                                            kind: "string",
                                            labelSelector: "string",
                                            name: "string",
                                            namespace: "string",
                                            version: "string",
                                        },
                                        options: {
                                            string: false,
                                        },
                                        patch: "string",
                                        path: "string",
                                    }],
                                    version: "string",
                                },
                                path: "string",
                                plugin: {
                                    envs: [{
                                        name: "string",
                                        value: "string",
                                    }],
                                    name: "string",
                                },
                                ref: "string",
                                repoUrl: "string",
                                targetRevision: "string",
                            }],
                            syncPolicy: {
                                automated: {
                                    allowEmpty: false,
                                    prune: false,
                                    selfHeal: false,
                                },
                                managedNamespaceMetadata: {
                                    annotations: {
                                        string: "string",
                                    },
                                    labels: {
                                        string: "string",
                                    },
                                },
                                retry: {
                                    backoff: {
                                        duration: "string",
                                        factor: "string",
                                        maxDuration: "string",
                                    },
                                    limit: "string",
                                },
                                syncOptions: ["string"],
                            },
                        },
                    },
                }],
                pullRequests: [{
                    bitbucketServer: {
                        api: "string",
                        project: "string",
                        repo: "string",
                        basicAuth: {
                            passwordRef: {
                                key: "string",
                                secretName: "string",
                            },
                            username: "string",
                        },
                    },
                    filters: [{
                        branchMatch: "string",
                    }],
                    gitea: {
                        api: "string",
                        owner: "string",
                        repo: "string",
                        insecure: false,
                        tokenRef: {
                            key: "string",
                            secretName: "string",
                        },
                    },
                    github: {
                        owner: "string",
                        repo: "string",
                        api: "string",
                        appSecretName: "string",
                        labels: ["string"],
                        tokenRef: {
                            key: "string",
                            secretName: "string",
                        },
                    },
                    gitlab: {
                        project: "string",
                        api: "string",
                        labels: ["string"],
                        pullRequestState: "string",
                        tokenRef: {
                            key: "string",
                            secretName: "string",
                        },
                    },
                    requeueAfterSeconds: "string",
                    template: {
                        metadata: {
                            annotations: {
                                string: "string",
                            },
                            finalizers: ["string"],
                            labels: {
                                string: "string",
                            },
                            name: "string",
                            namespace: "string",
                        },
                        spec: {
                            destination: {
                                name: "string",
                                namespace: "string",
                                server: "string",
                            },
                            ignoreDifferences: [{
                                group: "string",
                                jqPathExpressions: ["string"],
                                jsonPointers: ["string"],
                                kind: "string",
                                managedFieldsManagers: ["string"],
                                name: "string",
                                namespace: "string",
                            }],
                            infos: [{
                                name: "string",
                                value: "string",
                            }],
                            project: "string",
                            revisionHistoryLimit: 0,
                            sources: [{
                                chart: "string",
                                directory: {
                                    exclude: "string",
                                    include: "string",
                                    jsonnet: {
                                        extVars: [{
                                            code: false,
                                            name: "string",
                                            value: "string",
                                        }],
                                        libs: ["string"],
                                        tlas: [{
                                            code: false,
                                            name: "string",
                                            value: "string",
                                        }],
                                    },
                                    recurse: false,
                                },
                                helm: {
                                    fileParameters: [{
                                        name: "string",
                                        path: "string",
                                    }],
                                    ignoreMissingValueFiles: false,
                                    parameters: [{
                                        forceString: false,
                                        name: "string",
                                        value: "string",
                                    }],
                                    passCredentials: false,
                                    releaseName: "string",
                                    skipCrds: false,
                                    valueFiles: ["string"],
                                    values: "string",
                                    version: "string",
                                },
                                kustomize: {
                                    commonAnnotations: {
                                        string: "string",
                                    },
                                    commonLabels: {
                                        string: "string",
                                    },
                                    images: ["string"],
                                    namePrefix: "string",
                                    nameSuffix: "string",
                                    patches: [{
                                        target: {
                                            annotationSelector: "string",
                                            group: "string",
                                            kind: "string",
                                            labelSelector: "string",
                                            name: "string",
                                            namespace: "string",
                                            version: "string",
                                        },
                                        options: {
                                            string: false,
                                        },
                                        patch: "string",
                                        path: "string",
                                    }],
                                    version: "string",
                                },
                                path: "string",
                                plugin: {
                                    envs: [{
                                        name: "string",
                                        value: "string",
                                    }],
                                    name: "string",
                                },
                                ref: "string",
                                repoUrl: "string",
                                targetRevision: "string",
                            }],
                            syncPolicy: {
                                automated: {
                                    allowEmpty: false,
                                    prune: false,
                                    selfHeal: false,
                                },
                                managedNamespaceMetadata: {
                                    annotations: {
                                        string: "string",
                                    },
                                    labels: {
                                        string: "string",
                                    },
                                },
                                retry: {
                                    backoff: {
                                        duration: "string",
                                        factor: "string",
                                        maxDuration: "string",
                                    },
                                    limit: "string",
                                },
                                syncOptions: ["string"],
                            },
                        },
                    },
                }],
                scmProviders: [{
                    azureDevops: {
                        organization: "string",
                        teamProject: "string",
                        accessTokenRef: {
                            key: "string",
                            secretName: "string",
                        },
                        allBranches: false,
                        api: "string",
                    },
                    bitbucketCloud: {
                        owner: "string",
                        user: "string",
                        allBranches: false,
                        appPasswordRef: {
                            key: "string",
                            secretName: "string",
                        },
                    },
                    bitbucketServer: {
                        api: "string",
                        project: "string",
                        allBranches: false,
                        basicAuth: {
                            passwordRef: {
                                key: "string",
                                secretName: "string",
                            },
                            username: "string",
                        },
                    },
                    cloneProtocol: "string",
                    filters: [{
                        branchMatch: "string",
                        labelMatch: "string",
                        pathsDoNotExists: ["string"],
                        pathsExists: ["string"],
                        repositoryMatch: "string",
                    }],
                    gitea: {
                        owner: "string",
                        allBranches: false,
                        api: "string",
                        insecure: false,
                        tokenRef: {
                            key: "string",
                            secretName: "string",
                        },
                    },
                    github: {
                        organization: "string",
                        allBranches: false,
                        api: "string",
                        appSecretName: "string",
                        tokenRef: {
                            key: "string",
                            secretName: "string",
                        },
                    },
                    gitlab: {
                        group: "string",
                        allBranches: false,
                        api: "string",
                        includeSubgroups: false,
                        tokenRef: {
                            key: "string",
                            secretName: "string",
                        },
                    },
                    requeueAfterSeconds: "string",
                    template: {
                        metadata: {
                            annotations: {
                                string: "string",
                            },
                            finalizers: ["string"],
                            labels: {
                                string: "string",
                            },
                            name: "string",
                            namespace: "string",
                        },
                        spec: {
                            destination: {
                                name: "string",
                                namespace: "string",
                                server: "string",
                            },
                            ignoreDifferences: [{
                                group: "string",
                                jqPathExpressions: ["string"],
                                jsonPointers: ["string"],
                                kind: "string",
                                managedFieldsManagers: ["string"],
                                name: "string",
                                namespace: "string",
                            }],
                            infos: [{
                                name: "string",
                                value: "string",
                            }],
                            project: "string",
                            revisionHistoryLimit: 0,
                            sources: [{
                                chart: "string",
                                directory: {
                                    exclude: "string",
                                    include: "string",
                                    jsonnet: {
                                        extVars: [{
                                            code: false,
                                            name: "string",
                                            value: "string",
                                        }],
                                        libs: ["string"],
                                        tlas: [{
                                            code: false,
                                            name: "string",
                                            value: "string",
                                        }],
                                    },
                                    recurse: false,
                                },
                                helm: {
                                    fileParameters: [{
                                        name: "string",
                                        path: "string",
                                    }],
                                    ignoreMissingValueFiles: false,
                                    parameters: [{
                                        forceString: false,
                                        name: "string",
                                        value: "string",
                                    }],
                                    passCredentials: false,
                                    releaseName: "string",
                                    skipCrds: false,
                                    valueFiles: ["string"],
                                    values: "string",
                                    version: "string",
                                },
                                kustomize: {
                                    commonAnnotations: {
                                        string: "string",
                                    },
                                    commonLabels: {
                                        string: "string",
                                    },
                                    images: ["string"],
                                    namePrefix: "string",
                                    nameSuffix: "string",
                                    patches: [{
                                        target: {
                                            annotationSelector: "string",
                                            group: "string",
                                            kind: "string",
                                            labelSelector: "string",
                                            name: "string",
                                            namespace: "string",
                                            version: "string",
                                        },
                                        options: {
                                            string: false,
                                        },
                                        patch: "string",
                                        path: "string",
                                    }],
                                    version: "string",
                                },
                                path: "string",
                                plugin: {
                                    envs: [{
                                        name: "string",
                                        value: "string",
                                    }],
                                    name: "string",
                                },
                                ref: "string",
                                repoUrl: "string",
                                targetRevision: "string",
                            }],
                            syncPolicy: {
                                automated: {
                                    allowEmpty: false,
                                    prune: false,
                                    selfHeal: false,
                                },
                                managedNamespaceMetadata: {
                                    annotations: {
                                        string: "string",
                                    },
                                    labels: {
                                        string: "string",
                                    },
                                },
                                retry: {
                                    backoff: {
                                        duration: "string",
                                        factor: "string",
                                        maxDuration: "string",
                                    },
                                    limit: "string",
                                },
                                syncOptions: ["string"],
                            },
                        },
                    },
                }],
                selector: {
                    matchExpressions: [{
                        key: "string",
                        operator: "string",
                        values: ["string"],
                    }],
                    matchLabels: {
                        string: "string",
                    },
                },
            }],
            template: {
                metadata: {
                    name: "string",
                    annotations: {
                        string: "string",
                    },
                    finalizers: ["string"],
                    labels: {
                        string: "string",
                    },
                    namespace: "string",
                },
                spec: {
                    destination: {
                        name: "string",
                        namespace: "string",
                        server: "string",
                    },
                    sources: [{
                        repoUrl: "string",
                        chart: "string",
                        directory: {
                            exclude: "string",
                            include: "string",
                            jsonnet: {
                                extVars: [{
                                    code: false,
                                    name: "string",
                                    value: "string",
                                }],
                                libs: ["string"],
                                tlas: [{
                                    code: false,
                                    name: "string",
                                    value: "string",
                                }],
                            },
                            recurse: false,
                        },
                        helm: {
                            fileParameters: [{
                                name: "string",
                                path: "string",
                            }],
                            ignoreMissingValueFiles: false,
                            parameters: [{
                                forceString: false,
                                name: "string",
                                value: "string",
                            }],
                            passCredentials: false,
                            releaseName: "string",
                            skipCrds: false,
                            valueFiles: ["string"],
                            values: "string",
                            version: "string",
                        },
                        kustomize: {
                            commonAnnotations: {
                                string: "string",
                            },
                            commonLabels: {
                                string: "string",
                            },
                            images: ["string"],
                            namePrefix: "string",
                            nameSuffix: "string",
                            patches: [{
                                target: {
                                    annotationSelector: "string",
                                    group: "string",
                                    kind: "string",
                                    labelSelector: "string",
                                    name: "string",
                                    namespace: "string",
                                    version: "string",
                                },
                                options: {
                                    string: false,
                                },
                                patch: "string",
                                path: "string",
                            }],
                            version: "string",
                        },
                        path: "string",
                        plugin: {
                            envs: [{
                                name: "string",
                                value: "string",
                            }],
                            name: "string",
                        },
                        ref: "string",
                        targetRevision: "string",
                    }],
                    ignoreDifferences: [{
                        group: "string",
                        jqPathExpressions: ["string"],
                        jsonPointers: ["string"],
                        kind: "string",
                        managedFieldsManagers: ["string"],
                        name: "string",
                        namespace: "string",
                    }],
                    infos: [{
                        name: "string",
                        value: "string",
                    }],
                    project: "string",
                    revisionHistoryLimit: 0,
                    syncPolicy: {
                        automated: {
                            allowEmpty: false,
                            prune: false,
                            selfHeal: false,
                        },
                        managedNamespaceMetadata: {
                            annotations: {
                                string: "string",
                            },
                            labels: {
                                string: "string",
                            },
                        },
                        retry: {
                            backoff: {
                                duration: "string",
                                factor: "string",
                                maxDuration: "string",
                            },
                            limit: "string",
                        },
                        syncOptions: ["string"],
                    },
                },
            },
            goTemplate: false,
            goTemplateOptions: ["string"],
            ignoreApplicationDifferences: [{
                jqPathExpressions: ["string"],
                jsonPointers: ["string"],
                name: "string",
            }],
            strategy: {
                type: "string",
                rollingSyncs: [{
                    steps: [{
                        matchExpressions: [{
                            key: "string",
                            operator: "string",
                            values: ["string"],
                        }],
                        maxUpdate: "string",
                    }],
                }],
            },
            syncPolicy: {
                applicationsSync: "string",
                preserveResourcesOnDeletion: false,
            },
            templatePatch: "string",
        },
    });
    
    type: argocd:ApplicationSet
    properties:
        metadata:
            annotations:
                string: string
            generation: 0
            labels:
                string: string
            name: string
            namespace: string
            resourceVersion: string
            uid: string
        spec:
            generators:
                - clusterDecisionResources:
                    - configMapRef: string
                      labelSelector:
                        matchExpressions:
                            - key: string
                              operator: string
                              values:
                                - string
                        matchLabels:
                            string: string
                      name: string
                      requeueAfterSeconds: string
                      template:
                        metadata:
                            annotations:
                                string: string
                            finalizers:
                                - string
                            labels:
                                string: string
                            name: string
                            namespace: string
                        spec:
                            destination:
                                name: string
                                namespace: string
                                server: string
                            ignoreDifferences:
                                - group: string
                                  jqPathExpressions:
                                    - string
                                  jsonPointers:
                                    - string
                                  kind: string
                                  managedFieldsManagers:
                                    - string
                                  name: string
                                  namespace: string
                            infos:
                                - name: string
                                  value: string
                            project: string
                            revisionHistoryLimit: 0
                            sources:
                                - chart: string
                                  directory:
                                    exclude: string
                                    include: string
                                    jsonnet:
                                        extVars:
                                            - code: false
                                              name: string
                                              value: string
                                        libs:
                                            - string
                                        tlas:
                                            - code: false
                                              name: string
                                              value: string
                                    recurse: false
                                  helm:
                                    fileParameters:
                                        - name: string
                                          path: string
                                    ignoreMissingValueFiles: false
                                    parameters:
                                        - forceString: false
                                          name: string
                                          value: string
                                    passCredentials: false
                                    releaseName: string
                                    skipCrds: false
                                    valueFiles:
                                        - string
                                    values: string
                                    version: string
                                  kustomize:
                                    commonAnnotations:
                                        string: string
                                    commonLabels:
                                        string: string
                                    images:
                                        - string
                                    namePrefix: string
                                    nameSuffix: string
                                    patches:
                                        - options:
                                            string: false
                                          patch: string
                                          path: string
                                          target:
                                            annotationSelector: string
                                            group: string
                                            kind: string
                                            labelSelector: string
                                            name: string
                                            namespace: string
                                            version: string
                                    version: string
                                  path: string
                                  plugin:
                                    envs:
                                        - name: string
                                          value: string
                                    name: string
                                  ref: string
                                  repoUrl: string
                                  targetRevision: string
                            syncPolicy:
                                automated:
                                    allowEmpty: false
                                    prune: false
                                    selfHeal: false
                                managedNamespaceMetadata:
                                    annotations:
                                        string: string
                                    labels:
                                        string: string
                                retry:
                                    backoff:
                                        duration: string
                                        factor: string
                                        maxDuration: string
                                    limit: string
                                syncOptions:
                                    - string
                      values:
                        string: string
                  clusters:
                    - enabled: false
                      selector:
                        matchExpressions:
                            - key: string
                              operator: string
                              values:
                                - string
                        matchLabels:
                            string: string
                      template:
                        metadata:
                            annotations:
                                string: string
                            finalizers:
                                - string
                            labels:
                                string: string
                            name: string
                            namespace: string
                        spec:
                            destination:
                                name: string
                                namespace: string
                                server: string
                            ignoreDifferences:
                                - group: string
                                  jqPathExpressions:
                                    - string
                                  jsonPointers:
                                    - string
                                  kind: string
                                  managedFieldsManagers:
                                    - string
                                  name: string
                                  namespace: string
                            infos:
                                - name: string
                                  value: string
                            project: string
                            revisionHistoryLimit: 0
                            sources:
                                - chart: string
                                  directory:
                                    exclude: string
                                    include: string
                                    jsonnet:
                                        extVars:
                                            - code: false
                                              name: string
                                              value: string
                                        libs:
                                            - string
                                        tlas:
                                            - code: false
                                              name: string
                                              value: string
                                    recurse: false
                                  helm:
                                    fileParameters:
                                        - name: string
                                          path: string
                                    ignoreMissingValueFiles: false
                                    parameters:
                                        - forceString: false
                                          name: string
                                          value: string
                                    passCredentials: false
                                    releaseName: string
                                    skipCrds: false
                                    valueFiles:
                                        - string
                                    values: string
                                    version: string
                                  kustomize:
                                    commonAnnotations:
                                        string: string
                                    commonLabels:
                                        string: string
                                    images:
                                        - string
                                    namePrefix: string
                                    nameSuffix: string
                                    patches:
                                        - options:
                                            string: false
                                          patch: string
                                          path: string
                                          target:
                                            annotationSelector: string
                                            group: string
                                            kind: string
                                            labelSelector: string
                                            name: string
                                            namespace: string
                                            version: string
                                    version: string
                                  path: string
                                  plugin:
                                    envs:
                                        - name: string
                                          value: string
                                    name: string
                                  ref: string
                                  repoUrl: string
                                  targetRevision: string
                            syncPolicy:
                                automated:
                                    allowEmpty: false
                                    prune: false
                                    selfHeal: false
                                managedNamespaceMetadata:
                                    annotations:
                                        string: string
                                    labels:
                                        string: string
                                retry:
                                    backoff:
                                        duration: string
                                        factor: string
                                        maxDuration: string
                                    limit: string
                                syncOptions:
                                    - string
                      values:
                        string: string
                  gits:
                    - directories:
                        - exclude: false
                          path: string
                      files:
                        - path: string
                      pathParamPrefix: string
                      repoUrl: string
                      revision: string
                      template:
                        metadata:
                            annotations:
                                string: string
                            finalizers:
                                - string
                            labels:
                                string: string
                            name: string
                            namespace: string
                        spec:
                            destination:
                                name: string
                                namespace: string
                                server: string
                            ignoreDifferences:
                                - group: string
                                  jqPathExpressions:
                                    - string
                                  jsonPointers:
                                    - string
                                  kind: string
                                  managedFieldsManagers:
                                    - string
                                  name: string
                                  namespace: string
                            infos:
                                - name: string
                                  value: string
                            project: string
                            revisionHistoryLimit: 0
                            sources:
                                - chart: string
                                  directory:
                                    exclude: string
                                    include: string
                                    jsonnet:
                                        extVars:
                                            - code: false
                                              name: string
                                              value: string
                                        libs:
                                            - string
                                        tlas:
                                            - code: false
                                              name: string
                                              value: string
                                    recurse: false
                                  helm:
                                    fileParameters:
                                        - name: string
                                          path: string
                                    ignoreMissingValueFiles: false
                                    parameters:
                                        - forceString: false
                                          name: string
                                          value: string
                                    passCredentials: false
                                    releaseName: string
                                    skipCrds: false
                                    valueFiles:
                                        - string
                                    values: string
                                    version: string
                                  kustomize:
                                    commonAnnotations:
                                        string: string
                                    commonLabels:
                                        string: string
                                    images:
                                        - string
                                    namePrefix: string
                                    nameSuffix: string
                                    patches:
                                        - options:
                                            string: false
                                          patch: string
                                          path: string
                                          target:
                                            annotationSelector: string
                                            group: string
                                            kind: string
                                            labelSelector: string
                                            name: string
                                            namespace: string
                                            version: string
                                    version: string
                                  path: string
                                  plugin:
                                    envs:
                                        - name: string
                                          value: string
                                    name: string
                                  ref: string
                                  repoUrl: string
                                  targetRevision: string
                            syncPolicy:
                                automated:
                                    allowEmpty: false
                                    prune: false
                                    selfHeal: false
                                managedNamespaceMetadata:
                                    annotations:
                                        string: string
                                    labels:
                                        string: string
                                retry:
                                    backoff:
                                        duration: string
                                        factor: string
                                        maxDuration: string
                                    limit: string
                                syncOptions:
                                    - string
                      values:
                        string: string
                  lists:
                    - elements:
                        - string: string
                      template:
                        metadata:
                            annotations:
                                string: string
                            finalizers:
                                - string
                            labels:
                                string: string
                            name: string
                            namespace: string
                        spec:
                            destination:
                                name: string
                                namespace: string
                                server: string
                            ignoreDifferences:
                                - group: string
                                  jqPathExpressions:
                                    - string
                                  jsonPointers:
                                    - string
                                  kind: string
                                  managedFieldsManagers:
                                    - string
                                  name: string
                                  namespace: string
                            infos:
                                - name: string
                                  value: string
                            project: string
                            revisionHistoryLimit: 0
                            sources:
                                - chart: string
                                  directory:
                                    exclude: string
                                    include: string
                                    jsonnet:
                                        extVars:
                                            - code: false
                                              name: string
                                              value: string
                                        libs:
                                            - string
                                        tlas:
                                            - code: false
                                              name: string
                                              value: string
                                    recurse: false
                                  helm:
                                    fileParameters:
                                        - name: string
                                          path: string
                                    ignoreMissingValueFiles: false
                                    parameters:
                                        - forceString: false
                                          name: string
                                          value: string
                                    passCredentials: false
                                    releaseName: string
                                    skipCrds: false
                                    valueFiles:
                                        - string
                                    values: string
                                    version: string
                                  kustomize:
                                    commonAnnotations:
                                        string: string
                                    commonLabels:
                                        string: string
                                    images:
                                        - string
                                    namePrefix: string
                                    nameSuffix: string
                                    patches:
                                        - options:
                                            string: false
                                          patch: string
                                          path: string
                                          target:
                                            annotationSelector: string
                                            group: string
                                            kind: string
                                            labelSelector: string
                                            name: string
                                            namespace: string
                                            version: string
                                    version: string
                                  path: string
                                  plugin:
                                    envs:
                                        - name: string
                                          value: string
                                    name: string
                                  ref: string
                                  repoUrl: string
                                  targetRevision: string
                            syncPolicy:
                                automated:
                                    allowEmpty: false
                                    prune: false
                                    selfHeal: false
                                managedNamespaceMetadata:
                                    annotations:
                                        string: string
                                    labels:
                                        string: string
                                retry:
                                    backoff:
                                        duration: string
                                        factor: string
                                        maxDuration: string
                                    limit: string
                                syncOptions:
                                    - string
                  matrices:
                    - generators:
                        - clusterDecisionResources:
                            - configMapRef: string
                              labelSelector:
                                matchExpressions:
                                    - key: string
                                      operator: string
                                      values:
                                        - string
                                matchLabels:
                                    string: string
                              name: string
                              requeueAfterSeconds: string
                              template:
                                metadata:
                                    annotations:
                                        string: string
                                    finalizers:
                                        - string
                                    labels:
                                        string: string
                                    name: string
                                    namespace: string
                                spec:
                                    destination:
                                        name: string
                                        namespace: string
                                        server: string
                                    ignoreDifferences:
                                        - group: string
                                          jqPathExpressions:
                                            - string
                                          jsonPointers:
                                            - string
                                          kind: string
                                          managedFieldsManagers:
                                            - string
                                          name: string
                                          namespace: string
                                    infos:
                                        - name: string
                                          value: string
                                    project: string
                                    revisionHistoryLimit: 0
                                    sources:
                                        - chart: string
                                          directory:
                                            exclude: string
                                            include: string
                                            jsonnet:
                                                extVars:
                                                    - code: false
                                                      name: string
                                                      value: string
                                                libs:
                                                    - string
                                                tlas:
                                                    - code: false
                                                      name: string
                                                      value: string
                                            recurse: false
                                          helm:
                                            fileParameters:
                                                - name: string
                                                  path: string
                                            ignoreMissingValueFiles: false
                                            parameters:
                                                - forceString: false
                                                  name: string
                                                  value: string
                                            passCredentials: false
                                            releaseName: string
                                            skipCrds: false
                                            valueFiles:
                                                - string
                                            values: string
                                            version: string
                                          kustomize:
                                            commonAnnotations:
                                                string: string
                                            commonLabels:
                                                string: string
                                            images:
                                                - string
                                            namePrefix: string
                                            nameSuffix: string
                                            patches:
                                                - options:
                                                    string: false
                                                  patch: string
                                                  path: string
                                                  target:
                                                    annotationSelector: string
                                                    group: string
                                                    kind: string
                                                    labelSelector: string
                                                    name: string
                                                    namespace: string
                                                    version: string
                                            version: string
                                          path: string
                                          plugin:
                                            envs:
                                                - name: string
                                                  value: string
                                            name: string
                                          ref: string
                                          repoUrl: string
                                          targetRevision: string
                                    syncPolicy:
                                        automated:
                                            allowEmpty: false
                                            prune: false
                                            selfHeal: false
                                        managedNamespaceMetadata:
                                            annotations:
                                                string: string
                                            labels:
                                                string: string
                                        retry:
                                            backoff:
                                                duration: string
                                                factor: string
                                                maxDuration: string
                                            limit: string
                                        syncOptions:
                                            - string
                              values:
                                string: string
                          clusters:
                            - enabled: false
                              selector:
                                matchExpressions:
                                    - key: string
                                      operator: string
                                      values:
                                        - string
                                matchLabels:
                                    string: string
                              template:
                                metadata:
                                    annotations:
                                        string: string
                                    finalizers:
                                        - string
                                    labels:
                                        string: string
                                    name: string
                                    namespace: string
                                spec:
                                    destination:
                                        name: string
                                        namespace: string
                                        server: string
                                    ignoreDifferences:
                                        - group: string
                                          jqPathExpressions:
                                            - string
                                          jsonPointers:
                                            - string
                                          kind: string
                                          managedFieldsManagers:
                                            - string
                                          name: string
                                          namespace: string
                                    infos:
                                        - name: string
                                          value: string
                                    project: string
                                    revisionHistoryLimit: 0
                                    sources:
                                        - chart: string
                                          directory:
                                            exclude: string
                                            include: string
                                            jsonnet:
                                                extVars:
                                                    - code: false
                                                      name: string
                                                      value: string
                                                libs:
                                                    - string
                                                tlas:
                                                    - code: false
                                                      name: string
                                                      value: string
                                            recurse: false
                                          helm:
                                            fileParameters:
                                                - name: string
                                                  path: string
                                            ignoreMissingValueFiles: false
                                            parameters:
                                                - forceString: false
                                                  name: string
                                                  value: string
                                            passCredentials: false
                                            releaseName: string
                                            skipCrds: false
                                            valueFiles:
                                                - string
                                            values: string
                                            version: string
                                          kustomize:
                                            commonAnnotations:
                                                string: string
                                            commonLabels:
                                                string: string
                                            images:
                                                - string
                                            namePrefix: string
                                            nameSuffix: string
                                            patches:
                                                - options:
                                                    string: false
                                                  patch: string
                                                  path: string
                                                  target:
                                                    annotationSelector: string
                                                    group: string
                                                    kind: string
                                                    labelSelector: string
                                                    name: string
                                                    namespace: string
                                                    version: string
                                            version: string
                                          path: string
                                          plugin:
                                            envs:
                                                - name: string
                                                  value: string
                                            name: string
                                          ref: string
                                          repoUrl: string
                                          targetRevision: string
                                    syncPolicy:
                                        automated:
                                            allowEmpty: false
                                            prune: false
                                            selfHeal: false
                                        managedNamespaceMetadata:
                                            annotations:
                                                string: string
                                            labels:
                                                string: string
                                        retry:
                                            backoff:
                                                duration: string
                                                factor: string
                                                maxDuration: string
                                            limit: string
                                        syncOptions:
                                            - string
                              values:
                                string: string
                          gits:
                            - directories:
                                - exclude: false
                                  path: string
                              files:
                                - path: string
                              pathParamPrefix: string
                              repoUrl: string
                              revision: string
                              template:
                                metadata:
                                    annotations:
                                        string: string
                                    finalizers:
                                        - string
                                    labels:
                                        string: string
                                    name: string
                                    namespace: string
                                spec:
                                    destination:
                                        name: string
                                        namespace: string
                                        server: string
                                    ignoreDifferences:
                                        - group: string
                                          jqPathExpressions:
                                            - string
                                          jsonPointers:
                                            - string
                                          kind: string
                                          managedFieldsManagers:
                                            - string
                                          name: string
                                          namespace: string
                                    infos:
                                        - name: string
                                          value: string
                                    project: string
                                    revisionHistoryLimit: 0
                                    sources:
                                        - chart: string
                                          directory:
                                            exclude: string
                                            include: string
                                            jsonnet:
                                                extVars:
                                                    - code: false
                                                      name: string
                                                      value: string
                                                libs:
                                                    - string
                                                tlas:
                                                    - code: false
                                                      name: string
                                                      value: string
                                            recurse: false
                                          helm:
                                            fileParameters:
                                                - name: string
                                                  path: string
                                            ignoreMissingValueFiles: false
                                            parameters:
                                                - forceString: false
                                                  name: string
                                                  value: string
                                            passCredentials: false
                                            releaseName: string
                                            skipCrds: false
                                            valueFiles:
                                                - string
                                            values: string
                                            version: string
                                          kustomize:
                                            commonAnnotations:
                                                string: string
                                            commonLabels:
                                                string: string
                                            images:
                                                - string
                                            namePrefix: string
                                            nameSuffix: string
                                            patches:
                                                - options:
                                                    string: false
                                                  patch: string
                                                  path: string
                                                  target:
                                                    annotationSelector: string
                                                    group: string
                                                    kind: string
                                                    labelSelector: string
                                                    name: string
                                                    namespace: string
                                                    version: string
                                            version: string
                                          path: string
                                          plugin:
                                            envs:
                                                - name: string
                                                  value: string
                                            name: string
                                          ref: string
                                          repoUrl: string
                                          targetRevision: string
                                    syncPolicy:
                                        automated:
                                            allowEmpty: false
                                            prune: false
                                            selfHeal: false
                                        managedNamespaceMetadata:
                                            annotations:
                                                string: string
                                            labels:
                                                string: string
                                        retry:
                                            backoff:
                                                duration: string
                                                factor: string
                                                maxDuration: string
                                            limit: string
                                        syncOptions:
                                            - string
                              values:
                                string: string
                          lists:
                            - elements:
                                - string: string
                              template:
                                metadata:
                                    annotations:
                                        string: string
                                    finalizers:
                                        - string
                                    labels:
                                        string: string
                                    name: string
                                    namespace: string
                                spec:
                                    destination:
                                        name: string
                                        namespace: string
                                        server: string
                                    ignoreDifferences:
                                        - group: string
                                          jqPathExpressions:
                                            - string
                                          jsonPointers:
                                            - string
                                          kind: string
                                          managedFieldsManagers:
                                            - string
                                          name: string
                                          namespace: string
                                    infos:
                                        - name: string
                                          value: string
                                    project: string
                                    revisionHistoryLimit: 0
                                    sources:
                                        - chart: string
                                          directory:
                                            exclude: string
                                            include: string
                                            jsonnet:
                                                extVars:
                                                    - code: false
                                                      name: string
                                                      value: string
                                                libs:
                                                    - string
                                                tlas:
                                                    - code: false
                                                      name: string
                                                      value: string
                                            recurse: false
                                          helm:
                                            fileParameters:
                                                - name: string
                                                  path: string
                                            ignoreMissingValueFiles: false
                                            parameters:
                                                - forceString: false
                                                  name: string
                                                  value: string
                                            passCredentials: false
                                            releaseName: string
                                            skipCrds: false
                                            valueFiles:
                                                - string
                                            values: string
                                            version: string
                                          kustomize:
                                            commonAnnotations:
                                                string: string
                                            commonLabels:
                                                string: string
                                            images:
                                                - string
                                            namePrefix: string
                                            nameSuffix: string
                                            patches:
                                                - options:
                                                    string: false
                                                  patch: string
                                                  path: string
                                                  target:
                                                    annotationSelector: string
                                                    group: string
                                                    kind: string
                                                    labelSelector: string
                                                    name: string
                                                    namespace: string
                                                    version: string
                                            version: string
                                          path: string
                                          plugin:
                                            envs:
                                                - name: string
                                                  value: string
                                            name: string
                                          ref: string
                                          repoUrl: string
                                          targetRevision: string
                                    syncPolicy:
                                        automated:
                                            allowEmpty: false
                                            prune: false
                                            selfHeal: false
                                        managedNamespaceMetadata:
                                            annotations:
                                                string: string
                                            labels:
                                                string: string
                                        retry:
                                            backoff:
                                                duration: string
                                                factor: string
                                                maxDuration: string
                                            limit: string
                                        syncOptions:
                                            - string
                          matrices:
                            - generators:
                                - clusterDecisionResources:
                                    - configMapRef: string
                                      labelSelector:
                                        matchExpressions:
                                            - key: string
                                              operator: string
                                              values:
                                                - string
                                        matchLabels:
                                            string: string
                                      name: string
                                      requeueAfterSeconds: string
                                      template:
                                        metadata:
                                            annotations:
                                                string: string
                                            finalizers:
                                                - string
                                            labels:
                                                string: string
                                            name: string
                                            namespace: string
                                        spec:
                                            destination:
                                                name: string
                                                namespace: string
                                                server: string
                                            ignoreDifferences:
                                                - group: string
                                                  jqPathExpressions:
                                                    - string
                                                  jsonPointers:
                                                    - string
                                                  kind: string
                                                  managedFieldsManagers:
                                                    - string
                                                  name: string
                                                  namespace: string
                                            infos:
                                                - name: string
                                                  value: string
                                            project: string
                                            revisionHistoryLimit: 0
                                            sources:
                                                - chart: string
                                                  directory:
                                                    exclude: string
                                                    include: string
                                                    jsonnet:
                                                        extVars:
                                                            - code: false
                                                              name: string
                                                              value: string
                                                        libs:
                                                            - string
                                                        tlas:
                                                            - code: false
                                                              name: string
                                                              value: string
                                                    recurse: false
                                                  helm:
                                                    fileParameters:
                                                        - name: string
                                                          path: string
                                                    ignoreMissingValueFiles: false
                                                    parameters:
                                                        - forceString: false
                                                          name: string
                                                          value: string
                                                    passCredentials: false
                                                    releaseName: string
                                                    skipCrds: false
                                                    valueFiles:
                                                        - string
                                                    values: string
                                                    version: string
                                                  kustomize:
                                                    commonAnnotations:
                                                        string: string
                                                    commonLabels:
                                                        string: string
                                                    images:
                                                        - string
                                                    namePrefix: string
                                                    nameSuffix: string
                                                    patches:
                                                        - options:
                                                            string: false
                                                          patch: string
                                                          path: string
                                                          target:
                                                            annotationSelector: string
                                                            group: string
                                                            kind: string
                                                            labelSelector: string
                                                            name: string
                                                            namespace: string
                                                            version: string
                                                    version: string
                                                  path: string
                                                  plugin:
                                                    envs:
                                                        - name: string
                                                          value: string
                                                    name: string
                                                  ref: string
                                                  repoUrl: string
                                                  targetRevision: string
                                            syncPolicy:
                                                automated:
                                                    allowEmpty: false
                                                    prune: false
                                                    selfHeal: false
                                                managedNamespaceMetadata:
                                                    annotations:
                                                        string: string
                                                    labels:
                                                        string: string
                                                retry:
                                                    backoff:
                                                        duration: string
                                                        factor: string
                                                        maxDuration: string
                                                    limit: string
                                                syncOptions:
                                                    - string
                                      values:
                                        string: string
                                  clusters:
                                    - enabled: false
                                      selector:
                                        matchExpressions:
                                            - key: string
                                              operator: string
                                              values:
                                                - string
                                        matchLabels:
                                            string: string
                                      template:
                                        metadata:
                                            annotations:
                                                string: string
                                            finalizers:
                                                - string
                                            labels:
                                                string: string
                                            name: string
                                            namespace: string
                                        spec:
                                            destination:
                                                name: string
                                                namespace: string
                                                server: string
                                            ignoreDifferences:
                                                - group: string
                                                  jqPathExpressions:
                                                    - string
                                                  jsonPointers:
                                                    - string
                                                  kind: string
                                                  managedFieldsManagers:
                                                    - string
                                                  name: string
                                                  namespace: string
                                            infos:
                                                - name: string
                                                  value: string
                                            project: string
                                            revisionHistoryLimit: 0
                                            sources:
                                                - chart: string
                                                  directory:
                                                    exclude: string
                                                    include: string
                                                    jsonnet:
                                                        extVars:
                                                            - code: false
                                                              name: string
                                                              value: string
                                                        libs:
                                                            - string
                                                        tlas:
                                                            - code: false
                                                              name: string
                                                              value: string
                                                    recurse: false
                                                  helm:
                                                    fileParameters:
                                                        - name: string
                                                          path: string
                                                    ignoreMissingValueFiles: false
                                                    parameters:
                                                        - forceString: false
                                                          name: string
                                                          value: string
                                                    passCredentials: false
                                                    releaseName: string
                                                    skipCrds: false
                                                    valueFiles:
                                                        - string
                                                    values: string
                                                    version: string
                                                  kustomize:
                                                    commonAnnotations:
                                                        string: string
                                                    commonLabels:
                                                        string: string
                                                    images:
                                                        - string
                                                    namePrefix: string
                                                    nameSuffix: string
                                                    patches:
                                                        - options:
                                                            string: false
                                                          patch: string
                                                          path: string
                                                          target:
                                                            annotationSelector: string
                                                            group: string
                                                            kind: string
                                                            labelSelector: string
                                                            name: string
                                                            namespace: string
                                                            version: string
                                                    version: string
                                                  path: string
                                                  plugin:
                                                    envs:
                                                        - name: string
                                                          value: string
                                                    name: string
                                                  ref: string
                                                  repoUrl: string
                                                  targetRevision: string
                                            syncPolicy:
                                                automated:
                                                    allowEmpty: false
                                                    prune: false
                                                    selfHeal: false
                                                managedNamespaceMetadata:
                                                    annotations:
                                                        string: string
                                                    labels:
                                                        string: string
                                                retry:
                                                    backoff:
                                                        duration: string
                                                        factor: string
                                                        maxDuration: string
                                                    limit: string
                                                syncOptions:
                                                    - string
                                      values:
                                        string: string
                                  gits:
                                    - directories:
                                        - exclude: false
                                          path: string
                                      files:
                                        - path: string
                                      pathParamPrefix: string
                                      repoUrl: string
                                      revision: string
                                      template:
                                        metadata:
                                            annotations:
                                                string: string
                                            finalizers:
                                                - string
                                            labels:
                                                string: string
                                            name: string
                                            namespace: string
                                        spec:
                                            destination:
                                                name: string
                                                namespace: string
                                                server: string
                                            ignoreDifferences:
                                                - group: string
                                                  jqPathExpressions:
                                                    - string
                                                  jsonPointers:
                                                    - string
                                                  kind: string
                                                  managedFieldsManagers:
                                                    - string
                                                  name: string
                                                  namespace: string
                                            infos:
                                                - name: string
                                                  value: string
                                            project: string
                                            revisionHistoryLimit: 0
                                            sources:
                                                - chart: string
                                                  directory:
                                                    exclude: string
                                                    include: string
                                                    jsonnet:
                                                        extVars:
                                                            - code: false
                                                              name: string
                                                              value: string
                                                        libs:
                                                            - string
                                                        tlas:
                                                            - code: false
                                                              name: string
                                                              value: string
                                                    recurse: false
                                                  helm:
                                                    fileParameters:
                                                        - name: string
                                                          path: string
                                                    ignoreMissingValueFiles: false
                                                    parameters:
                                                        - forceString: false
                                                          name: string
                                                          value: string
                                                    passCredentials: false
                                                    releaseName: string
                                                    skipCrds: false
                                                    valueFiles:
                                                        - string
                                                    values: string
                                                    version: string
                                                  kustomize:
                                                    commonAnnotations:
                                                        string: string
                                                    commonLabels:
                                                        string: string
                                                    images:
                                                        - string
                                                    namePrefix: string
                                                    nameSuffix: string
                                                    patches:
                                                        - options:
                                                            string: false
                                                          patch: string
                                                          path: string
                                                          target:
                                                            annotationSelector: string
                                                            group: string
                                                            kind: string
                                                            labelSelector: string
                                                            name: string
                                                            namespace: string
                                                            version: string
                                                    version: string
                                                  path: string
                                                  plugin:
                                                    envs:
                                                        - name: string
                                                          value: string
                                                    name: string
                                                  ref: string
                                                  repoUrl: string
                                                  targetRevision: string
                                            syncPolicy:
                                                automated:
                                                    allowEmpty: false
                                                    prune: false
                                                    selfHeal: false
                                                managedNamespaceMetadata:
                                                    annotations:
                                                        string: string
                                                    labels:
                                                        string: string
                                                retry:
                                                    backoff:
                                                        duration: string
                                                        factor: string
                                                        maxDuration: string
                                                    limit: string
                                                syncOptions:
                                                    - string
                                      values:
                                        string: string
                                  lists:
                                    - elements:
                                        - string: string
                                      template:
                                        metadata:
                                            annotations:
                                                string: string
                                            finalizers:
                                                - string
                                            labels:
                                                string: string
                                            name: string
                                            namespace: string
                                        spec:
                                            destination:
                                                name: string
                                                namespace: string
                                                server: string
                                            ignoreDifferences:
                                                - group: string
                                                  jqPathExpressions:
                                                    - string
                                                  jsonPointers:
                                                    - string
                                                  kind: string
                                                  managedFieldsManagers:
                                                    - string
                                                  name: string
                                                  namespace: string
                                            infos:
                                                - name: string
                                                  value: string
                                            project: string
                                            revisionHistoryLimit: 0
                                            sources:
                                                - chart: string
                                                  directory:
                                                    exclude: string
                                                    include: string
                                                    jsonnet:
                                                        extVars:
                                                            - code: false
                                                              name: string
                                                              value: string
                                                        libs:
                                                            - string
                                                        tlas:
                                                            - code: false
                                                              name: string
                                                              value: string
                                                    recurse: false
                                                  helm:
                                                    fileParameters:
                                                        - name: string
                                                          path: string
                                                    ignoreMissingValueFiles: false
                                                    parameters:
                                                        - forceString: false
                                                          name: string
                                                          value: string
                                                    passCredentials: false
                                                    releaseName: string
                                                    skipCrds: false
                                                    valueFiles:
                                                        - string
                                                    values: string
                                                    version: string
                                                  kustomize:
                                                    commonAnnotations:
                                                        string: string
                                                    commonLabels:
                                                        string: string
                                                    images:
                                                        - string
                                                    namePrefix: string
                                                    nameSuffix: string
                                                    patches:
                                                        - options:
                                                            string: false
                                                          patch: string
                                                          path: string
                                                          target:
                                                            annotationSelector: string
                                                            group: string
                                                            kind: string
                                                            labelSelector: string
                                                            name: string
                                                            namespace: string
                                                            version: string
                                                    version: string
                                                  path: string
                                                  plugin:
                                                    envs:
                                                        - name: string
                                                          value: string
                                                    name: string
                                                  ref: string
                                                  repoUrl: string
                                                  targetRevision: string
                                            syncPolicy:
                                                automated:
                                                    allowEmpty: false
                                                    prune: false
                                                    selfHeal: false
                                                managedNamespaceMetadata:
                                                    annotations:
                                                        string: string
                                                    labels:
                                                        string: string
                                                retry:
                                                    backoff:
                                                        duration: string
                                                        factor: string
                                                        maxDuration: string
                                                    limit: string
                                                syncOptions:
                                                    - string
                                  pullRequests:
                                    - bitbucketServer:
                                        api: string
                                        basicAuth:
                                            passwordRef:
                                                key: string
                                                secretName: string
                                            username: string
                                        project: string
                                        repo: string
                                      filters:
                                        - branchMatch: string
                                      gitea:
                                        api: string
                                        insecure: false
                                        owner: string
                                        repo: string
                                        tokenRef:
                                            key: string
                                            secretName: string
                                      github:
                                        api: string
                                        appSecretName: string
                                        labels:
                                            - string
                                        owner: string
                                        repo: string
                                        tokenRef:
                                            key: string
                                            secretName: string
                                      gitlab:
                                        api: string
                                        labels:
                                            - string
                                        project: string
                                        pullRequestState: string
                                        tokenRef:
                                            key: string
                                            secretName: string
                                      requeueAfterSeconds: string
                                      template:
                                        metadata:
                                            annotations:
                                                string: string
                                            finalizers:
                                                - string
                                            labels:
                                                string: string
                                            name: string
                                            namespace: string
                                        spec:
                                            destination:
                                                name: string
                                                namespace: string
                                                server: string
                                            ignoreDifferences:
                                                - group: string
                                                  jqPathExpressions:
                                                    - string
                                                  jsonPointers:
                                                    - string
                                                  kind: string
                                                  managedFieldsManagers:
                                                    - string
                                                  name: string
                                                  namespace: string
                                            infos:
                                                - name: string
                                                  value: string
                                            project: string
                                            revisionHistoryLimit: 0
                                            sources:
                                                - chart: string
                                                  directory:
                                                    exclude: string
                                                    include: string
                                                    jsonnet:
                                                        extVars:
                                                            - code: false
                                                              name: string
                                                              value: string
                                                        libs:
                                                            - string
                                                        tlas:
                                                            - code: false
                                                              name: string
                                                              value: string
                                                    recurse: false
                                                  helm:
                                                    fileParameters:
                                                        - name: string
                                                          path: string
                                                    ignoreMissingValueFiles: false
                                                    parameters:
                                                        - forceString: false
                                                          name: string
                                                          value: string
                                                    passCredentials: false
                                                    releaseName: string
                                                    skipCrds: false
                                                    valueFiles:
                                                        - string
                                                    values: string
                                                    version: string
                                                  kustomize:
                                                    commonAnnotations:
                                                        string: string
                                                    commonLabels:
                                                        string: string
                                                    images:
                                                        - string
                                                    namePrefix: string
                                                    nameSuffix: string
                                                    patches:
                                                        - options:
                                                            string: false
                                                          patch: string
                                                          path: string
                                                          target:
                                                            annotationSelector: string
                                                            group: string
                                                            kind: string
                                                            labelSelector: string
                                                            name: string
                                                            namespace: string
                                                            version: string
                                                    version: string
                                                  path: string
                                                  plugin:
                                                    envs:
                                                        - name: string
                                                          value: string
                                                    name: string
                                                  ref: string
                                                  repoUrl: string
                                                  targetRevision: string
                                            syncPolicy:
                                                automated:
                                                    allowEmpty: false
                                                    prune: false
                                                    selfHeal: false
                                                managedNamespaceMetadata:
                                                    annotations:
                                                        string: string
                                                    labels:
                                                        string: string
                                                retry:
                                                    backoff:
                                                        duration: string
                                                        factor: string
                                                        maxDuration: string
                                                    limit: string
                                                syncOptions:
                                                    - string
                                  scmProviders:
                                    - azureDevops:
                                        accessTokenRef:
                                            key: string
                                            secretName: string
                                        allBranches: false
                                        api: string
                                        organization: string
                                        teamProject: string
                                      bitbucketCloud:
                                        allBranches: false
                                        appPasswordRef:
                                            key: string
                                            secretName: string
                                        owner: string
                                        user: string
                                      bitbucketServer:
                                        allBranches: false
                                        api: string
                                        basicAuth:
                                            passwordRef:
                                                key: string
                                                secretName: string
                                            username: string
                                        project: string
                                      cloneProtocol: string
                                      filters:
                                        - branchMatch: string
                                          labelMatch: string
                                          pathsDoNotExists:
                                            - string
                                          pathsExists:
                                            - string
                                          repositoryMatch: string
                                      gitea:
                                        allBranches: false
                                        api: string
                                        insecure: false
                                        owner: string
                                        tokenRef:
                                            key: string
                                            secretName: string
                                      github:
                                        allBranches: false
                                        api: string
                                        appSecretName: string
                                        organization: string
                                        tokenRef:
                                            key: string
                                            secretName: string
                                      gitlab:
                                        allBranches: false
                                        api: string
                                        group: string
                                        includeSubgroups: false
                                        tokenRef:
                                            key: string
                                            secretName: string
                                      requeueAfterSeconds: string
                                      template:
                                        metadata:
                                            annotations:
                                                string: string
                                            finalizers:
                                                - string
                                            labels:
                                                string: string
                                            name: string
                                            namespace: string
                                        spec:
                                            destination:
                                                name: string
                                                namespace: string
                                                server: string
                                            ignoreDifferences:
                                                - group: string
                                                  jqPathExpressions:
                                                    - string
                                                  jsonPointers:
                                                    - string
                                                  kind: string
                                                  managedFieldsManagers:
                                                    - string
                                                  name: string
                                                  namespace: string
                                            infos:
                                                - name: string
                                                  value: string
                                            project: string
                                            revisionHistoryLimit: 0
                                            sources:
                                                - chart: string
                                                  directory:
                                                    exclude: string
                                                    include: string
                                                    jsonnet:
                                                        extVars:
                                                            - code: false
                                                              name: string
                                                              value: string
                                                        libs:
                                                            - string
                                                        tlas:
                                                            - code: false
                                                              name: string
                                                              value: string
                                                    recurse: false
                                                  helm:
                                                    fileParameters:
                                                        - name: string
                                                          path: string
                                                    ignoreMissingValueFiles: false
                                                    parameters:
                                                        - forceString: false
                                                          name: string
                                                          value: string
                                                    passCredentials: false
                                                    releaseName: string
                                                    skipCrds: false
                                                    valueFiles:
                                                        - string
                                                    values: string
                                                    version: string
                                                  kustomize:
                                                    commonAnnotations:
                                                        string: string
                                                    commonLabels:
                                                        string: string
                                                    images:
                                                        - string
                                                    namePrefix: string
                                                    nameSuffix: string
                                                    patches:
                                                        - options:
                                                            string: false
                                                          patch: string
                                                          path: string
                                                          target:
                                                            annotationSelector: string
                                                            group: string
                                                            kind: string
                                                            labelSelector: string
                                                            name: string
                                                            namespace: string
                                                            version: string
                                                    version: string
                                                  path: string
                                                  plugin:
                                                    envs:
                                                        - name: string
                                                          value: string
                                                    name: string
                                                  ref: string
                                                  repoUrl: string
                                                  targetRevision: string
                                            syncPolicy:
                                                automated:
                                                    allowEmpty: false
                                                    prune: false
                                                    selfHeal: false
                                                managedNamespaceMetadata:
                                                    annotations:
                                                        string: string
                                                    labels:
                                                        string: string
                                                retry:
                                                    backoff:
                                                        duration: string
                                                        factor: string
                                                        maxDuration: string
                                                    limit: string
                                                syncOptions:
                                                    - string
                                  selector:
                                    matchExpressions:
                                        - key: string
                                          operator: string
                                          values:
                                            - string
                                    matchLabels:
                                        string: string
                              template:
                                metadata:
                                    annotations:
                                        string: string
                                    finalizers:
                                        - string
                                    labels:
                                        string: string
                                    name: string
                                    namespace: string
                                spec:
                                    destination:
                                        name: string
                                        namespace: string
                                        server: string
                                    ignoreDifferences:
                                        - group: string
                                          jqPathExpressions:
                                            - string
                                          jsonPointers:
                                            - string
                                          kind: string
                                          managedFieldsManagers:
                                            - string
                                          name: string
                                          namespace: string
                                    infos:
                                        - name: string
                                          value: string
                                    project: string
                                    revisionHistoryLimit: 0
                                    sources:
                                        - chart: string
                                          directory:
                                            exclude: string
                                            include: string
                                            jsonnet:
                                                extVars:
                                                    - code: false
                                                      name: string
                                                      value: string
                                                libs:
                                                    - string
                                                tlas:
                                                    - code: false
                                                      name: string
                                                      value: string
                                            recurse: false
                                          helm:
                                            fileParameters:
                                                - name: string
                                                  path: string
                                            ignoreMissingValueFiles: false
                                            parameters:
                                                - forceString: false
                                                  name: string
                                                  value: string
                                            passCredentials: false
                                            releaseName: string
                                            skipCrds: false
                                            valueFiles:
                                                - string
                                            values: string
                                            version: string
                                          kustomize:
                                            commonAnnotations:
                                                string: string
                                            commonLabels:
                                                string: string
                                            images:
                                                - string
                                            namePrefix: string
                                            nameSuffix: string
                                            patches:
                                                - options:
                                                    string: false
                                                  patch: string
                                                  path: string
                                                  target:
                                                    annotationSelector: string
                                                    group: string
                                                    kind: string
                                                    labelSelector: string
                                                    name: string
                                                    namespace: string
                                                    version: string
                                            version: string
                                          path: string
                                          plugin:
                                            envs:
                                                - name: string
                                                  value: string
                                            name: string
                                          ref: string
                                          repoUrl: string
                                          targetRevision: string
                                    syncPolicy:
                                        automated:
                                            allowEmpty: false
                                            prune: false
                                            selfHeal: false
                                        managedNamespaceMetadata:
                                            annotations:
                                                string: string
                                            labels:
                                                string: string
                                        retry:
                                            backoff:
                                                duration: string
                                                factor: string
                                                maxDuration: string
                                            limit: string
                                        syncOptions:
                                            - string
                          merges:
                            - generators:
                                - clusterDecisionResources:
                                    - configMapRef: string
                                      labelSelector:
                                        matchExpressions:
                                            - key: string
                                              operator: string
                                              values:
                                                - string
                                        matchLabels:
                                            string: string
                                      name: string
                                      requeueAfterSeconds: string
                                      template:
                                        metadata:
                                            annotations:
                                                string: string
                                            finalizers:
                                                - string
                                            labels:
                                                string: string
                                            name: string
                                            namespace: string
                                        spec:
                                            destination:
                                                name: string
                                                namespace: string
                                                server: string
                                            ignoreDifferences:
                                                - group: string
                                                  jqPathExpressions:
                                                    - string
                                                  jsonPointers:
                                                    - string
                                                  kind: string
                                                  managedFieldsManagers:
                                                    - string
                                                  name: string
                                                  namespace: string
                                            infos:
                                                - name: string
                                                  value: string
                                            project: string
                                            revisionHistoryLimit: 0
                                            sources:
                                                - chart: string
                                                  directory:
                                                    exclude: string
                                                    include: string
                                                    jsonnet:
                                                        extVars:
                                                            - code: false
                                                              name: string
                                                              value: string
                                                        libs:
                                                            - string
                                                        tlas:
                                                            - code: false
                                                              name: string
                                                              value: string
                                                    recurse: false
                                                  helm:
                                                    fileParameters:
                                                        - name: string
                                                          path: string
                                                    ignoreMissingValueFiles: false
                                                    parameters:
                                                        - forceString: false
                                                          name: string
                                                          value: string
                                                    passCredentials: false
                                                    releaseName: string
                                                    skipCrds: false
                                                    valueFiles:
                                                        - string
                                                    values: string
                                                    version: string
                                                  kustomize:
                                                    commonAnnotations:
                                                        string: string
                                                    commonLabels:
                                                        string: string
                                                    images:
                                                        - string
                                                    namePrefix: string
                                                    nameSuffix: string
                                                    patches:
                                                        - options:
                                                            string: false
                                                          patch: string
                                                          path: string
                                                          target:
                                                            annotationSelector: string
                                                            group: string
                                                            kind: string
                                                            labelSelector: string
                                                            name: string
                                                            namespace: string
                                                            version: string
                                                    version: string
                                                  path: string
                                                  plugin:
                                                    envs:
                                                        - name: string
                                                          value: string
                                                    name: string
                                                  ref: string
                                                  repoUrl: string
                                                  targetRevision: string
                                            syncPolicy:
                                                automated:
                                                    allowEmpty: false
                                                    prune: false
                                                    selfHeal: false
                                                managedNamespaceMetadata:
                                                    annotations:
                                                        string: string
                                                    labels:
                                                        string: string
                                                retry:
                                                    backoff:
                                                        duration: string
                                                        factor: string
                                                        maxDuration: string
                                                    limit: string
                                                syncOptions:
                                                    - string
                                      values:
                                        string: string
                                  clusters:
                                    - enabled: false
                                      selector:
                                        matchExpressions:
                                            - key: string
                                              operator: string
                                              values:
                                                - string
                                        matchLabels:
                                            string: string
                                      template:
                                        metadata:
                                            annotations:
                                                string: string
                                            finalizers:
                                                - string
                                            labels:
                                                string: string
                                            name: string
                                            namespace: string
                                        spec:
                                            destination:
                                                name: string
                                                namespace: string
                                                server: string
                                            ignoreDifferences:
                                                - group: string
                                                  jqPathExpressions:
                                                    - string
                                                  jsonPointers:
                                                    - string
                                                  kind: string
                                                  managedFieldsManagers:
                                                    - string
                                                  name: string
                                                  namespace: string
                                            infos:
                                                - name: string
                                                  value: string
                                            project: string
                                            revisionHistoryLimit: 0
                                            sources:
                                                - chart: string
                                                  directory:
                                                    exclude: string
                                                    include: string
                                                    jsonnet:
                                                        extVars:
                                                            - code: false
                                                              name: string
                                                              value: string
                                                        libs:
                                                            - string
                                                        tlas:
                                                            - code: false
                                                              name: string
                                                              value: string
                                                    recurse: false
                                                  helm:
                                                    fileParameters:
                                                        - name: string
                                                          path: string
                                                    ignoreMissingValueFiles: false
                                                    parameters:
                                                        - forceString: false
                                                          name: string
                                                          value: string
                                                    passCredentials: false
                                                    releaseName: string
                                                    skipCrds: false
                                                    valueFiles:
                                                        - string
                                                    values: string
                                                    version: string
                                                  kustomize:
                                                    commonAnnotations:
                                                        string: string
                                                    commonLabels:
                                                        string: string
                                                    images:
                                                        - string
                                                    namePrefix: string
                                                    nameSuffix: string
                                                    patches:
                                                        - options:
                                                            string: false
                                                          patch: string
                                                          path: string
                                                          target:
                                                            annotationSelector: string
                                                            group: string
                                                            kind: string
                                                            labelSelector: string
                                                            name: string
                                                            namespace: string
                                                            version: string
                                                    version: string
                                                  path: string
                                                  plugin:
                                                    envs:
                                                        - name: string
                                                          value: string
                                                    name: string
                                                  ref: string
                                                  repoUrl: string
                                                  targetRevision: string
                                            syncPolicy:
                                                automated:
                                                    allowEmpty: false
                                                    prune: false
                                                    selfHeal: false
                                                managedNamespaceMetadata:
                                                    annotations:
                                                        string: string
                                                    labels:
                                                        string: string
                                                retry:
                                                    backoff:
                                                        duration: string
                                                        factor: string
                                                        maxDuration: string
                                                    limit: string
                                                syncOptions:
                                                    - string
                                      values:
                                        string: string
                                  gits:
                                    - directories:
                                        - exclude: false
                                          path: string
                                      files:
                                        - path: string
                                      pathParamPrefix: string
                                      repoUrl: string
                                      revision: string
                                      template:
                                        metadata:
                                            annotations:
                                                string: string
                                            finalizers:
                                                - string
                                            labels:
                                                string: string
                                            name: string
                                            namespace: string
                                        spec:
                                            destination:
                                                name: string
                                                namespace: string
                                                server: string
                                            ignoreDifferences:
                                                - group: string
                                                  jqPathExpressions:
                                                    - string
                                                  jsonPointers:
                                                    - string
                                                  kind: string
                                                  managedFieldsManagers:
                                                    - string
                                                  name: string
                                                  namespace: string
                                            infos:
                                                - name: string
                                                  value: string
                                            project: string
                                            revisionHistoryLimit: 0
                                            sources:
                                                - chart: string
                                                  directory:
                                                    exclude: string
                                                    include: string
                                                    jsonnet:
                                                        extVars:
                                                            - code: false
                                                              name: string
                                                              value: string
                                                        libs:
                                                            - string
                                                        tlas:
                                                            - code: false
                                                              name: string
                                                              value: string
                                                    recurse: false
                                                  helm:
                                                    fileParameters:
                                                        - name: string
                                                          path: string
                                                    ignoreMissingValueFiles: false
                                                    parameters:
                                                        - forceString: false
                                                          name: string
                                                          value: string
                                                    passCredentials: false
                                                    releaseName: string
                                                    skipCrds: false
                                                    valueFiles:
                                                        - string
                                                    values: string
                                                    version: string
                                                  kustomize:
                                                    commonAnnotations:
                                                        string: string
                                                    commonLabels:
                                                        string: string
                                                    images:
                                                        - string
                                                    namePrefix: string
                                                    nameSuffix: string
                                                    patches:
                                                        - options:
                                                            string: false
                                                          patch: string
                                                          path: string
                                                          target:
                                                            annotationSelector: string
                                                            group: string
                                                            kind: string
                                                            labelSelector: string
                                                            name: string
                                                            namespace: string
                                                            version: string
                                                    version: string
                                                  path: string
                                                  plugin:
                                                    envs:
                                                        - name: string
                                                          value: string
                                                    name: string
                                                  ref: string
                                                  repoUrl: string
                                                  targetRevision: string
                                            syncPolicy:
                                                automated:
                                                    allowEmpty: false
                                                    prune: false
                                                    selfHeal: false
                                                managedNamespaceMetadata:
                                                    annotations:
                                                        string: string
                                                    labels:
                                                        string: string
                                                retry:
                                                    backoff:
                                                        duration: string
                                                        factor: string
                                                        maxDuration: string
                                                    limit: string
                                                syncOptions:
                                                    - string
                                      values:
                                        string: string
                                  lists:
                                    - elements:
                                        - string: string
                                      template:
                                        metadata:
                                            annotations:
                                                string: string
                                            finalizers:
                                                - string
                                            labels:
                                                string: string
                                            name: string
                                            namespace: string
                                        spec:
                                            destination:
                                                name: string
                                                namespace: string
                                                server: string
                                            ignoreDifferences:
                                                - group: string
                                                  jqPathExpressions:
                                                    - string
                                                  jsonPointers:
                                                    - string
                                                  kind: string
                                                  managedFieldsManagers:
                                                    - string
                                                  name: string
                                                  namespace: string
                                            infos:
                                                - name: string
                                                  value: string
                                            project: string
                                            revisionHistoryLimit: 0
                                            sources:
                                                - chart: string
                                                  directory:
                                                    exclude: string
                                                    include: string
                                                    jsonnet:
                                                        extVars:
                                                            - code: false
                                                              name: string
                                                              value: string
                                                        libs:
                                                            - string
                                                        tlas:
                                                            - code: false
                                                              name: string
                                                              value: string
                                                    recurse: false
                                                  helm:
                                                    fileParameters:
                                                        - name: string
                                                          path: string
                                                    ignoreMissingValueFiles: false
                                                    parameters:
                                                        - forceString: false
                                                          name: string
                                                          value: string
                                                    passCredentials: false
                                                    releaseName: string
                                                    skipCrds: false
                                                    valueFiles:
                                                        - string
                                                    values: string
                                                    version: string
                                                  kustomize:
                                                    commonAnnotations:
                                                        string: string
                                                    commonLabels:
                                                        string: string
                                                    images:
                                                        - string
                                                    namePrefix: string
                                                    nameSuffix: string
                                                    patches:
                                                        - options:
                                                            string: false
                                                          patch: string
                                                          path: string
                                                          target:
                                                            annotationSelector: string
                                                            group: string
                                                            kind: string
                                                            labelSelector: string
                                                            name: string
                                                            namespace: string
                                                            version: string
                                                    version: string
                                                  path: string
                                                  plugin:
                                                    envs:
                                                        - name: string
                                                          value: string
                                                    name: string
                                                  ref: string
                                                  repoUrl: string
                                                  targetRevision: string
                                            syncPolicy:
                                                automated:
                                                    allowEmpty: false
                                                    prune: false
                                                    selfHeal: false
                                                managedNamespaceMetadata:
                                                    annotations:
                                                        string: string
                                                    labels:
                                                        string: string
                                                retry:
                                                    backoff:
                                                        duration: string
                                                        factor: string
                                                        maxDuration: string
                                                    limit: string
                                                syncOptions:
                                                    - string
                                  pullRequests:
                                    - bitbucketServer:
                                        api: string
                                        basicAuth:
                                            passwordRef:
                                                key: string
                                                secretName: string
                                            username: string
                                        project: string
                                        repo: string
                                      filters:
                                        - branchMatch: string
                                      gitea:
                                        api: string
                                        insecure: false
                                        owner: string
                                        repo: string
                                        tokenRef:
                                            key: string
                                            secretName: string
                                      github:
                                        api: string
                                        appSecretName: string
                                        labels:
                                            - string
                                        owner: string
                                        repo: string
                                        tokenRef:
                                            key: string
                                            secretName: string
                                      gitlab:
                                        api: string
                                        labels:
                                            - string
                                        project: string
                                        pullRequestState: string
                                        tokenRef:
                                            key: string
                                            secretName: string
                                      requeueAfterSeconds: string
                                      template:
                                        metadata:
                                            annotations:
                                                string: string
                                            finalizers:
                                                - string
                                            labels:
                                                string: string
                                            name: string
                                            namespace: string
                                        spec:
                                            destination:
                                                name: string
                                                namespace: string
                                                server: string
                                            ignoreDifferences:
                                                - group: string
                                                  jqPathExpressions:
                                                    - string
                                                  jsonPointers:
                                                    - string
                                                  kind: string
                                                  managedFieldsManagers:
                                                    - string
                                                  name: string
                                                  namespace: string
                                            infos:
                                                - name: string
                                                  value: string
                                            project: string
                                            revisionHistoryLimit: 0
                                            sources:
                                                - chart: string
                                                  directory:
                                                    exclude: string
                                                    include: string
                                                    jsonnet:
                                                        extVars:
                                                            - code: false
                                                              name: string
                                                              value: string
                                                        libs:
                                                            - string
                                                        tlas:
                                                            - code: false
                                                              name: string
                                                              value: string
                                                    recurse: false
                                                  helm:
                                                    fileParameters:
                                                        - name: string
                                                          path: string
                                                    ignoreMissingValueFiles: false
                                                    parameters:
                                                        - forceString: false
                                                          name: string
                                                          value: string
                                                    passCredentials: false
                                                    releaseName: string
                                                    skipCrds: false
                                                    valueFiles:
                                                        - string
                                                    values: string
                                                    version: string
                                                  kustomize:
                                                    commonAnnotations:
                                                        string: string
                                                    commonLabels:
                                                        string: string
                                                    images:
                                                        - string
                                                    namePrefix: string
                                                    nameSuffix: string
                                                    patches:
                                                        - options:
                                                            string: false
                                                          patch: string
                                                          path: string
                                                          target:
                                                            annotationSelector: string
                                                            group: string
                                                            kind: string
                                                            labelSelector: string
                                                            name: string
                                                            namespace: string
                                                            version: string
                                                    version: string
                                                  path: string
                                                  plugin:
                                                    envs:
                                                        - name: string
                                                          value: string
                                                    name: string
                                                  ref: string
                                                  repoUrl: string
                                                  targetRevision: string
                                            syncPolicy:
                                                automated:
                                                    allowEmpty: false
                                                    prune: false
                                                    selfHeal: false
                                                managedNamespaceMetadata:
                                                    annotations:
                                                        string: string
                                                    labels:
                                                        string: string
                                                retry:
                                                    backoff:
                                                        duration: string
                                                        factor: string
                                                        maxDuration: string
                                                    limit: string
                                                syncOptions:
                                                    - string
                                  scmProviders:
                                    - azureDevops:
                                        accessTokenRef:
                                            key: string
                                            secretName: string
                                        allBranches: false
                                        api: string
                                        organization: string
                                        teamProject: string
                                      bitbucketCloud:
                                        allBranches: false
                                        appPasswordRef:
                                            key: string
                                            secretName: string
                                        owner: string
                                        user: string
                                      bitbucketServer:
                                        allBranches: false
                                        api: string
                                        basicAuth:
                                            passwordRef:
                                                key: string
                                                secretName: string
                                            username: string
                                        project: string
                                      cloneProtocol: string
                                      filters:
                                        - branchMatch: string
                                          labelMatch: string
                                          pathsDoNotExists:
                                            - string
                                          pathsExists:
                                            - string
                                          repositoryMatch: string
                                      gitea:
                                        allBranches: false
                                        api: string
                                        insecure: false
                                        owner: string
                                        tokenRef:
                                            key: string
                                            secretName: string
                                      github:
                                        allBranches: false
                                        api: string
                                        appSecretName: string
                                        organization: string
                                        tokenRef:
                                            key: string
                                            secretName: string
                                      gitlab:
                                        allBranches: false
                                        api: string
                                        group: string
                                        includeSubgroups: false
                                        tokenRef:
                                            key: string
                                            secretName: string
                                      requeueAfterSeconds: string
                                      template:
                                        metadata:
                                            annotations:
                                                string: string
                                            finalizers:
                                                - string
                                            labels:
                                                string: string
                                            name: string
                                            namespace: string
                                        spec:
                                            destination:
                                                name: string
                                                namespace: string
                                                server: string
                                            ignoreDifferences:
                                                - group: string
                                                  jqPathExpressions:
                                                    - string
                                                  jsonPointers:
                                                    - string
                                                  kind: string
                                                  managedFieldsManagers:
                                                    - string
                                                  name: string
                                                  namespace: string
                                            infos:
                                                - name: string
                                                  value: string
                                            project: string
                                            revisionHistoryLimit: 0
                                            sources:
                                                - chart: string
                                                  directory:
                                                    exclude: string
                                                    include: string
                                                    jsonnet:
                                                        extVars:
                                                            - code: false
                                                              name: string
                                                              value: string
                                                        libs:
                                                            - string
                                                        tlas:
                                                            - code: false
                                                              name: string
                                                              value: string
                                                    recurse: false
                                                  helm:
                                                    fileParameters:
                                                        - name: string
                                                          path: string
                                                    ignoreMissingValueFiles: false
                                                    parameters:
                                                        - forceString: false
                                                          name: string
                                                          value: string
                                                    passCredentials: false
                                                    releaseName: string
                                                    skipCrds: false
                                                    valueFiles:
                                                        - string
                                                    values: string
                                                    version: string
                                                  kustomize:
                                                    commonAnnotations:
                                                        string: string
                                                    commonLabels:
                                                        string: string
                                                    images:
                                                        - string
                                                    namePrefix: string
                                                    nameSuffix: string
                                                    patches:
                                                        - options:
                                                            string: false
                                                          patch: string
                                                          path: string
                                                          target:
                                                            annotationSelector: string
                                                            group: string
                                                            kind: string
                                                            labelSelector: string
                                                            name: string
                                                            namespace: string
                                                            version: string
                                                    version: string
                                                  path: string
                                                  plugin:
                                                    envs:
                                                        - name: string
                                                          value: string
                                                    name: string
                                                  ref: string
                                                  repoUrl: string
                                                  targetRevision: string
                                            syncPolicy:
                                                automated:
                                                    allowEmpty: false
                                                    prune: false
                                                    selfHeal: false
                                                managedNamespaceMetadata:
                                                    annotations:
                                                        string: string
                                                    labels:
                                                        string: string
                                                retry:
                                                    backoff:
                                                        duration: string
                                                        factor: string
                                                        maxDuration: string
                                                    limit: string
                                                syncOptions:
                                                    - string
                                  selector:
                                    matchExpressions:
                                        - key: string
                                          operator: string
                                          values:
                                            - string
                                    matchLabels:
                                        string: string
                              mergeKeys:
                                - string
                              template:
                                metadata:
                                    annotations:
                                        string: string
                                    finalizers:
                                        - string
                                    labels:
                                        string: string
                                    name: string
                                    namespace: string
                                spec:
                                    destination:
                                        name: string
                                        namespace: string
                                        server: string
                                    ignoreDifferences:
                                        - group: string
                                          jqPathExpressions:
                                            - string
                                          jsonPointers:
                                            - string
                                          kind: string
                                          managedFieldsManagers:
                                            - string
                                          name: string
                                          namespace: string
                                    infos:
                                        - name: string
                                          value: string
                                    project: string
                                    revisionHistoryLimit: 0
                                    sources:
                                        - chart: string
                                          directory:
                                            exclude: string
                                            include: string
                                            jsonnet:
                                                extVars:
                                                    - code: false
                                                      name: string
                                                      value: string
                                                libs:
                                                    - string
                                                tlas:
                                                    - code: false
                                                      name: string
                                                      value: string
                                            recurse: false
                                          helm:
                                            fileParameters:
                                                - name: string
                                                  path: string
                                            ignoreMissingValueFiles: false
                                            parameters:
                                                - forceString: false
                                                  name: string
                                                  value: string
                                            passCredentials: false
                                            releaseName: string
                                            skipCrds: false
                                            valueFiles:
                                                - string
                                            values: string
                                            version: string
                                          kustomize:
                                            commonAnnotations:
                                                string: string
                                            commonLabels:
                                                string: string
                                            images:
                                                - string
                                            namePrefix: string
                                            nameSuffix: string
                                            patches:
                                                - options:
                                                    string: false
                                                  patch: string
                                                  path: string
                                                  target:
                                                    annotationSelector: string
                                                    group: string
                                                    kind: string
                                                    labelSelector: string
                                                    name: string
                                                    namespace: string
                                                    version: string
                                            version: string
                                          path: string
                                          plugin:
                                            envs:
                                                - name: string
                                                  value: string
                                            name: string
                                          ref: string
                                          repoUrl: string
                                          targetRevision: string
                                    syncPolicy:
                                        automated:
                                            allowEmpty: false
                                            prune: false
                                            selfHeal: false
                                        managedNamespaceMetadata:
                                            annotations:
                                                string: string
                                            labels:
                                                string: string
                                        retry:
                                            backoff:
                                                duration: string
                                                factor: string
                                                maxDuration: string
                                            limit: string
                                        syncOptions:
                                            - string
                          pullRequests:
                            - bitbucketServer:
                                api: string
                                basicAuth:
                                    passwordRef:
                                        key: string
                                        secretName: string
                                    username: string
                                project: string
                                repo: string
                              filters:
                                - branchMatch: string
                              gitea:
                                api: string
                                insecure: false
                                owner: string
                                repo: string
                                tokenRef:
                                    key: string
                                    secretName: string
                              github:
                                api: string
                                appSecretName: string
                                labels:
                                    - string
                                owner: string
                                repo: string
                                tokenRef:
                                    key: string
                                    secretName: string
                              gitlab:
                                api: string
                                labels:
                                    - string
                                project: string
                                pullRequestState: string
                                tokenRef:
                                    key: string
                                    secretName: string
                              requeueAfterSeconds: string
                              template:
                                metadata:
                                    annotations:
                                        string: string
                                    finalizers:
                                        - string
                                    labels:
                                        string: string
                                    name: string
                                    namespace: string
                                spec:
                                    destination:
                                        name: string
                                        namespace: string
                                        server: string
                                    ignoreDifferences:
                                        - group: string
                                          jqPathExpressions:
                                            - string
                                          jsonPointers:
                                            - string
                                          kind: string
                                          managedFieldsManagers:
                                            - string
                                          name: string
                                          namespace: string
                                    infos:
                                        - name: string
                                          value: string
                                    project: string
                                    revisionHistoryLimit: 0
                                    sources:
                                        - chart: string
                                          directory:
                                            exclude: string
                                            include: string
                                            jsonnet:
                                                extVars:
                                                    - code: false
                                                      name: string
                                                      value: string
                                                libs:
                                                    - string
                                                tlas:
                                                    - code: false
                                                      name: string
                                                      value: string
                                            recurse: false
                                          helm:
                                            fileParameters:
                                                - name: string
                                                  path: string
                                            ignoreMissingValueFiles: false
                                            parameters:
                                                - forceString: false
                                                  name: string
                                                  value: string
                                            passCredentials: false
                                            releaseName: string
                                            skipCrds: false
                                            valueFiles:
                                                - string
                                            values: string
                                            version: string
                                          kustomize:
                                            commonAnnotations:
                                                string: string
                                            commonLabels:
                                                string: string
                                            images:
                                                - string
                                            namePrefix: string
                                            nameSuffix: string
                                            patches:
                                                - options:
                                                    string: false
                                                  patch: string
                                                  path: string
                                                  target:
                                                    annotationSelector: string
                                                    group: string
                                                    kind: string
                                                    labelSelector: string
                                                    name: string
                                                    namespace: string
                                                    version: string
                                            version: string
                                          path: string
                                          plugin:
                                            envs:
                                                - name: string
                                                  value: string
                                            name: string
                                          ref: string
                                          repoUrl: string
                                          targetRevision: string
                                    syncPolicy:
                                        automated:
                                            allowEmpty: false
                                            prune: false
                                            selfHeal: false
                                        managedNamespaceMetadata:
                                            annotations:
                                                string: string
                                            labels:
                                                string: string
                                        retry:
                                            backoff:
                                                duration: string
                                                factor: string
                                                maxDuration: string
                                            limit: string
                                        syncOptions:
                                            - string
                          scmProviders:
                            - azureDevops:
                                accessTokenRef:
                                    key: string
                                    secretName: string
                                allBranches: false
                                api: string
                                organization: string
                                teamProject: string
                              bitbucketCloud:
                                allBranches: false
                                appPasswordRef:
                                    key: string
                                    secretName: string
                                owner: string
                                user: string
                              bitbucketServer:
                                allBranches: false
                                api: string
                                basicAuth:
                                    passwordRef:
                                        key: string
                                        secretName: string
                                    username: string
                                project: string
                              cloneProtocol: string
                              filters:
                                - branchMatch: string
                                  labelMatch: string
                                  pathsDoNotExists:
                                    - string
                                  pathsExists:
                                    - string
                                  repositoryMatch: string
                              gitea:
                                allBranches: false
                                api: string
                                insecure: false
                                owner: string
                                tokenRef:
                                    key: string
                                    secretName: string
                              github:
                                allBranches: false
                                api: string
                                appSecretName: string
                                organization: string
                                tokenRef:
                                    key: string
                                    secretName: string
                              gitlab:
                                allBranches: false
                                api: string
                                group: string
                                includeSubgroups: false
                                tokenRef:
                                    key: string
                                    secretName: string
                              requeueAfterSeconds: string
                              template:
                                metadata:
                                    annotations:
                                        string: string
                                    finalizers:
                                        - string
                                    labels:
                                        string: string
                                    name: string
                                    namespace: string
                                spec:
                                    destination:
                                        name: string
                                        namespace: string
                                        server: string
                                    ignoreDifferences:
                                        - group: string
                                          jqPathExpressions:
                                            - string
                                          jsonPointers:
                                            - string
                                          kind: string
                                          managedFieldsManagers:
                                            - string
                                          name: string
                                          namespace: string
                                    infos:
                                        - name: string
                                          value: string
                                    project: string
                                    revisionHistoryLimit: 0
                                    sources:
                                        - chart: string
                                          directory:
                                            exclude: string
                                            include: string
                                            jsonnet:
                                                extVars:
                                                    - code: false
                                                      name: string
                                                      value: string
                                                libs:
                                                    - string
                                                tlas:
                                                    - code: false
                                                      name: string
                                                      value: string
                                            recurse: false
                                          helm:
                                            fileParameters:
                                                - name: string
                                                  path: string
                                            ignoreMissingValueFiles: false
                                            parameters:
                                                - forceString: false
                                                  name: string
                                                  value: string
                                            passCredentials: false
                                            releaseName: string
                                            skipCrds: false
                                            valueFiles:
                                                - string
                                            values: string
                                            version: string
                                          kustomize:
                                            commonAnnotations:
                                                string: string
                                            commonLabels:
                                                string: string
                                            images:
                                                - string
                                            namePrefix: string
                                            nameSuffix: string
                                            patches:
                                                - options:
                                                    string: false
                                                  patch: string
                                                  path: string
                                                  target:
                                                    annotationSelector: string
                                                    group: string
                                                    kind: string
                                                    labelSelector: string
                                                    name: string
                                                    namespace: string
                                                    version: string
                                            version: string
                                          path: string
                                          plugin:
                                            envs:
                                                - name: string
                                                  value: string
                                            name: string
                                          ref: string
                                          repoUrl: string
                                          targetRevision: string
                                    syncPolicy:
                                        automated:
                                            allowEmpty: false
                                            prune: false
                                            selfHeal: false
                                        managedNamespaceMetadata:
                                            annotations:
                                                string: string
                                            labels:
                                                string: string
                                        retry:
                                            backoff:
                                                duration: string
                                                factor: string
                                                maxDuration: string
                                            limit: string
                                        syncOptions:
                                            - string
                          selector:
                            matchExpressions:
                                - key: string
                                  operator: string
                                  values:
                                    - string
                            matchLabels:
                                string: string
                      template:
                        metadata:
                            annotations:
                                string: string
                            finalizers:
                                - string
                            labels:
                                string: string
                            name: string
                            namespace: string
                        spec:
                            destination:
                                name: string
                                namespace: string
                                server: string
                            ignoreDifferences:
                                - group: string
                                  jqPathExpressions:
                                    - string
                                  jsonPointers:
                                    - string
                                  kind: string
                                  managedFieldsManagers:
                                    - string
                                  name: string
                                  namespace: string
                            infos:
                                - name: string
                                  value: string
                            project: string
                            revisionHistoryLimit: 0
                            sources:
                                - chart: string
                                  directory:
                                    exclude: string
                                    include: string
                                    jsonnet:
                                        extVars:
                                            - code: false
                                              name: string
                                              value: string
                                        libs:
                                            - string
                                        tlas:
                                            - code: false
                                              name: string
                                              value: string
                                    recurse: false
                                  helm:
                                    fileParameters:
                                        - name: string
                                          path: string
                                    ignoreMissingValueFiles: false
                                    parameters:
                                        - forceString: false
                                          name: string
                                          value: string
                                    passCredentials: false
                                    releaseName: string
                                    skipCrds: false
                                    valueFiles:
                                        - string
                                    values: string
                                    version: string
                                  kustomize:
                                    commonAnnotations:
                                        string: string
                                    commonLabels:
                                        string: string
                                    images:
                                        - string
                                    namePrefix: string
                                    nameSuffix: string
                                    patches:
                                        - options:
                                            string: false
                                          patch: string
                                          path: string
                                          target:
                                            annotationSelector: string
                                            group: string
                                            kind: string
                                            labelSelector: string
                                            name: string
                                            namespace: string
                                            version: string
                                    version: string
                                  path: string
                                  plugin:
                                    envs:
                                        - name: string
                                          value: string
                                    name: string
                                  ref: string
                                  repoUrl: string
                                  targetRevision: string
                            syncPolicy:
                                automated:
                                    allowEmpty: false
                                    prune: false
                                    selfHeal: false
                                managedNamespaceMetadata:
                                    annotations:
                                        string: string
                                    labels:
                                        string: string
                                retry:
                                    backoff:
                                        duration: string
                                        factor: string
                                        maxDuration: string
                                    limit: string
                                syncOptions:
                                    - string
                  merges:
                    - generators:
                        - clusterDecisionResources:
                            - configMapRef: string
                              labelSelector:
                                matchExpressions:
                                    - key: string
                                      operator: string
                                      values:
                                        - string
                                matchLabels:
                                    string: string
                              name: string
                              requeueAfterSeconds: string
                              template:
                                metadata:
                                    annotations:
                                        string: string
                                    finalizers:
                                        - string
                                    labels:
                                        string: string
                                    name: string
                                    namespace: string
                                spec:
                                    destination:
                                        name: string
                                        namespace: string
                                        server: string
                                    ignoreDifferences:
                                        - group: string
                                          jqPathExpressions:
                                            - string
                                          jsonPointers:
                                            - string
                                          kind: string
                                          managedFieldsManagers:
                                            - string
                                          name: string
                                          namespace: string
                                    infos:
                                        - name: string
                                          value: string
                                    project: string
                                    revisionHistoryLimit: 0
                                    sources:
                                        - chart: string
                                          directory:
                                            exclude: string
                                            include: string
                                            jsonnet:
                                                extVars:
                                                    - code: false
                                                      name: string
                                                      value: string
                                                libs:
                                                    - string
                                                tlas:
                                                    - code: false
                                                      name: string
                                                      value: string
                                            recurse: false
                                          helm:
                                            fileParameters:
                                                - name: string
                                                  path: string
                                            ignoreMissingValueFiles: false
                                            parameters:
                                                - forceString: false
                                                  name: string
                                                  value: string
                                            passCredentials: false
                                            releaseName: string
                                            skipCrds: false
                                            valueFiles:
                                                - string
                                            values: string
                                            version: string
                                          kustomize:
                                            commonAnnotations:
                                                string: string
                                            commonLabels:
                                                string: string
                                            images:
                                                - string
                                            namePrefix: string
                                            nameSuffix: string
                                            patches:
                                                - options:
                                                    string: false
                                                  patch: string
                                                  path: string
                                                  target:
                                                    annotationSelector: string
                                                    group: string
                                                    kind: string
                                                    labelSelector: string
                                                    name: string
                                                    namespace: string
                                                    version: string
                                            version: string
                                          path: string
                                          plugin:
                                            envs:
                                                - name: string
                                                  value: string
                                            name: string
                                          ref: string
                                          repoUrl: string
                                          targetRevision: string
                                    syncPolicy:
                                        automated:
                                            allowEmpty: false
                                            prune: false
                                            selfHeal: false
                                        managedNamespaceMetadata:
                                            annotations:
                                                string: string
                                            labels:
                                                string: string
                                        retry:
                                            backoff:
                                                duration: string
                                                factor: string
                                                maxDuration: string
                                            limit: string
                                        syncOptions:
                                            - string
                              values:
                                string: string
                          clusters:
                            - enabled: false
                              selector:
                                matchExpressions:
                                    - key: string
                                      operator: string
                                      values:
                                        - string
                                matchLabels:
                                    string: string
                              template:
                                metadata:
                                    annotations:
                                        string: string
                                    finalizers:
                                        - string
                                    labels:
                                        string: string
                                    name: string
                                    namespace: string
                                spec:
                                    destination:
                                        name: string
                                        namespace: string
                                        server: string
                                    ignoreDifferences:
                                        - group: string
                                          jqPathExpressions:
                                            - string
                                          jsonPointers:
                                            - string
                                          kind: string
                                          managedFieldsManagers:
                                            - string
                                          name: string
                                          namespace: string
                                    infos:
                                        - name: string
                                          value: string
                                    project: string
                                    revisionHistoryLimit: 0
                                    sources:
                                        - chart: string
                                          directory:
                                            exclude: string
                                            include: string
                                            jsonnet:
                                                extVars:
                                                    - code: false
                                                      name: string
                                                      value: string
                                                libs:
                                                    - string
                                                tlas:
                                                    - code: false
                                                      name: string
                                                      value: string
                                            recurse: false
                                          helm:
                                            fileParameters:
                                                - name: string
                                                  path: string
                                            ignoreMissingValueFiles: false
                                            parameters:
                                                - forceString: false
                                                  name: string
                                                  value: string
                                            passCredentials: false
                                            releaseName: string
                                            skipCrds: false
                                            valueFiles:
                                                - string
                                            values: string
                                            version: string
                                          kustomize:
                                            commonAnnotations:
                                                string: string
                                            commonLabels:
                                                string: string
                                            images:
                                                - string
                                            namePrefix: string
                                            nameSuffix: string
                                            patches:
                                                - options:
                                                    string: false
                                                  patch: string
                                                  path: string
                                                  target:
                                                    annotationSelector: string
                                                    group: string
                                                    kind: string
                                                    labelSelector: string
                                                    name: string
                                                    namespace: string
                                                    version: string
                                            version: string
                                          path: string
                                          plugin:
                                            envs:
                                                - name: string
                                                  value: string
                                            name: string
                                          ref: string
                                          repoUrl: string
                                          targetRevision: string
                                    syncPolicy:
                                        automated:
                                            allowEmpty: false
                                            prune: false
                                            selfHeal: false
                                        managedNamespaceMetadata:
                                            annotations:
                                                string: string
                                            labels:
                                                string: string
                                        retry:
                                            backoff:
                                                duration: string
                                                factor: string
                                                maxDuration: string
                                            limit: string
                                        syncOptions:
                                            - string
                              values:
                                string: string
                          gits:
                            - directories:
                                - exclude: false
                                  path: string
                              files:
                                - path: string
                              pathParamPrefix: string
                              repoUrl: string
                              revision: string
                              template:
                                metadata:
                                    annotations:
                                        string: string
                                    finalizers:
                                        - string
                                    labels:
                                        string: string
                                    name: string
                                    namespace: string
                                spec:
                                    destination:
                                        name: string
                                        namespace: string
                                        server: string
                                    ignoreDifferences:
                                        - group: string
                                          jqPathExpressions:
                                            - string
                                          jsonPointers:
                                            - string
                                          kind: string
                                          managedFieldsManagers:
                                            - string
                                          name: string
                                          namespace: string
                                    infos:
                                        - name: string
                                          value: string
                                    project: string
                                    revisionHistoryLimit: 0
                                    sources:
                                        - chart: string
                                          directory:
                                            exclude: string
                                            include: string
                                            jsonnet:
                                                extVars:
                                                    - code: false
                                                      name: string
                                                      value: string
                                                libs:
                                                    - string
                                                tlas:
                                                    - code: false
                                                      name: string
                                                      value: string
                                            recurse: false
                                          helm:
                                            fileParameters:
                                                - name: string
                                                  path: string
                                            ignoreMissingValueFiles: false
                                            parameters:
                                                - forceString: false
                                                  name: string
                                                  value: string
                                            passCredentials: false
                                            releaseName: string
                                            skipCrds: false
                                            valueFiles:
                                                - string
                                            values: string
                                            version: string
                                          kustomize:
                                            commonAnnotations:
                                                string: string
                                            commonLabels:
                                                string: string
                                            images:
                                                - string
                                            namePrefix: string
                                            nameSuffix: string
                                            patches:
                                                - options:
                                                    string: false
                                                  patch: string
                                                  path: string
                                                  target:
                                                    annotationSelector: string
                                                    group: string
                                                    kind: string
                                                    labelSelector: string
                                                    name: string
                                                    namespace: string
                                                    version: string
                                            version: string
                                          path: string
                                          plugin:
                                            envs:
                                                - name: string
                                                  value: string
                                            name: string
                                          ref: string
                                          repoUrl: string
                                          targetRevision: string
                                    syncPolicy:
                                        automated:
                                            allowEmpty: false
                                            prune: false
                                            selfHeal: false
                                        managedNamespaceMetadata:
                                            annotations:
                                                string: string
                                            labels:
                                                string: string
                                        retry:
                                            backoff:
                                                duration: string
                                                factor: string
                                                maxDuration: string
                                            limit: string
                                        syncOptions:
                                            - string
                              values:
                                string: string
                          lists:
                            - elements:
                                - string: string
                              template:
                                metadata:
                                    annotations:
                                        string: string
                                    finalizers:
                                        - string
                                    labels:
                                        string: string
                                    name: string
                                    namespace: string
                                spec:
                                    destination:
                                        name: string
                                        namespace: string
                                        server: string
                                    ignoreDifferences:
                                        - group: string
                                          jqPathExpressions:
                                            - string
                                          jsonPointers:
                                            - string
                                          kind: string
                                          managedFieldsManagers:
                                            - string
                                          name: string
                                          namespace: string
                                    infos:
                                        - name: string
                                          value: string
                                    project: string
                                    revisionHistoryLimit: 0
                                    sources:
                                        - chart: string
                                          directory:
                                            exclude: string
                                            include: string
                                            jsonnet:
                                                extVars:
                                                    - code: false
                                                      name: string
                                                      value: string
                                                libs:
                                                    - string
                                                tlas:
                                                    - code: false
                                                      name: string
                                                      value: string
                                            recurse: false
                                          helm:
                                            fileParameters:
                                                - name: string
                                                  path: string
                                            ignoreMissingValueFiles: false
                                            parameters:
                                                - forceString: false
                                                  name: string
                                                  value: string
                                            passCredentials: false
                                            releaseName: string
                                            skipCrds: false
                                            valueFiles:
                                                - string
                                            values: string
                                            version: string
                                          kustomize:
                                            commonAnnotations:
                                                string: string
                                            commonLabels:
                                                string: string
                                            images:
                                                - string
                                            namePrefix: string
                                            nameSuffix: string
                                            patches:
                                                - options:
                                                    string: false
                                                  patch: string
                                                  path: string
                                                  target:
                                                    annotationSelector: string
                                                    group: string
                                                    kind: string
                                                    labelSelector: string
                                                    name: string
                                                    namespace: string
                                                    version: string
                                            version: string
                                          path: string
                                          plugin:
                                            envs:
                                                - name: string
                                                  value: string
                                            name: string
                                          ref: string
                                          repoUrl: string
                                          targetRevision: string
                                    syncPolicy:
                                        automated:
                                            allowEmpty: false
                                            prune: false
                                            selfHeal: false
                                        managedNamespaceMetadata:
                                            annotations:
                                                string: string
                                            labels:
                                                string: string
                                        retry:
                                            backoff:
                                                duration: string
                                                factor: string
                                                maxDuration: string
                                            limit: string
                                        syncOptions:
                                            - string
                          matrices:
                            - generators:
                                - clusterDecisionResources:
                                    - configMapRef: string
                                      labelSelector:
                                        matchExpressions:
                                            - key: string
                                              operator: string
                                              values:
                                                - string
                                        matchLabels:
                                            string: string
                                      name: string
                                      requeueAfterSeconds: string
                                      template:
                                        metadata:
                                            annotations:
                                                string: string
                                            finalizers:
                                                - string
                                            labels:
                                                string: string
                                            name: string
                                            namespace: string
                                        spec:
                                            destination:
                                                name: string
                                                namespace: string
                                                server: string
                                            ignoreDifferences:
                                                - group: string
                                                  jqPathExpressions:
                                                    - string
                                                  jsonPointers:
                                                    - string
                                                  kind: string
                                                  managedFieldsManagers:
                                                    - string
                                                  name: string
                                                  namespace: string
                                            infos:
                                                - name: string
                                                  value: string
                                            project: string
                                            revisionHistoryLimit: 0
                                            sources:
                                                - chart: string
                                                  directory:
                                                    exclude: string
                                                    include: string
                                                    jsonnet:
                                                        extVars:
                                                            - code: false
                                                              name: string
                                                              value: string
                                                        libs:
                                                            - string
                                                        tlas:
                                                            - code: false
                                                              name: string
                                                              value: string
                                                    recurse: false
                                                  helm:
                                                    fileParameters:
                                                        - name: string
                                                          path: string
                                                    ignoreMissingValueFiles: false
                                                    parameters:
                                                        - forceString: false
                                                          name: string
                                                          value: string
                                                    passCredentials: false
                                                    releaseName: string
                                                    skipCrds: false
                                                    valueFiles:
                                                        - string
                                                    values: string
                                                    version: string
                                                  kustomize:
                                                    commonAnnotations:
                                                        string: string
                                                    commonLabels:
                                                        string: string
                                                    images:
                                                        - string
                                                    namePrefix: string
                                                    nameSuffix: string
                                                    patches:
                                                        - options:
                                                            string: false
                                                          patch: string
                                                          path: string
                                                          target:
                                                            annotationSelector: string
                                                            group: string
                                                            kind: string
                                                            labelSelector: string
                                                            name: string
                                                            namespace: string
                                                            version: string
                                                    version: string
                                                  path: string
                                                  plugin:
                                                    envs:
                                                        - name: string
                                                          value: string
                                                    name: string
                                                  ref: string
                                                  repoUrl: string
                                                  targetRevision: string
                                            syncPolicy:
                                                automated:
                                                    allowEmpty: false
                                                    prune: false
                                                    selfHeal: false
                                                managedNamespaceMetadata:
                                                    annotations:
                                                        string: string
                                                    labels:
                                                        string: string
                                                retry:
                                                    backoff:
                                                        duration: string
                                                        factor: string
                                                        maxDuration: string
                                                    limit: string
                                                syncOptions:
                                                    - string
                                      values:
                                        string: string
                                  clusters:
                                    - enabled: false
                                      selector:
                                        matchExpressions:
                                            - key: string
                                              operator: string
                                              values:
                                                - string
                                        matchLabels:
                                            string: string
                                      template:
                                        metadata:
                                            annotations:
                                                string: string
                                            finalizers:
                                                - string
                                            labels:
                                                string: string
                                            name: string
                                            namespace: string
                                        spec:
                                            destination:
                                                name: string
                                                namespace: string
                                                server: string
                                            ignoreDifferences:
                                                - group: string
                                                  jqPathExpressions:
                                                    - string
                                                  jsonPointers:
                                                    - string
                                                  kind: string
                                                  managedFieldsManagers:
                                                    - string
                                                  name: string
                                                  namespace: string
                                            infos:
                                                - name: string
                                                  value: string
                                            project: string
                                            revisionHistoryLimit: 0
                                            sources:
                                                - chart: string
                                                  directory:
                                                    exclude: string
                                                    include: string
                                                    jsonnet:
                                                        extVars:
                                                            - code: false
                                                              name: string
                                                              value: string
                                                        libs:
                                                            - string
                                                        tlas:
                                                            - code: false
                                                              name: string
                                                              value: string
                                                    recurse: false
                                                  helm:
                                                    fileParameters:
                                                        - name: string
                                                          path: string
                                                    ignoreMissingValueFiles: false
                                                    parameters:
                                                        - forceString: false
                                                          name: string
                                                          value: string
                                                    passCredentials: false
                                                    releaseName: string
                                                    skipCrds: false
                                                    valueFiles:
                                                        - string
                                                    values: string
                                                    version: string
                                                  kustomize:
                                                    commonAnnotations:
                                                        string: string
                                                    commonLabels:
                                                        string: string
                                                    images:
                                                        - string
                                                    namePrefix: string
                                                    nameSuffix: string
                                                    patches:
                                                        - options:
                                                            string: false
                                                          patch: string
                                                          path: string
                                                          target:
                                                            annotationSelector: string
                                                            group: string
                                                            kind: string
                                                            labelSelector: string
                                                            name: string
                                                            namespace: string
                                                            version: string
                                                    version: string
                                                  path: string
                                                  plugin:
                                                    envs:
                                                        - name: string
                                                          value: string
                                                    name: string
                                                  ref: string
                                                  repoUrl: string
                                                  targetRevision: string
                                            syncPolicy:
                                                automated:
                                                    allowEmpty: false
                                                    prune: false
                                                    selfHeal: false
                                                managedNamespaceMetadata:
                                                    annotations:
                                                        string: string
                                                    labels:
                                                        string: string
                                                retry:
                                                    backoff:
                                                        duration: string
                                                        factor: string
                                                        maxDuration: string
                                                    limit: string
                                                syncOptions:
                                                    - string
                                      values:
                                        string: string
                                  gits:
                                    - directories:
                                        - exclude: false
                                          path: string
                                      files:
                                        - path: string
                                      pathParamPrefix: string
                                      repoUrl: string
                                      revision: string
                                      template:
                                        metadata:
                                            annotations:
                                                string: string
                                            finalizers:
                                                - string
                                            labels:
                                                string: string
                                            name: string
                                            namespace: string
                                        spec:
                                            destination:
                                                name: string
                                                namespace: string
                                                server: string
                                            ignoreDifferences:
                                                - group: string
                                                  jqPathExpressions:
                                                    - string
                                                  jsonPointers:
                                                    - string
                                                  kind: string
                                                  managedFieldsManagers:
                                                    - string
                                                  name: string
                                                  namespace: string
                                            infos:
                                                - name: string
                                                  value: string
                                            project: string
                                            revisionHistoryLimit: 0
                                            sources:
                                                - chart: string
                                                  directory:
                                                    exclude: string
                                                    include: string
                                                    jsonnet:
                                                        extVars:
                                                            - code: false
                                                              name: string
                                                              value: string
                                                        libs:
                                                            - string
                                                        tlas:
                                                            - code: false
                                                              name: string
                                                              value: string
                                                    recurse: false
                                                  helm:
                                                    fileParameters:
                                                        - name: string
                                                          path: string
                                                    ignoreMissingValueFiles: false
                                                    parameters:
                                                        - forceString: false
                                                          name: string
                                                          value: string
                                                    passCredentials: false
                                                    releaseName: string
                                                    skipCrds: false
                                                    valueFiles:
                                                        - string
                                                    values: string
                                                    version: string
                                                  kustomize:
                                                    commonAnnotations:
                                                        string: string
                                                    commonLabels:
                                                        string: string
                                                    images:
                                                        - string
                                                    namePrefix: string
                                                    nameSuffix: string
                                                    patches:
                                                        - options:
                                                            string: false
                                                          patch: string
                                                          path: string
                                                          target:
                                                            annotationSelector: string
                                                            group: string
                                                            kind: string
                                                            labelSelector: string
                                                            name: string
                                                            namespace: string
                                                            version: string
                                                    version: string
                                                  path: string
                                                  plugin:
                                                    envs:
                                                        - name: string
                                                          value: string
                                                    name: string
                                                  ref: string
                                                  repoUrl: string
                                                  targetRevision: string
                                            syncPolicy:
                                                automated:
                                                    allowEmpty: false
                                                    prune: false
                                                    selfHeal: false
                                                managedNamespaceMetadata:
                                                    annotations:
                                                        string: string
                                                    labels:
                                                        string: string
                                                retry:
                                                    backoff:
                                                        duration: string
                                                        factor: string
                                                        maxDuration: string
                                                    limit: string
                                                syncOptions:
                                                    - string
                                      values:
                                        string: string
                                  lists:
                                    - elements:
                                        - string: string
                                      template:
                                        metadata:
                                            annotations:
                                                string: string
                                            finalizers:
                                                - string
                                            labels:
                                                string: string
                                            name: string
                                            namespace: string
                                        spec:
                                            destination:
                                                name: string
                                                namespace: string
                                                server: string
                                            ignoreDifferences:
                                                - group: string
                                                  jqPathExpressions:
                                                    - string
                                                  jsonPointers:
                                                    - string
                                                  kind: string
                                                  managedFieldsManagers:
                                                    - string
                                                  name: string
                                                  namespace: string
                                            infos:
                                                - name: string
                                                  value: string
                                            project: string
                                            revisionHistoryLimit: 0
                                            sources:
                                                - chart: string
                                                  directory:
                                                    exclude: string
                                                    include: string
                                                    jsonnet:
                                                        extVars:
                                                            - code: false
                                                              name: string
                                                              value: string
                                                        libs:
                                                            - string
                                                        tlas:
                                                            - code: false
                                                              name: string
                                                              value: string
                                                    recurse: false
                                                  helm:
                                                    fileParameters:
                                                        - name: string
                                                          path: string
                                                    ignoreMissingValueFiles: false
                                                    parameters:
                                                        - forceString: false
                                                          name: string
                                                          value: string
                                                    passCredentials: false
                                                    releaseName: string
                                                    skipCrds: false
                                                    valueFiles:
                                                        - string
                                                    values: string
                                                    version: string
                                                  kustomize:
                                                    commonAnnotations:
                                                        string: string
                                                    commonLabels:
                                                        string: string
                                                    images:
                                                        - string
                                                    namePrefix: string
                                                    nameSuffix: string
                                                    patches:
                                                        - options:
                                                            string: false
                                                          patch: string
                                                          path: string
                                                          target:
                                                            annotationSelector: string
                                                            group: string
                                                            kind: string
                                                            labelSelector: string
                                                            name: string
                                                            namespace: string
                                                            version: string
                                                    version: string
                                                  path: string
                                                  plugin:
                                                    envs:
                                                        - name: string
                                                          value: string
                                                    name: string
                                                  ref: string
                                                  repoUrl: string
                                                  targetRevision: string
                                            syncPolicy:
                                                automated:
                                                    allowEmpty: false
                                                    prune: false
                                                    selfHeal: false
                                                managedNamespaceMetadata:
                                                    annotations:
                                                        string: string
                                                    labels:
                                                        string: string
                                                retry:
                                                    backoff:
                                                        duration: string
                                                        factor: string
                                                        maxDuration: string
                                                    limit: string
                                                syncOptions:
                                                    - string
                                  pullRequests:
                                    - bitbucketServer:
                                        api: string
                                        basicAuth:
                                            passwordRef:
                                                key: string
                                                secretName: string
                                            username: string
                                        project: string
                                        repo: string
                                      filters:
                                        - branchMatch: string
                                      gitea:
                                        api: string
                                        insecure: false
                                        owner: string
                                        repo: string
                                        tokenRef:
                                            key: string
                                            secretName: string
                                      github:
                                        api: string
                                        appSecretName: string
                                        labels:
                                            - string
                                        owner: string
                                        repo: string
                                        tokenRef:
                                            key: string
                                            secretName: string
                                      gitlab:
                                        api: string
                                        labels:
                                            - string
                                        project: string
                                        pullRequestState: string
                                        tokenRef:
                                            key: string
                                            secretName: string
                                      requeueAfterSeconds: string
                                      template:
                                        metadata:
                                            annotations:
                                                string: string
                                            finalizers:
                                                - string
                                            labels:
                                                string: string
                                            name: string
                                            namespace: string
                                        spec:
                                            destination:
                                                name: string
                                                namespace: string
                                                server: string
                                            ignoreDifferences:
                                                - group: string
                                                  jqPathExpressions:
                                                    - string
                                                  jsonPointers:
                                                    - string
                                                  kind: string
                                                  managedFieldsManagers:
                                                    - string
                                                  name: string
                                                  namespace: string
                                            infos:
                                                - name: string
                                                  value: string
                                            project: string
                                            revisionHistoryLimit: 0
                                            sources:
                                                - chart: string
                                                  directory:
                                                    exclude: string
                                                    include: string
                                                    jsonnet:
                                                        extVars:
                                                            - code: false
                                                              name: string
                                                              value: string
                                                        libs:
                                                            - string
                                                        tlas:
                                                            - code: false
                                                              name: string
                                                              value: string
                                                    recurse: false
                                                  helm:
                                                    fileParameters:
                                                        - name: string
                                                          path: string
                                                    ignoreMissingValueFiles: false
                                                    parameters:
                                                        - forceString: false
                                                          name: string
                                                          value: string
                                                    passCredentials: false
                                                    releaseName: string
                                                    skipCrds: false
                                                    valueFiles:
                                                        - string
                                                    values: string
                                                    version: string
                                                  kustomize:
                                                    commonAnnotations:
                                                        string: string
                                                    commonLabels:
                                                        string: string
                                                    images:
                                                        - string
                                                    namePrefix: string
                                                    nameSuffix: string
                                                    patches:
                                                        - options:
                                                            string: false
                                                          patch: string
                                                          path: string
                                                          target:
                                                            annotationSelector: string
                                                            group: string
                                                            kind: string
                                                            labelSelector: string
                                                            name: string
                                                            namespace: string
                                                            version: string
                                                    version: string
                                                  path: string
                                                  plugin:
                                                    envs:
                                                        - name: string
                                                          value: string
                                                    name: string
                                                  ref: string
                                                  repoUrl: string
                                                  targetRevision: string
                                            syncPolicy:
                                                automated:
                                                    allowEmpty: false
                                                    prune: false
                                                    selfHeal: false
                                                managedNamespaceMetadata:
                                                    annotations:
                                                        string: string
                                                    labels:
                                                        string: string
                                                retry:
                                                    backoff:
                                                        duration: string
                                                        factor: string
                                                        maxDuration: string
                                                    limit: string
                                                syncOptions:
                                                    - string
                                  scmProviders:
                                    - azureDevops:
                                        accessTokenRef:
                                            key: string
                                            secretName: string
                                        allBranches: false
                                        api: string
                                        organization: string
                                        teamProject: string
                                      bitbucketCloud:
                                        allBranches: false
                                        appPasswordRef:
                                            key: string
                                            secretName: string
                                        owner: string
                                        user: string
                                      bitbucketServer:
                                        allBranches: false
                                        api: string
                                        basicAuth:
                                            passwordRef:
                                                key: string
                                                secretName: string
                                            username: string
                                        project: string
                                      cloneProtocol: string
                                      filters:
                                        - branchMatch: string
                                          labelMatch: string
                                          pathsDoNotExists:
                                            - string
                                          pathsExists:
                                            - string
                                          repositoryMatch: string
                                      gitea:
                                        allBranches: false
                                        api: string
                                        insecure: false
                                        owner: string
                                        tokenRef:
                                            key: string
                                            secretName: string
                                      github:
                                        allBranches: false
                                        api: string
                                        appSecretName: string
                                        organization: string
                                        tokenRef:
                                            key: string
                                            secretName: string
                                      gitlab:
                                        allBranches: false
                                        api: string
                                        group: string
                                        includeSubgroups: false
                                        tokenRef:
                                            key: string
                                            secretName: string
                                      requeueAfterSeconds: string
                                      template:
                                        metadata:
                                            annotations:
                                                string: string
                                            finalizers:
                                                - string
                                            labels:
                                                string: string
                                            name: string
                                            namespace: string
                                        spec:
                                            destination:
                                                name: string
                                                namespace: string
                                                server: string
                                            ignoreDifferences:
                                                - group: string
                                                  jqPathExpressions:
                                                    - string
                                                  jsonPointers:
                                                    - string
                                                  kind: string
                                                  managedFieldsManagers:
                                                    - string
                                                  name: string
                                                  namespace: string
                                            infos:
                                                - name: string
                                                  value: string
                                            project: string
                                            revisionHistoryLimit: 0
                                            sources:
                                                - chart: string
                                                  directory:
                                                    exclude: string
                                                    include: string
                                                    jsonnet:
                                                        extVars:
                                                            - code: false
                                                              name: string
                                                              value: string
                                                        libs:
                                                            - string
                                                        tlas:
                                                            - code: false
                                                              name: string
                                                              value: string
                                                    recurse: false
                                                  helm:
                                                    fileParameters:
                                                        - name: string
                                                          path: string
                                                    ignoreMissingValueFiles: false
                                                    parameters:
                                                        - forceString: false
                                                          name: string
                                                          value: string
                                                    passCredentials: false
                                                    releaseName: string
                                                    skipCrds: false
                                                    valueFiles:
                                                        - string
                                                    values: string
                                                    version: string
                                                  kustomize:
                                                    commonAnnotations:
                                                        string: string
                                                    commonLabels:
                                                        string: string
                                                    images:
                                                        - string
                                                    namePrefix: string
                                                    nameSuffix: string
                                                    patches:
                                                        - options:
                                                            string: false
                                                          patch: string
                                                          path: string
                                                          target:
                                                            annotationSelector: string
                                                            group: string
                                                            kind: string
                                                            labelSelector: string
                                                            name: string
                                                            namespace: string
                                                            version: string
                                                    version: string
                                                  path: string
                                                  plugin:
                                                    envs:
                                                        - name: string
                                                          value: string
                                                    name: string
                                                  ref: string
                                                  repoUrl: string
                                                  targetRevision: string
                                            syncPolicy:
                                                automated:
                                                    allowEmpty: false
                                                    prune: false
                                                    selfHeal: false
                                                managedNamespaceMetadata:
                                                    annotations:
                                                        string: string
                                                    labels:
                                                        string: string
                                                retry:
                                                    backoff:
                                                        duration: string
                                                        factor: string
                                                        maxDuration: string
                                                    limit: string
                                                syncOptions:
                                                    - string
                                  selector:
                                    matchExpressions:
                                        - key: string
                                          operator: string
                                          values:
                                            - string
                                    matchLabels:
                                        string: string
                              template:
                                metadata:
                                    annotations:
                                        string: string
                                    finalizers:
                                        - string
                                    labels:
                                        string: string
                                    name: string
                                    namespace: string
                                spec:
                                    destination:
                                        name: string
                                        namespace: string
                                        server: string
                                    ignoreDifferences:
                                        - group: string
                                          jqPathExpressions:
                                            - string
                                          jsonPointers:
                                            - string
                                          kind: string
                                          managedFieldsManagers:
                                            - string
                                          name: string
                                          namespace: string
                                    infos:
                                        - name: string
                                          value: string
                                    project: string
                                    revisionHistoryLimit: 0
                                    sources:
                                        - chart: string
                                          directory:
                                            exclude: string
                                            include: string
                                            jsonnet:
                                                extVars:
                                                    - code: false
                                                      name: string
                                                      value: string
                                                libs:
                                                    - string
                                                tlas:
                                                    - code: false
                                                      name: string
                                                      value: string
                                            recurse: false
                                          helm:
                                            fileParameters:
                                                - name: string
                                                  path: string
                                            ignoreMissingValueFiles: false
                                            parameters:
                                                - forceString: false
                                                  name: string
                                                  value: string
                                            passCredentials: false
                                            releaseName: string
                                            skipCrds: false
                                            valueFiles:
                                                - string
                                            values: string
                                            version: string
                                          kustomize:
                                            commonAnnotations:
                                                string: string
                                            commonLabels:
                                                string: string
                                            images:
                                                - string
                                            namePrefix: string
                                            nameSuffix: string
                                            patches:
                                                - options:
                                                    string: false
                                                  patch: string
                                                  path: string
                                                  target:
                                                    annotationSelector: string
                                                    group: string
                                                    kind: string
                                                    labelSelector: string
                                                    name: string
                                                    namespace: string
                                                    version: string
                                            version: string
                                          path: string
                                          plugin:
                                            envs:
                                                - name: string
                                                  value: string
                                            name: string
                                          ref: string
                                          repoUrl: string
                                          targetRevision: string
                                    syncPolicy:
                                        automated:
                                            allowEmpty: false
                                            prune: false
                                            selfHeal: false
                                        managedNamespaceMetadata:
                                            annotations:
                                                string: string
                                            labels:
                                                string: string
                                        retry:
                                            backoff:
                                                duration: string
                                                factor: string
                                                maxDuration: string
                                            limit: string
                                        syncOptions:
                                            - string
                          merges:
                            - generators:
                                - clusterDecisionResources:
                                    - configMapRef: string
                                      labelSelector:
                                        matchExpressions:
                                            - key: string
                                              operator: string
                                              values:
                                                - string
                                        matchLabels:
                                            string: string
                                      name: string
                                      requeueAfterSeconds: string
                                      template:
                                        metadata:
                                            annotations:
                                                string: string
                                            finalizers:
                                                - string
                                            labels:
                                                string: string
                                            name: string
                                            namespace: string
                                        spec:
                                            destination:
                                                name: string
                                                namespace: string
                                                server: string
                                            ignoreDifferences:
                                                - group: string
                                                  jqPathExpressions:
                                                    - string
                                                  jsonPointers:
                                                    - string
                                                  kind: string
                                                  managedFieldsManagers:
                                                    - string
                                                  name: string
                                                  namespace: string
                                            infos:
                                                - name: string
                                                  value: string
                                            project: string
                                            revisionHistoryLimit: 0
                                            sources:
                                                - chart: string
                                                  directory:
                                                    exclude: string
                                                    include: string
                                                    jsonnet:
                                                        extVars:
                                                            - code: false
                                                              name: string
                                                              value: string
                                                        libs:
                                                            - string
                                                        tlas:
                                                            - code: false
                                                              name: string
                                                              value: string
                                                    recurse: false
                                                  helm:
                                                    fileParameters:
                                                        - name: string
                                                          path: string
                                                    ignoreMissingValueFiles: false
                                                    parameters:
                                                        - forceString: false
                                                          name: string
                                                          value: string
                                                    passCredentials: false
                                                    releaseName: string
                                                    skipCrds: false
                                                    valueFiles:
                                                        - string
                                                    values: string
                                                    version: string
                                                  kustomize:
                                                    commonAnnotations:
                                                        string: string
                                                    commonLabels:
                                                        string: string
                                                    images:
                                                        - string
                                                    namePrefix: string
                                                    nameSuffix: string
                                                    patches:
                                                        - options:
                                                            string: false
                                                          patch: string
                                                          path: string
                                                          target:
                                                            annotationSelector: string
                                                            group: string
                                                            kind: string
                                                            labelSelector: string
                                                            name: string
                                                            namespace: string
                                                            version: string
                                                    version: string
                                                  path: string
                                                  plugin:
                                                    envs:
                                                        - name: string
                                                          value: string
                                                    name: string
                                                  ref: string
                                                  repoUrl: string
                                                  targetRevision: string
                                            syncPolicy:
                                                automated:
                                                    allowEmpty: false
                                                    prune: false
                                                    selfHeal: false
                                                managedNamespaceMetadata:
                                                    annotations:
                                                        string: string
                                                    labels:
                                                        string: string
                                                retry:
                                                    backoff:
                                                        duration: string
                                                        factor: string
                                                        maxDuration: string
                                                    limit: string
                                                syncOptions:
                                                    - string
                                      values:
                                        string: string
                                  clusters:
                                    - enabled: false
                                      selector:
                                        matchExpressions:
                                            - key: string
                                              operator: string
                                              values:
                                                - string
                                        matchLabels:
                                            string: string
                                      template:
                                        metadata:
                                            annotations:
                                                string: string
                                            finalizers:
                                                - string
                                            labels:
                                                string: string
                                            name: string
                                            namespace: string
                                        spec:
                                            destination:
                                                name: string
                                                namespace: string
                                                server: string
                                            ignoreDifferences:
                                                - group: string
                                                  jqPathExpressions:
                                                    - string
                                                  jsonPointers:
                                                    - string
                                                  kind: string
                                                  managedFieldsManagers:
                                                    - string
                                                  name: string
                                                  namespace: string
                                            infos:
                                                - name: string
                                                  value: string
                                            project: string
                                            revisionHistoryLimit: 0
                                            sources:
                                                - chart: string
                                                  directory:
                                                    exclude: string
                                                    include: string
                                                    jsonnet:
                                                        extVars:
                                                            - code: false
                                                              name: string
                                                              value: string
                                                        libs:
                                                            - string
                                                        tlas:
                                                            - code: false
                                                              name: string
                                                              value: string
                                                    recurse: false
                                                  helm:
                                                    fileParameters:
                                                        - name: string
                                                          path: string
                                                    ignoreMissingValueFiles: false
                                                    parameters:
                                                        - forceString: false
                                                          name: string
                                                          value: string
                                                    passCredentials: false
                                                    releaseName: string
                                                    skipCrds: false
                                                    valueFiles:
                                                        - string
                                                    values: string
                                                    version: string
                                                  kustomize:
                                                    commonAnnotations:
                                                        string: string
                                                    commonLabels:
                                                        string: string
                                                    images:
                                                        - string
                                                    namePrefix: string
                                                    nameSuffix: string
                                                    patches:
                                                        - options:
                                                            string: false
                                                          patch: string
                                                          path: string
                                                          target:
                                                            annotationSelector: string
                                                            group: string
                                                            kind: string
                                                            labelSelector: string
                                                            name: string
                                                            namespace: string
                                                            version: string
                                                    version: string
                                                  path: string
                                                  plugin:
                                                    envs:
                                                        - name: string
                                                          value: string
                                                    name: string
                                                  ref: string
                                                  repoUrl: string
                                                  targetRevision: string
                                            syncPolicy:
                                                automated:
                                                    allowEmpty: false
                                                    prune: false
                                                    selfHeal: false
                                                managedNamespaceMetadata:
                                                    annotations:
                                                        string: string
                                                    labels:
                                                        string: string
                                                retry:
                                                    backoff:
                                                        duration: string
                                                        factor: string
                                                        maxDuration: string
                                                    limit: string
                                                syncOptions:
                                                    - string
                                      values:
                                        string: string
                                  gits:
                                    - directories:
                                        - exclude: false
                                          path: string
                                      files:
                                        - path: string
                                      pathParamPrefix: string
                                      repoUrl: string
                                      revision: string
                                      template:
                                        metadata:
                                            annotations:
                                                string: string
                                            finalizers:
                                                - string
                                            labels:
                                                string: string
                                            name: string
                                            namespace: string
                                        spec:
                                            destination:
                                                name: string
                                                namespace: string
                                                server: string
                                            ignoreDifferences:
                                                - group: string
                                                  jqPathExpressions:
                                                    - string
                                                  jsonPointers:
                                                    - string
                                                  kind: string
                                                  managedFieldsManagers:
                                                    - string
                                                  name: string
                                                  namespace: string
                                            infos:
                                                - name: string
                                                  value: string
                                            project: string
                                            revisionHistoryLimit: 0
                                            sources:
                                                - chart: string
                                                  directory:
                                                    exclude: string
                                                    include: string
                                                    jsonnet:
                                                        extVars:
                                                            - code: false
                                                              name: string
                                                              value: string
                                                        libs:
                                                            - string
                                                        tlas:
                                                            - code: false
                                                              name: string
                                                              value: string
                                                    recurse: false
                                                  helm:
                                                    fileParameters:
                                                        - name: string
                                                          path: string
                                                    ignoreMissingValueFiles: false
                                                    parameters:
                                                        - forceString: false
                                                          name: string
                                                          value: string
                                                    passCredentials: false
                                                    releaseName: string
                                                    skipCrds: false
                                                    valueFiles:
                                                        - string
                                                    values: string
                                                    version: string
                                                  kustomize:
                                                    commonAnnotations:
                                                        string: string
                                                    commonLabels:
                                                        string: string
                                                    images:
                                                        - string
                                                    namePrefix: string
                                                    nameSuffix: string
                                                    patches:
                                                        - options:
                                                            string: false
                                                          patch: string
                                                          path: string
                                                          target:
                                                            annotationSelector: string
                                                            group: string
                                                            kind: string
                                                            labelSelector: string
                                                            name: string
                                                            namespace: string
                                                            version: string
                                                    version: string
                                                  path: string
                                                  plugin:
                                                    envs:
                                                        - name: string
                                                          value: string
                                                    name: string
                                                  ref: string
                                                  repoUrl: string
                                                  targetRevision: string
                                            syncPolicy:
                                                automated:
                                                    allowEmpty: false
                                                    prune: false
                                                    selfHeal: false
                                                managedNamespaceMetadata:
                                                    annotations:
                                                        string: string
                                                    labels:
                                                        string: string
                                                retry:
                                                    backoff:
                                                        duration: string
                                                        factor: string
                                                        maxDuration: string
                                                    limit: string
                                                syncOptions:
                                                    - string
                                      values:
                                        string: string
                                  lists:
                                    - elements:
                                        - string: string
                                      template:
                                        metadata:
                                            annotations:
                                                string: string
                                            finalizers:
                                                - string
                                            labels:
                                                string: string
                                            name: string
                                            namespace: string
                                        spec:
                                            destination:
                                                name: string
                                                namespace: string
                                                server: string
                                            ignoreDifferences:
                                                - group: string
                                                  jqPathExpressions:
                                                    - string
                                                  jsonPointers:
                                                    - string
                                                  kind: string
                                                  managedFieldsManagers:
                                                    - string
                                                  name: string
                                                  namespace: string
                                            infos:
                                                - name: string
                                                  value: string
                                            project: string
                                            revisionHistoryLimit: 0
                                            sources:
                                                - chart: string
                                                  directory:
                                                    exclude: string
                                                    include: string
                                                    jsonnet:
                                                        extVars:
                                                            - code: false
                                                              name: string
                                                              value: string
                                                        libs:
                                                            - string
                                                        tlas:
                                                            - code: false
                                                              name: string
                                                              value: string
                                                    recurse: false
                                                  helm:
                                                    fileParameters:
                                                        - name: string
                                                          path: string
                                                    ignoreMissingValueFiles: false
                                                    parameters:
                                                        - forceString: false
                                                          name: string
                                                          value: string
                                                    passCredentials: false
                                                    releaseName: string
                                                    skipCrds: false
                                                    valueFiles:
                                                        - string
                                                    values: string
                                                    version: string
                                                  kustomize:
                                                    commonAnnotations:
                                                        string: string
                                                    commonLabels:
                                                        string: string
                                                    images:
                                                        - string
                                                    namePrefix: string
                                                    nameSuffix: string
                                                    patches:
                                                        - options:
                                                            string: false
                                                          patch: string
                                                          path: string
                                                          target:
                                                            annotationSelector: string
                                                            group: string
                                                            kind: string
                                                            labelSelector: string
                                                            name: string
                                                            namespace: string
                                                            version: string
                                                    version: string
                                                  path: string
                                                  plugin:
                                                    envs:
                                                        - name: string
                                                          value: string
                                                    name: string
                                                  ref: string
                                                  repoUrl: string
                                                  targetRevision: string
                                            syncPolicy:
                                                automated:
                                                    allowEmpty: false
                                                    prune: false
                                                    selfHeal: false
                                                managedNamespaceMetadata:
                                                    annotations:
                                                        string: string
                                                    labels:
                                                        string: string
                                                retry:
                                                    backoff:
                                                        duration: string
                                                        factor: string
                                                        maxDuration: string
                                                    limit: string
                                                syncOptions:
                                                    - string
                                  pullRequests:
                                    - bitbucketServer:
                                        api: string
                                        basicAuth:
                                            passwordRef:
                                                key: string
                                                secretName: string
                                            username: string
                                        project: string
                                        repo: string
                                      filters:
                                        - branchMatch: string
                                      gitea:
                                        api: string
                                        insecure: false
                                        owner: string
                                        repo: string
                                        tokenRef:
                                            key: string
                                            secretName: string
                                      github:
                                        api: string
                                        appSecretName: string
                                        labels:
                                            - string
                                        owner: string
                                        repo: string
                                        tokenRef:
                                            key: string
                                            secretName: string
                                      gitlab:
                                        api: string
                                        labels:
                                            - string
                                        project: string
                                        pullRequestState: string
                                        tokenRef:
                                            key: string
                                            secretName: string
                                      requeueAfterSeconds: string
                                      template:
                                        metadata:
                                            annotations:
                                                string: string
                                            finalizers:
                                                - string
                                            labels:
                                                string: string
                                            name: string
                                            namespace: string
                                        spec:
                                            destination:
                                                name: string
                                                namespace: string
                                                server: string
                                            ignoreDifferences:
                                                - group: string
                                                  jqPathExpressions:
                                                    - string
                                                  jsonPointers:
                                                    - string
                                                  kind: string
                                                  managedFieldsManagers:
                                                    - string
                                                  name: string
                                                  namespace: string
                                            infos:
                                                - name: string
                                                  value: string
                                            project: string
                                            revisionHistoryLimit: 0
                                            sources:
                                                - chart: string
                                                  directory:
                                                    exclude: string
                                                    include: string
                                                    jsonnet:
                                                        extVars:
                                                            - code: false
                                                              name: string
                                                              value: string
                                                        libs:
                                                            - string
                                                        tlas:
                                                            - code: false
                                                              name: string
                                                              value: string
                                                    recurse: false
                                                  helm:
                                                    fileParameters:
                                                        - name: string
                                                          path: string
                                                    ignoreMissingValueFiles: false
                                                    parameters:
                                                        - forceString: false
                                                          name: string
                                                          value: string
                                                    passCredentials: false
                                                    releaseName: string
                                                    skipCrds: false
                                                    valueFiles:
                                                        - string
                                                    values: string
                                                    version: string
                                                  kustomize:
                                                    commonAnnotations:
                                                        string: string
                                                    commonLabels:
                                                        string: string
                                                    images:
                                                        - string
                                                    namePrefix: string
                                                    nameSuffix: string
                                                    patches:
                                                        - options:
                                                            string: false
                                                          patch: string
                                                          path: string
                                                          target:
                                                            annotationSelector: string
                                                            group: string
                                                            kind: string
                                                            labelSelector: string
                                                            name: string
                                                            namespace: string
                                                            version: string
                                                    version: string
                                                  path: string
                                                  plugin:
                                                    envs:
                                                        - name: string
                                                          value: string
                                                    name: string
                                                  ref: string
                                                  repoUrl: string
                                                  targetRevision: string
                                            syncPolicy:
                                                automated:
                                                    allowEmpty: false
                                                    prune: false
                                                    selfHeal: false
                                                managedNamespaceMetadata:
                                                    annotations:
                                                        string: string
                                                    labels:
                                                        string: string
                                                retry:
                                                    backoff:
                                                        duration: string
                                                        factor: string
                                                        maxDuration: string
                                                    limit: string
                                                syncOptions:
                                                    - string
                                  scmProviders:
                                    - azureDevops:
                                        accessTokenRef:
                                            key: string
                                            secretName: string
                                        allBranches: false
                                        api: string
                                        organization: string
                                        teamProject: string
                                      bitbucketCloud:
                                        allBranches: false
                                        appPasswordRef:
                                            key: string
                                            secretName: string
                                        owner: string
                                        user: string
                                      bitbucketServer:
                                        allBranches: false
                                        api: string
                                        basicAuth:
                                            passwordRef:
                                                key: string
                                                secretName: string
                                            username: string
                                        project: string
                                      cloneProtocol: string
                                      filters:
                                        - branchMatch: string
                                          labelMatch: string
                                          pathsDoNotExists:
                                            - string
                                          pathsExists:
                                            - string
                                          repositoryMatch: string
                                      gitea:
                                        allBranches: false
                                        api: string
                                        insecure: false
                                        owner: string
                                        tokenRef:
                                            key: string
                                            secretName: string
                                      github:
                                        allBranches: false
                                        api: string
                                        appSecretName: string
                                        organization: string
                                        tokenRef:
                                            key: string
                                            secretName: string
                                      gitlab:
                                        allBranches: false
                                        api: string
                                        group: string
                                        includeSubgroups: false
                                        tokenRef:
                                            key: string
                                            secretName: string
                                      requeueAfterSeconds: string
                                      template:
                                        metadata:
                                            annotations:
                                                string: string
                                            finalizers:
                                                - string
                                            labels:
                                                string: string
                                            name: string
                                            namespace: string
                                        spec:
                                            destination:
                                                name: string
                                                namespace: string
                                                server: string
                                            ignoreDifferences:
                                                - group: string
                                                  jqPathExpressions:
                                                    - string
                                                  jsonPointers:
                                                    - string
                                                  kind: string
                                                  managedFieldsManagers:
                                                    - string
                                                  name: string
                                                  namespace: string
                                            infos:
                                                - name: string
                                                  value: string
                                            project: string
                                            revisionHistoryLimit: 0
                                            sources:
                                                - chart: string
                                                  directory:
                                                    exclude: string
                                                    include: string
                                                    jsonnet:
                                                        extVars:
                                                            - code: false
                                                              name: string
                                                              value: string
                                                        libs:
                                                            - string
                                                        tlas:
                                                            - code: false
                                                              name: string
                                                              value: string
                                                    recurse: false
                                                  helm:
                                                    fileParameters:
                                                        - name: string
                                                          path: string
                                                    ignoreMissingValueFiles: false
                                                    parameters:
                                                        - forceString: false
                                                          name: string
                                                          value: string
                                                    passCredentials: false
                                                    releaseName: string
                                                    skipCrds: false
                                                    valueFiles:
                                                        - string
                                                    values: string
                                                    version: string
                                                  kustomize:
                                                    commonAnnotations:
                                                        string: string
                                                    commonLabels:
                                                        string: string
                                                    images:
                                                        - string
                                                    namePrefix: string
                                                    nameSuffix: string
                                                    patches:
                                                        - options:
                                                            string: false
                                                          patch: string
                                                          path: string
                                                          target:
                                                            annotationSelector: string
                                                            group: string
                                                            kind: string
                                                            labelSelector: string
                                                            name: string
                                                            namespace: string
                                                            version: string
                                                    version: string
                                                  path: string
                                                  plugin:
                                                    envs:
                                                        - name: string
                                                          value: string
                                                    name: string
                                                  ref: string
                                                  repoUrl: string
                                                  targetRevision: string
                                            syncPolicy:
                                                automated:
                                                    allowEmpty: false
                                                    prune: false
                                                    selfHeal: false
                                                managedNamespaceMetadata:
                                                    annotations:
                                                        string: string
                                                    labels:
                                                        string: string
                                                retry:
                                                    backoff:
                                                        duration: string
                                                        factor: string
                                                        maxDuration: string
                                                    limit: string
                                                syncOptions:
                                                    - string
                                  selector:
                                    matchExpressions:
                                        - key: string
                                          operator: string
                                          values:
                                            - string
                                    matchLabels:
                                        string: string
                              mergeKeys:
                                - string
                              template:
                                metadata:
                                    annotations:
                                        string: string
                                    finalizers:
                                        - string
                                    labels:
                                        string: string
                                    name: string
                                    namespace: string
                                spec:
                                    destination:
                                        name: string
                                        namespace: string
                                        server: string
                                    ignoreDifferences:
                                        - group: string
                                          jqPathExpressions:
                                            - string
                                          jsonPointers:
                                            - string
                                          kind: string
                                          managedFieldsManagers:
                                            - string
                                          name: string
                                          namespace: string
                                    infos:
                                        - name: string
                                          value: string
                                    project: string
                                    revisionHistoryLimit: 0
                                    sources:
                                        - chart: string
                                          directory:
                                            exclude: string
                                            include: string
                                            jsonnet:
                                                extVars:
                                                    - code: false
                                                      name: string
                                                      value: string
                                                libs:
                                                    - string
                                                tlas:
                                                    - code: false
                                                      name: string
                                                      value: string
                                            recurse: false
                                          helm:
                                            fileParameters:
                                                - name: string
                                                  path: string
                                            ignoreMissingValueFiles: false
                                            parameters:
                                                - forceString: false
                                                  name: string
                                                  value: string
                                            passCredentials: false
                                            releaseName: string
                                            skipCrds: false
                                            valueFiles:
                                                - string
                                            values: string
                                            version: string
                                          kustomize:
                                            commonAnnotations:
                                                string: string
                                            commonLabels:
                                                string: string
                                            images:
                                                - string
                                            namePrefix: string
                                            nameSuffix: string
                                            patches:
                                                - options:
                                                    string: false
                                                  patch: string
                                                  path: string
                                                  target:
                                                    annotationSelector: string
                                                    group: string
                                                    kind: string
                                                    labelSelector: string
                                                    name: string
                                                    namespace: string
                                                    version: string
                                            version: string
                                          path: string
                                          plugin:
                                            envs:
                                                - name: string
                                                  value: string
                                            name: string
                                          ref: string
                                          repoUrl: string
                                          targetRevision: string
                                    syncPolicy:
                                        automated:
                                            allowEmpty: false
                                            prune: false
                                            selfHeal: false
                                        managedNamespaceMetadata:
                                            annotations:
                                                string: string
                                            labels:
                                                string: string
                                        retry:
                                            backoff:
                                                duration: string
                                                factor: string
                                                maxDuration: string
                                            limit: string
                                        syncOptions:
                                            - string
                          pullRequests:
                            - bitbucketServer:
                                api: string
                                basicAuth:
                                    passwordRef:
                                        key: string
                                        secretName: string
                                    username: string
                                project: string
                                repo: string
                              filters:
                                - branchMatch: string
                              gitea:
                                api: string
                                insecure: false
                                owner: string
                                repo: string
                                tokenRef:
                                    key: string
                                    secretName: string
                              github:
                                api: string
                                appSecretName: string
                                labels:
                                    - string
                                owner: string
                                repo: string
                                tokenRef:
                                    key: string
                                    secretName: string
                              gitlab:
                                api: string
                                labels:
                                    - string
                                project: string
                                pullRequestState: string
                                tokenRef:
                                    key: string
                                    secretName: string
                              requeueAfterSeconds: string
                              template:
                                metadata:
                                    annotations:
                                        string: string
                                    finalizers:
                                        - string
                                    labels:
                                        string: string
                                    name: string
                                    namespace: string
                                spec:
                                    destination:
                                        name: string
                                        namespace: string
                                        server: string
                                    ignoreDifferences:
                                        - group: string
                                          jqPathExpressions:
                                            - string
                                          jsonPointers:
                                            - string
                                          kind: string
                                          managedFieldsManagers:
                                            - string
                                          name: string
                                          namespace: string
                                    infos:
                                        - name: string
                                          value: string
                                    project: string
                                    revisionHistoryLimit: 0
                                    sources:
                                        - chart: string
                                          directory:
                                            exclude: string
                                            include: string
                                            jsonnet:
                                                extVars:
                                                    - code: false
                                                      name: string
                                                      value: string
                                                libs:
                                                    - string
                                                tlas:
                                                    - code: false
                                                      name: string
                                                      value: string
                                            recurse: false
                                          helm:
                                            fileParameters:
                                                - name: string
                                                  path: string
                                            ignoreMissingValueFiles: false
                                            parameters:
                                                - forceString: false
                                                  name: string
                                                  value: string
                                            passCredentials: false
                                            releaseName: string
                                            skipCrds: false
                                            valueFiles:
                                                - string
                                            values: string
                                            version: string
                                          kustomize:
                                            commonAnnotations:
                                                string: string
                                            commonLabels:
                                                string: string
                                            images:
                                                - string
                                            namePrefix: string
                                            nameSuffix: string
                                            patches:
                                                - options:
                                                    string: false
                                                  patch: string
                                                  path: string
                                                  target:
                                                    annotationSelector: string
                                                    group: string
                                                    kind: string
                                                    labelSelector: string
                                                    name: string
                                                    namespace: string
                                                    version: string
                                            version: string
                                          path: string
                                          plugin:
                                            envs:
                                                - name: string
                                                  value: string
                                            name: string
                                          ref: string
                                          repoUrl: string
                                          targetRevision: string
                                    syncPolicy:
                                        automated:
                                            allowEmpty: false
                                            prune: false
                                            selfHeal: false
                                        managedNamespaceMetadata:
                                            annotations:
                                                string: string
                                            labels:
                                                string: string
                                        retry:
                                            backoff:
                                                duration: string
                                                factor: string
                                                maxDuration: string
                                            limit: string
                                        syncOptions:
                                            - string
                          scmProviders:
                            - azureDevops:
                                accessTokenRef:
                                    key: string
                                    secretName: string
                                allBranches: false
                                api: string
                                organization: string
                                teamProject: string
                              bitbucketCloud:
                                allBranches: false
                                appPasswordRef:
                                    key: string
                                    secretName: string
                                owner: string
                                user: string
                              bitbucketServer:
                                allBranches: false
                                api: string
                                basicAuth:
                                    passwordRef:
                                        key: string
                                        secretName: string
                                    username: string
                                project: string
                              cloneProtocol: string
                              filters:
                                - branchMatch: string
                                  labelMatch: string
                                  pathsDoNotExists:
                                    - string
                                  pathsExists:
                                    - string
                                  repositoryMatch: string
                              gitea:
                                allBranches: false
                                api: string
                                insecure: false
                                owner: string
                                tokenRef:
                                    key: string
                                    secretName: string
                              github:
                                allBranches: false
                                api: string
                                appSecretName: string
                                organization: string
                                tokenRef:
                                    key: string
                                    secretName: string
                              gitlab:
                                allBranches: false
                                api: string
                                group: string
                                includeSubgroups: false
                                tokenRef:
                                    key: string
                                    secretName: string
                              requeueAfterSeconds: string
                              template:
                                metadata:
                                    annotations:
                                        string: string
                                    finalizers:
                                        - string
                                    labels:
                                        string: string
                                    name: string
                                    namespace: string
                                spec:
                                    destination:
                                        name: string
                                        namespace: string
                                        server: string
                                    ignoreDifferences:
                                        - group: string
                                          jqPathExpressions:
                                            - string
                                          jsonPointers:
                                            - string
                                          kind: string
                                          managedFieldsManagers:
                                            - string
                                          name: string
                                          namespace: string
                                    infos:
                                        - name: string
                                          value: string
                                    project: string
                                    revisionHistoryLimit: 0
                                    sources:
                                        - chart: string
                                          directory:
                                            exclude: string
                                            include: string
                                            jsonnet:
                                                extVars:
                                                    - code: false
                                                      name: string
                                                      value: string
                                                libs:
                                                    - string
                                                tlas:
                                                    - code: false
                                                      name: string
                                                      value: string
                                            recurse: false
                                          helm:
                                            fileParameters:
                                                - name: string
                                                  path: string
                                            ignoreMissingValueFiles: false
                                            parameters:
                                                - forceString: false
                                                  name: string
                                                  value: string
                                            passCredentials: false
                                            releaseName: string
                                            skipCrds: false
                                            valueFiles:
                                                - string
                                            values: string
                                            version: string
                                          kustomize:
                                            commonAnnotations:
                                                string: string
                                            commonLabels:
                                                string: string
                                            images:
                                                - string
                                            namePrefix: string
                                            nameSuffix: string
                                            patches:
                                                - options:
                                                    string: false
                                                  patch: string
                                                  path: string
                                                  target:
                                                    annotationSelector: string
                                                    group: string
                                                    kind: string
                                                    labelSelector: string
                                                    name: string
                                                    namespace: string
                                                    version: string
                                            version: string
                                          path: string
                                          plugin:
                                            envs:
                                                - name: string
                                                  value: string
                                            name: string
                                          ref: string
                                          repoUrl: string
                                          targetRevision: string
                                    syncPolicy:
                                        automated:
                                            allowEmpty: false
                                            prune: false
                                            selfHeal: false
                                        managedNamespaceMetadata:
                                            annotations:
                                                string: string
                                            labels:
                                                string: string
                                        retry:
                                            backoff:
                                                duration: string
                                                factor: string
                                                maxDuration: string
                                            limit: string
                                        syncOptions:
                                            - string
                          selector:
                            matchExpressions:
                                - key: string
                                  operator: string
                                  values:
                                    - string
                            matchLabels:
                                string: string
                      mergeKeys:
                        - string
                      template:
                        metadata:
                            annotations:
                                string: string
                            finalizers:
                                - string
                            labels:
                                string: string
                            name: string
                            namespace: string
                        spec:
                            destination:
                                name: string
                                namespace: string
                                server: string
                            ignoreDifferences:
                                - group: string
                                  jqPathExpressions:
                                    - string
                                  jsonPointers:
                                    - string
                                  kind: string
                                  managedFieldsManagers:
                                    - string
                                  name: string
                                  namespace: string
                            infos:
                                - name: string
                                  value: string
                            project: string
                            revisionHistoryLimit: 0
                            sources:
                                - chart: string
                                  directory:
                                    exclude: string
                                    include: string
                                    jsonnet:
                                        extVars:
                                            - code: false
                                              name: string
                                              value: string
                                        libs:
                                            - string
                                        tlas:
                                            - code: false
                                              name: string
                                              value: string
                                    recurse: false
                                  helm:
                                    fileParameters:
                                        - name: string
                                          path: string
                                    ignoreMissingValueFiles: false
                                    parameters:
                                        - forceString: false
                                          name: string
                                          value: string
                                    passCredentials: false
                                    releaseName: string
                                    skipCrds: false
                                    valueFiles:
                                        - string
                                    values: string
                                    version: string
                                  kustomize:
                                    commonAnnotations:
                                        string: string
                                    commonLabels:
                                        string: string
                                    images:
                                        - string
                                    namePrefix: string
                                    nameSuffix: string
                                    patches:
                                        - options:
                                            string: false
                                          patch: string
                                          path: string
                                          target:
                                            annotationSelector: string
                                            group: string
                                            kind: string
                                            labelSelector: string
                                            name: string
                                            namespace: string
                                            version: string
                                    version: string
                                  path: string
                                  plugin:
                                    envs:
                                        - name: string
                                          value: string
                                    name: string
                                  ref: string
                                  repoUrl: string
                                  targetRevision: string
                            syncPolicy:
                                automated:
                                    allowEmpty: false
                                    prune: false
                                    selfHeal: false
                                managedNamespaceMetadata:
                                    annotations:
                                        string: string
                                    labels:
                                        string: string
                                retry:
                                    backoff:
                                        duration: string
                                        factor: string
                                        maxDuration: string
                                    limit: string
                                syncOptions:
                                    - string
                  pullRequests:
                    - bitbucketServer:
                        api: string
                        basicAuth:
                            passwordRef:
                                key: string
                                secretName: string
                            username: string
                        project: string
                        repo: string
                      filters:
                        - branchMatch: string
                      gitea:
                        api: string
                        insecure: false
                        owner: string
                        repo: string
                        tokenRef:
                            key: string
                            secretName: string
                      github:
                        api: string
                        appSecretName: string
                        labels:
                            - string
                        owner: string
                        repo: string
                        tokenRef:
                            key: string
                            secretName: string
                      gitlab:
                        api: string
                        labels:
                            - string
                        project: string
                        pullRequestState: string
                        tokenRef:
                            key: string
                            secretName: string
                      requeueAfterSeconds: string
                      template:
                        metadata:
                            annotations:
                                string: string
                            finalizers:
                                - string
                            labels:
                                string: string
                            name: string
                            namespace: string
                        spec:
                            destination:
                                name: string
                                namespace: string
                                server: string
                            ignoreDifferences:
                                - group: string
                                  jqPathExpressions:
                                    - string
                                  jsonPointers:
                                    - string
                                  kind: string
                                  managedFieldsManagers:
                                    - string
                                  name: string
                                  namespace: string
                            infos:
                                - name: string
                                  value: string
                            project: string
                            revisionHistoryLimit: 0
                            sources:
                                - chart: string
                                  directory:
                                    exclude: string
                                    include: string
                                    jsonnet:
                                        extVars:
                                            - code: false
                                              name: string
                                              value: string
                                        libs:
                                            - string
                                        tlas:
                                            - code: false
                                              name: string
                                              value: string
                                    recurse: false
                                  helm:
                                    fileParameters:
                                        - name: string
                                          path: string
                                    ignoreMissingValueFiles: false
                                    parameters:
                                        - forceString: false
                                          name: string
                                          value: string
                                    passCredentials: false
                                    releaseName: string
                                    skipCrds: false
                                    valueFiles:
                                        - string
                                    values: string
                                    version: string
                                  kustomize:
                                    commonAnnotations:
                                        string: string
                                    commonLabels:
                                        string: string
                                    images:
                                        - string
                                    namePrefix: string
                                    nameSuffix: string
                                    patches:
                                        - options:
                                            string: false
                                          patch: string
                                          path: string
                                          target:
                                            annotationSelector: string
                                            group: string
                                            kind: string
                                            labelSelector: string
                                            name: string
                                            namespace: string
                                            version: string
                                    version: string
                                  path: string
                                  plugin:
                                    envs:
                                        - name: string
                                          value: string
                                    name: string
                                  ref: string
                                  repoUrl: string
                                  targetRevision: string
                            syncPolicy:
                                automated:
                                    allowEmpty: false
                                    prune: false
                                    selfHeal: false
                                managedNamespaceMetadata:
                                    annotations:
                                        string: string
                                    labels:
                                        string: string
                                retry:
                                    backoff:
                                        duration: string
                                        factor: string
                                        maxDuration: string
                                    limit: string
                                syncOptions:
                                    - string
                  scmProviders:
                    - azureDevops:
                        accessTokenRef:
                            key: string
                            secretName: string
                        allBranches: false
                        api: string
                        organization: string
                        teamProject: string
                      bitbucketCloud:
                        allBranches: false
                        appPasswordRef:
                            key: string
                            secretName: string
                        owner: string
                        user: string
                      bitbucketServer:
                        allBranches: false
                        api: string
                        basicAuth:
                            passwordRef:
                                key: string
                                secretName: string
                            username: string
                        project: string
                      cloneProtocol: string
                      filters:
                        - branchMatch: string
                          labelMatch: string
                          pathsDoNotExists:
                            - string
                          pathsExists:
                            - string
                          repositoryMatch: string
                      gitea:
                        allBranches: false
                        api: string
                        insecure: false
                        owner: string
                        tokenRef:
                            key: string
                            secretName: string
                      github:
                        allBranches: false
                        api: string
                        appSecretName: string
                        organization: string
                        tokenRef:
                            key: string
                            secretName: string
                      gitlab:
                        allBranches: false
                        api: string
                        group: string
                        includeSubgroups: false
                        tokenRef:
                            key: string
                            secretName: string
                      requeueAfterSeconds: string
                      template:
                        metadata:
                            annotations:
                                string: string
                            finalizers:
                                - string
                            labels:
                                string: string
                            name: string
                            namespace: string
                        spec:
                            destination:
                                name: string
                                namespace: string
                                server: string
                            ignoreDifferences:
                                - group: string
                                  jqPathExpressions:
                                    - string
                                  jsonPointers:
                                    - string
                                  kind: string
                                  managedFieldsManagers:
                                    - string
                                  name: string
                                  namespace: string
                            infos:
                                - name: string
                                  value: string
                            project: string
                            revisionHistoryLimit: 0
                            sources:
                                - chart: string
                                  directory:
                                    exclude: string
                                    include: string
                                    jsonnet:
                                        extVars:
                                            - code: false
                                              name: string
                                              value: string
                                        libs:
                                            - string
                                        tlas:
                                            - code: false
                                              name: string
                                              value: string
                                    recurse: false
                                  helm:
                                    fileParameters:
                                        - name: string
                                          path: string
                                    ignoreMissingValueFiles: false
                                    parameters:
                                        - forceString: false
                                          name: string
                                          value: string
                                    passCredentials: false
                                    releaseName: string
                                    skipCrds: false
                                    valueFiles:
                                        - string
                                    values: string
                                    version: string
                                  kustomize:
                                    commonAnnotations:
                                        string: string
                                    commonLabels:
                                        string: string
                                    images:
                                        - string
                                    namePrefix: string
                                    nameSuffix: string
                                    patches:
                                        - options:
                                            string: false
                                          patch: string
                                          path: string
                                          target:
                                            annotationSelector: string
                                            group: string
                                            kind: string
                                            labelSelector: string
                                            name: string
                                            namespace: string
                                            version: string
                                    version: string
                                  path: string
                                  plugin:
                                    envs:
                                        - name: string
                                          value: string
                                    name: string
                                  ref: string
                                  repoUrl: string
                                  targetRevision: string
                            syncPolicy:
                                automated:
                                    allowEmpty: false
                                    prune: false
                                    selfHeal: false
                                managedNamespaceMetadata:
                                    annotations:
                                        string: string
                                    labels:
                                        string: string
                                retry:
                                    backoff:
                                        duration: string
                                        factor: string
                                        maxDuration: string
                                    limit: string
                                syncOptions:
                                    - string
                  selector:
                    matchExpressions:
                        - key: string
                          operator: string
                          values:
                            - string
                    matchLabels:
                        string: string
            goTemplate: false
            goTemplateOptions:
                - string
            ignoreApplicationDifferences:
                - jqPathExpressions:
                    - string
                  jsonPointers:
                    - string
                  name: string
            strategy:
                rollingSyncs:
                    - steps:
                        - matchExpressions:
                            - key: string
                              operator: string
                              values:
                                - string
                          maxUpdate: string
                type: string
            syncPolicy:
                applicationsSync: string
                preserveResourcesOnDeletion: false
            template:
                metadata:
                    annotations:
                        string: string
                    finalizers:
                        - string
                    labels:
                        string: string
                    name: string
                    namespace: string
                spec:
                    destination:
                        name: string
                        namespace: string
                        server: string
                    ignoreDifferences:
                        - group: string
                          jqPathExpressions:
                            - string
                          jsonPointers:
                            - string
                          kind: string
                          managedFieldsManagers:
                            - string
                          name: string
                          namespace: string
                    infos:
                        - name: string
                          value: string
                    project: string
                    revisionHistoryLimit: 0
                    sources:
                        - chart: string
                          directory:
                            exclude: string
                            include: string
                            jsonnet:
                                extVars:
                                    - code: false
                                      name: string
                                      value: string
                                libs:
                                    - string
                                tlas:
                                    - code: false
                                      name: string
                                      value: string
                            recurse: false
                          helm:
                            fileParameters:
                                - name: string
                                  path: string
                            ignoreMissingValueFiles: false
                            parameters:
                                - forceString: false
                                  name: string
                                  value: string
                            passCredentials: false
                            releaseName: string
                            skipCrds: false
                            valueFiles:
                                - string
                            values: string
                            version: string
                          kustomize:
                            commonAnnotations:
                                string: string
                            commonLabels:
                                string: string
                            images:
                                - string
                            namePrefix: string
                            nameSuffix: string
                            patches:
                                - options:
                                    string: false
                                  patch: string
                                  path: string
                                  target:
                                    annotationSelector: string
                                    group: string
                                    kind: string
                                    labelSelector: string
                                    name: string
                                    namespace: string
                                    version: string
                            version: string
                          path: string
                          plugin:
                            envs:
                                - name: string
                                  value: string
                            name: string
                          ref: string
                          repoUrl: string
                          targetRevision: string
                    syncPolicy:
                        automated:
                            allowEmpty: false
                            prune: false
                            selfHeal: false
                        managedNamespaceMetadata:
                            annotations:
                                string: string
                            labels:
                                string: string
                        retry:
                            backoff:
                                duration: string
                                factor: string
                                maxDuration: string
                            limit: string
                        syncOptions:
                            - string
            templatePatch: string
    

    ApplicationSet 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 ApplicationSet resource accepts the following input properties:

    Metadata Three14.Argocd.Inputs.ApplicationSetMetadata
    Standard Kubernetes object metadata. For more info see the Kubernetes reference.
    Spec Three14.Argocd.Inputs.ApplicationSetSpec
    ArgoCD application set resource spec.
    Metadata ApplicationSetMetadataArgs
    Standard Kubernetes object metadata. For more info see the Kubernetes reference.
    Spec ApplicationSetSpecArgs
    ArgoCD application set resource spec.
    metadata ApplicationSetMetadata
    Standard Kubernetes object metadata. For more info see the Kubernetes reference.
    spec ApplicationSetSpec
    ArgoCD application set resource spec.
    metadata ApplicationSetMetadata
    Standard Kubernetes object metadata. For more info see the Kubernetes reference.
    spec ApplicationSetSpec
    ArgoCD application set resource spec.
    metadata ApplicationSetMetadataArgs
    Standard Kubernetes object metadata. For more info see the Kubernetes reference.
    spec ApplicationSetSpecArgs
    ArgoCD application set resource spec.
    metadata Property Map
    Standard Kubernetes object metadata. For more info see the Kubernetes reference.
    spec Property Map
    ArgoCD application set resource spec.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ApplicationSet 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 ApplicationSet Resource

    Get an existing ApplicationSet 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?: ApplicationSetState, opts?: CustomResourceOptions): ApplicationSet
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            metadata: Optional[ApplicationSetMetadataArgs] = None,
            spec: Optional[ApplicationSetSpecArgs] = None) -> ApplicationSet
    func GetApplicationSet(ctx *Context, name string, id IDInput, state *ApplicationSetState, opts ...ResourceOption) (*ApplicationSet, error)
    public static ApplicationSet Get(string name, Input<string> id, ApplicationSetState? state, CustomResourceOptions? opts = null)
    public static ApplicationSet get(String name, Output<String> id, ApplicationSetState state, CustomResourceOptions options)
    resources:  _:    type: argocd:ApplicationSet    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.
    The following state arguments are supported:
    Metadata Three14.Argocd.Inputs.ApplicationSetMetadata
    Standard Kubernetes object metadata. For more info see the Kubernetes reference.
    Spec Three14.Argocd.Inputs.ApplicationSetSpec
    ArgoCD application set resource spec.
    Metadata ApplicationSetMetadataArgs
    Standard Kubernetes object metadata. For more info see the Kubernetes reference.
    Spec ApplicationSetSpecArgs
    ArgoCD application set resource spec.
    metadata ApplicationSetMetadata
    Standard Kubernetes object metadata. For more info see the Kubernetes reference.
    spec ApplicationSetSpec
    ArgoCD application set resource spec.
    metadata ApplicationSetMetadata
    Standard Kubernetes object metadata. For more info see the Kubernetes reference.
    spec ApplicationSetSpec
    ArgoCD application set resource spec.
    metadata ApplicationSetMetadataArgs
    Standard Kubernetes object metadata. For more info see the Kubernetes reference.
    spec ApplicationSetSpecArgs
    ArgoCD application set resource spec.
    metadata Property Map
    Standard Kubernetes object metadata. For more info see the Kubernetes reference.
    spec Property Map
    ArgoCD application set resource spec.

    Supporting Types

    Note: There are over 1000 nested types for this resource. Only the first 1000 types are included in this documentation.

    ApplicationSetMetadata, ApplicationSetMetadataArgs

    Annotations Dictionary<string, string>
    An unstructured key value map stored with the applicationsets.argoproj.io that may be used to store arbitrary metadata. More info: http://kubernetes.io/docs/user-guide/annotations
    Generation int
    A sequence number representing a specific generation of the desired state.
    Labels Dictionary<string, string>
    Map of string keys and values that can be used to organize and categorize (scope and select) the applicationsets.argoproj.io. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels
    Name string
    Name of the applicationsets.argoproj.io, must be unique. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names
    Namespace string
    Namespace of the applicationsets.argoproj.io, must be unique. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
    ResourceVersion string
    An opaque value that represents the internal version of this applicationsets.argoproj.io that can be used by clients to determine when applicationsets.argoproj.io has changed. Read more: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
    Uid string
    The unique in time and space value for this applicationsets.argoproj.io. More info: http://kubernetes.io/docs/user-guide/identifiers#uids
    Annotations map[string]string
    An unstructured key value map stored with the applicationsets.argoproj.io that may be used to store arbitrary metadata. More info: http://kubernetes.io/docs/user-guide/annotations
    Generation int
    A sequence number representing a specific generation of the desired state.
    Labels map[string]string
    Map of string keys and values that can be used to organize and categorize (scope and select) the applicationsets.argoproj.io. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels
    Name string
    Name of the applicationsets.argoproj.io, must be unique. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names
    Namespace string
    Namespace of the applicationsets.argoproj.io, must be unique. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
    ResourceVersion string
    An opaque value that represents the internal version of this applicationsets.argoproj.io that can be used by clients to determine when applicationsets.argoproj.io has changed. Read more: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
    Uid string
    The unique in time and space value for this applicationsets.argoproj.io. More info: http://kubernetes.io/docs/user-guide/identifiers#uids
    annotations Map<String,String>
    An unstructured key value map stored with the applicationsets.argoproj.io that may be used to store arbitrary metadata. More info: http://kubernetes.io/docs/user-guide/annotations
    generation Integer
    A sequence number representing a specific generation of the desired state.
    labels Map<String,String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the applicationsets.argoproj.io. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels
    name String
    Name of the applicationsets.argoproj.io, must be unique. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names
    namespace String
    Namespace of the applicationsets.argoproj.io, must be unique. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
    resourceVersion String
    An opaque value that represents the internal version of this applicationsets.argoproj.io that can be used by clients to determine when applicationsets.argoproj.io has changed. Read more: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
    uid String
    The unique in time and space value for this applicationsets.argoproj.io. More info: http://kubernetes.io/docs/user-guide/identifiers#uids
    annotations {[key: string]: string}
    An unstructured key value map stored with the applicationsets.argoproj.io that may be used to store arbitrary metadata. More info: http://kubernetes.io/docs/user-guide/annotations
    generation number
    A sequence number representing a specific generation of the desired state.
    labels {[key: string]: string}
    Map of string keys and values that can be used to organize and categorize (scope and select) the applicationsets.argoproj.io. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels
    name string
    Name of the applicationsets.argoproj.io, must be unique. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names
    namespace string
    Namespace of the applicationsets.argoproj.io, must be unique. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
    resourceVersion string
    An opaque value that represents the internal version of this applicationsets.argoproj.io that can be used by clients to determine when applicationsets.argoproj.io has changed. Read more: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
    uid string
    The unique in time and space value for this applicationsets.argoproj.io. More info: http://kubernetes.io/docs/user-guide/identifiers#uids
    annotations Mapping[str, str]
    An unstructured key value map stored with the applicationsets.argoproj.io that may be used to store arbitrary metadata. More info: http://kubernetes.io/docs/user-guide/annotations
    generation int
    A sequence number representing a specific generation of the desired state.
    labels Mapping[str, str]
    Map of string keys and values that can be used to organize and categorize (scope and select) the applicationsets.argoproj.io. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels
    name str
    Name of the applicationsets.argoproj.io, must be unique. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names
    namespace str
    Namespace of the applicationsets.argoproj.io, must be unique. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
    resource_version str
    An opaque value that represents the internal version of this applicationsets.argoproj.io that can be used by clients to determine when applicationsets.argoproj.io has changed. Read more: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
    uid str
    The unique in time and space value for this applicationsets.argoproj.io. More info: http://kubernetes.io/docs/user-guide/identifiers#uids
    annotations Map<String>
    An unstructured key value map stored with the applicationsets.argoproj.io that may be used to store arbitrary metadata. More info: http://kubernetes.io/docs/user-guide/annotations
    generation Number
    A sequence number representing a specific generation of the desired state.
    labels Map<String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the applicationsets.argoproj.io. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels
    name String
    Name of the applicationsets.argoproj.io, must be unique. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names
    namespace String
    Namespace of the applicationsets.argoproj.io, must be unique. Cannot be updated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
    resourceVersion String
    An opaque value that represents the internal version of this applicationsets.argoproj.io that can be used by clients to determine when applicationsets.argoproj.io has changed. Read more: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
    uid String
    The unique in time and space value for this applicationsets.argoproj.io. More info: http://kubernetes.io/docs/user-guide/identifiers#uids

    ApplicationSetSpec, ApplicationSetSpecArgs

    Generators List<Three14.Argocd.Inputs.ApplicationSetSpecGenerator>
    Application set generators. Generators are responsible for generating parameters, which are then rendered into the template: fields of the ApplicationSet resource.
    Template Three14.Argocd.Inputs.ApplicationSetSpecTemplate
    Application set template. The template fields of the ApplicationSet spec are used to generate Argo CD Application resources.
    GoTemplate bool
    Enable use of Go Text Template.
    GoTemplateOptions List<string>
    Optional list of Go Templating Options. Only relevant if go_template is true.
    IgnoreApplicationDifferences List<Three14.Argocd.Inputs.ApplicationSetSpecIgnoreApplicationDifference>
    Application Set ignoreApplicationDifferences.
    Strategy Three14.Argocd.Inputs.ApplicationSetSpecStrategy
    Progressive Sync strategy
    SyncPolicy Three14.Argocd.Inputs.ApplicationSetSpecSyncPolicy
    Application Set sync policy.
    TemplatePatch string
    Application set template patch, as in the Argo CD ApplicationSet spec.
    Generators []ApplicationSetSpecGenerator
    Application set generators. Generators are responsible for generating parameters, which are then rendered into the template: fields of the ApplicationSet resource.
    Template ApplicationSetSpecTemplate
    Application set template. The template fields of the ApplicationSet spec are used to generate Argo CD Application resources.
    GoTemplate bool
    Enable use of Go Text Template.
    GoTemplateOptions []string
    Optional list of Go Templating Options. Only relevant if go_template is true.
    IgnoreApplicationDifferences []ApplicationSetSpecIgnoreApplicationDifference
    Application Set ignoreApplicationDifferences.
    Strategy ApplicationSetSpecStrategy
    Progressive Sync strategy
    SyncPolicy ApplicationSetSpecSyncPolicy
    Application Set sync policy.
    TemplatePatch string
    Application set template patch, as in the Argo CD ApplicationSet spec.
    generators List<ApplicationSetSpecGenerator>
    Application set generators. Generators are responsible for generating parameters, which are then rendered into the template: fields of the ApplicationSet resource.
    template ApplicationSetSpecTemplate
    Application set template. The template fields of the ApplicationSet spec are used to generate Argo CD Application resources.
    goTemplate Boolean
    Enable use of Go Text Template.
    goTemplateOptions List<String>
    Optional list of Go Templating Options. Only relevant if go_template is true.
    ignoreApplicationDifferences List<ApplicationSetSpecIgnoreApplicationDifference>
    Application Set ignoreApplicationDifferences.
    strategy ApplicationSetSpecStrategy
    Progressive Sync strategy
    syncPolicy ApplicationSetSpecSyncPolicy
    Application Set sync policy.
    templatePatch String
    Application set template patch, as in the Argo CD ApplicationSet spec.
    generators ApplicationSetSpecGenerator[]
    Application set generators. Generators are responsible for generating parameters, which are then rendered into the template: fields of the ApplicationSet resource.
    template ApplicationSetSpecTemplate
    Application set template. The template fields of the ApplicationSet spec are used to generate Argo CD Application resources.
    goTemplate boolean
    Enable use of Go Text Template.
    goTemplateOptions string[]
    Optional list of Go Templating Options. Only relevant if go_template is true.
    ignoreApplicationDifferences ApplicationSetSpecIgnoreApplicationDifference[]
    Application Set ignoreApplicationDifferences.
    strategy ApplicationSetSpecStrategy
    Progressive Sync strategy
    syncPolicy ApplicationSetSpecSyncPolicy
    Application Set sync policy.
    templatePatch string
    Application set template patch, as in the Argo CD ApplicationSet spec.
    generators Sequence[ApplicationSetSpecGenerator]
    Application set generators. Generators are responsible for generating parameters, which are then rendered into the template: fields of the ApplicationSet resource.
    template ApplicationSetSpecTemplate
    Application set template. The template fields of the ApplicationSet spec are used to generate Argo CD Application resources.
    go_template bool
    Enable use of Go Text Template.
    go_template_options Sequence[str]
    Optional list of Go Templating Options. Only relevant if go_template is true.
    ignore_application_differences Sequence[ApplicationSetSpecIgnoreApplicationDifference]
    Application Set ignoreApplicationDifferences.
    strategy ApplicationSetSpecStrategy
    Progressive Sync strategy
    sync_policy ApplicationSetSpecSyncPolicy
    Application Set sync policy.
    template_patch str
    Application set template patch, as in the Argo CD ApplicationSet spec.
    generators List<Property Map>
    Application set generators. Generators are responsible for generating parameters, which are then rendered into the template: fields of the ApplicationSet resource.
    template Property Map
    Application set template. The template fields of the ApplicationSet spec are used to generate Argo CD Application resources.
    goTemplate Boolean
    Enable use of Go Text Template.
    goTemplateOptions List<String>
    Optional list of Go Templating Options. Only relevant if go_template is true.
    ignoreApplicationDifferences List<Property Map>
    Application Set ignoreApplicationDifferences.
    strategy Property Map
    Progressive Sync strategy
    syncPolicy Property Map
    Application Set sync policy.
    templatePatch String
    Application set template patch, as in the Argo CD ApplicationSet spec.

    ApplicationSetSpecGenerator, ApplicationSetSpecGeneratorArgs

    ClusterDecisionResources List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResource>
    The cluster decision resource generates a list of Argo CD clusters.
    Clusters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorCluster>
    The cluster generator produces parameters based on the list of items found within the cluster secret.
    Gits List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorGit>
    Git generators generates parameters using either the directory structure of a specified Git repository (directory generator), or, using the contents of JSON/YAML files found within a specified repository (file generator).
    Lists List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorList>
    List generators generate parameters based on an arbitrary list of key/value pairs (as long as the values are string values).
    Matrices List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrix>
    Matrix generators combine the parameters generated by two child generators, iterating through every combination of each generator's generated parameters. Take note of the restrictions regarding their usage - particularly regarding nesting matrix generators.
    Merges List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMerge>
    Merge generators combine parameters produced by the base (first) generator with matching parameter sets produced by subsequent generators. Take note of the restrictions regarding their usage - particularly regarding nesting merge generators.
    PullRequests List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorPullRequest>
    Pull Request generators uses the API of an SCMaaS provider to automatically discover open pull requests within a repository.
    ScmProviders List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorScmProvider>
    SCM Provider generators uses the API of an SCMaaS provider to automatically discover repositories within an organization.
    Selector Three14.Argocd.Inputs.ApplicationSetSpecGeneratorSelector
    The Selector allows to post-filter based on generated values using the kubernetes common labelSelector format.
    ClusterDecisionResources []ApplicationSetSpecGeneratorClusterDecisionResource
    The cluster decision resource generates a list of Argo CD clusters.
    Clusters []ApplicationSetSpecGeneratorCluster
    The cluster generator produces parameters based on the list of items found within the cluster secret.
    Gits []ApplicationSetSpecGeneratorGit
    Git generators generates parameters using either the directory structure of a specified Git repository (directory generator), or, using the contents of JSON/YAML files found within a specified repository (file generator).
    Lists []ApplicationSetSpecGeneratorList
    List generators generate parameters based on an arbitrary list of key/value pairs (as long as the values are string values).
    Matrices []ApplicationSetSpecGeneratorMatrix
    Matrix generators combine the parameters generated by two child generators, iterating through every combination of each generator's generated parameters. Take note of the restrictions regarding their usage - particularly regarding nesting matrix generators.
    Merges []ApplicationSetSpecGeneratorMerge
    Merge generators combine parameters produced by the base (first) generator with matching parameter sets produced by subsequent generators. Take note of the restrictions regarding their usage - particularly regarding nesting merge generators.
    PullRequests []ApplicationSetSpecGeneratorPullRequest
    Pull Request generators uses the API of an SCMaaS provider to automatically discover open pull requests within a repository.
    ScmProviders []ApplicationSetSpecGeneratorScmProvider
    SCM Provider generators uses the API of an SCMaaS provider to automatically discover repositories within an organization.
    Selector ApplicationSetSpecGeneratorSelector
    The Selector allows to post-filter based on generated values using the kubernetes common labelSelector format.
    clusterDecisionResources List<ApplicationSetSpecGeneratorClusterDecisionResource>
    The cluster decision resource generates a list of Argo CD clusters.
    clusters List<ApplicationSetSpecGeneratorCluster>
    The cluster generator produces parameters based on the list of items found within the cluster secret.
    gits List<ApplicationSetSpecGeneratorGit>
    Git generators generates parameters using either the directory structure of a specified Git repository (directory generator), or, using the contents of JSON/YAML files found within a specified repository (file generator).
    lists List<ApplicationSetSpecGeneratorList>
    List generators generate parameters based on an arbitrary list of key/value pairs (as long as the values are string values).
    matrices List<ApplicationSetSpecGeneratorMatrix>
    Matrix generators combine the parameters generated by two child generators, iterating through every combination of each generator's generated parameters. Take note of the restrictions regarding their usage - particularly regarding nesting matrix generators.
    merges List<ApplicationSetSpecGeneratorMerge>
    Merge generators combine parameters produced by the base (first) generator with matching parameter sets produced by subsequent generators. Take note of the restrictions regarding their usage - particularly regarding nesting merge generators.
    pullRequests List<ApplicationSetSpecGeneratorPullRequest>
    Pull Request generators uses the API of an SCMaaS provider to automatically discover open pull requests within a repository.
    scmProviders List<ApplicationSetSpecGeneratorScmProvider>
    SCM Provider generators uses the API of an SCMaaS provider to automatically discover repositories within an organization.
    selector ApplicationSetSpecGeneratorSelector
    The Selector allows to post-filter based on generated values using the kubernetes common labelSelector format.
    clusterDecisionResources ApplicationSetSpecGeneratorClusterDecisionResource[]
    The cluster decision resource generates a list of Argo CD clusters.
    clusters ApplicationSetSpecGeneratorCluster[]
    The cluster generator produces parameters based on the list of items found within the cluster secret.
    gits ApplicationSetSpecGeneratorGit[]
    Git generators generates parameters using either the directory structure of a specified Git repository (directory generator), or, using the contents of JSON/YAML files found within a specified repository (file generator).
    lists ApplicationSetSpecGeneratorList[]
    List generators generate parameters based on an arbitrary list of key/value pairs (as long as the values are string values).
    matrices ApplicationSetSpecGeneratorMatrix[]
    Matrix generators combine the parameters generated by two child generators, iterating through every combination of each generator's generated parameters. Take note of the restrictions regarding their usage - particularly regarding nesting matrix generators.
    merges ApplicationSetSpecGeneratorMerge[]
    Merge generators combine parameters produced by the base (first) generator with matching parameter sets produced by subsequent generators. Take note of the restrictions regarding their usage - particularly regarding nesting merge generators.
    pullRequests ApplicationSetSpecGeneratorPullRequest[]
    Pull Request generators uses the API of an SCMaaS provider to automatically discover open pull requests within a repository.
    scmProviders ApplicationSetSpecGeneratorScmProvider[]
    SCM Provider generators uses the API of an SCMaaS provider to automatically discover repositories within an organization.
    selector ApplicationSetSpecGeneratorSelector
    The Selector allows to post-filter based on generated values using the kubernetes common labelSelector format.
    cluster_decision_resources Sequence[ApplicationSetSpecGeneratorClusterDecisionResource]
    The cluster decision resource generates a list of Argo CD clusters.
    clusters Sequence[ApplicationSetSpecGeneratorCluster]
    The cluster generator produces parameters based on the list of items found within the cluster secret.
    gits Sequence[ApplicationSetSpecGeneratorGit]
    Git generators generates parameters using either the directory structure of a specified Git repository (directory generator), or, using the contents of JSON/YAML files found within a specified repository (file generator).
    lists Sequence[ApplicationSetSpecGeneratorList]
    List generators generate parameters based on an arbitrary list of key/value pairs (as long as the values are string values).
    matrices Sequence[ApplicationSetSpecGeneratorMatrix]
    Matrix generators combine the parameters generated by two child generators, iterating through every combination of each generator's generated parameters. Take note of the restrictions regarding their usage - particularly regarding nesting matrix generators.
    merges Sequence[ApplicationSetSpecGeneratorMerge]
    Merge generators combine parameters produced by the base (first) generator with matching parameter sets produced by subsequent generators. Take note of the restrictions regarding their usage - particularly regarding nesting merge generators.
    pull_requests Sequence[ApplicationSetSpecGeneratorPullRequest]
    Pull Request generators uses the API of an SCMaaS provider to automatically discover open pull requests within a repository.
    scm_providers Sequence[ApplicationSetSpecGeneratorScmProvider]
    SCM Provider generators uses the API of an SCMaaS provider to automatically discover repositories within an organization.
    selector ApplicationSetSpecGeneratorSelector
    The Selector allows to post-filter based on generated values using the kubernetes common labelSelector format.
    clusterDecisionResources List<Property Map>
    The cluster decision resource generates a list of Argo CD clusters.
    clusters List<Property Map>
    The cluster generator produces parameters based on the list of items found within the cluster secret.
    gits List<Property Map>
    Git generators generates parameters using either the directory structure of a specified Git repository (directory generator), or, using the contents of JSON/YAML files found within a specified repository (file generator).
    lists List<Property Map>
    List generators generate parameters based on an arbitrary list of key/value pairs (as long as the values are string values).
    matrices List<Property Map>
    Matrix generators combine the parameters generated by two child generators, iterating through every combination of each generator's generated parameters. Take note of the restrictions regarding their usage - particularly regarding nesting matrix generators.
    merges List<Property Map>
    Merge generators combine parameters produced by the base (first) generator with matching parameter sets produced by subsequent generators. Take note of the restrictions regarding their usage - particularly regarding nesting merge generators.
    pullRequests List<Property Map>
    Pull Request generators uses the API of an SCMaaS provider to automatically discover open pull requests within a repository.
    scmProviders List<Property Map>
    SCM Provider generators uses the API of an SCMaaS provider to automatically discover repositories within an organization.
    selector Property Map
    The Selector allows to post-filter based on generated values using the kubernetes common labelSelector format.

    ApplicationSetSpecGeneratorCluster, ApplicationSetSpecGeneratorClusterArgs

    Enabled bool
    Boolean value defaulting to true to indicate that this block has been added thereby allowing all other attributes to be optional.
    Selector Three14.Argocd.Inputs.ApplicationSetSpecGeneratorClusterSelector
    Label selector used to narrow the scope of targeted clusters.
    Template Three14.Argocd.Inputs.ApplicationSetSpecGeneratorClusterTemplate
    Generator template. Used to override the values of the spec-level template.
    Values Dictionary<string, string>
    Arbitrary string key-value pairs to pass to the template via the values field of the cluster generator.
    Enabled bool
    Boolean value defaulting to true to indicate that this block has been added thereby allowing all other attributes to be optional.
    Selector ApplicationSetSpecGeneratorClusterSelector
    Label selector used to narrow the scope of targeted clusters.
    Template ApplicationSetSpecGeneratorClusterTemplate
    Generator template. Used to override the values of the spec-level template.
    Values map[string]string
    Arbitrary string key-value pairs to pass to the template via the values field of the cluster generator.
    enabled Boolean
    Boolean value defaulting to true to indicate that this block has been added thereby allowing all other attributes to be optional.
    selector ApplicationSetSpecGeneratorClusterSelector
    Label selector used to narrow the scope of targeted clusters.
    template ApplicationSetSpecGeneratorClusterTemplate
    Generator template. Used to override the values of the spec-level template.
    values Map<String,String>
    Arbitrary string key-value pairs to pass to the template via the values field of the cluster generator.
    enabled boolean
    Boolean value defaulting to true to indicate that this block has been added thereby allowing all other attributes to be optional.
    selector ApplicationSetSpecGeneratorClusterSelector
    Label selector used to narrow the scope of targeted clusters.
    template ApplicationSetSpecGeneratorClusterTemplate
    Generator template. Used to override the values of the spec-level template.
    values {[key: string]: string}
    Arbitrary string key-value pairs to pass to the template via the values field of the cluster generator.
    enabled bool
    Boolean value defaulting to true to indicate that this block has been added thereby allowing all other attributes to be optional.
    selector ApplicationSetSpecGeneratorClusterSelector
    Label selector used to narrow the scope of targeted clusters.
    template ApplicationSetSpecGeneratorClusterTemplate
    Generator template. Used to override the values of the spec-level template.
    values Mapping[str, str]
    Arbitrary string key-value pairs to pass to the template via the values field of the cluster generator.
    enabled Boolean
    Boolean value defaulting to true to indicate that this block has been added thereby allowing all other attributes to be optional.
    selector Property Map
    Label selector used to narrow the scope of targeted clusters.
    template Property Map
    Generator template. Used to override the values of the spec-level template.
    values Map<String>
    Arbitrary string key-value pairs to pass to the template via the values field of the cluster generator.

    ApplicationSetSpecGeneratorClusterDecisionResource, ApplicationSetSpecGeneratorClusterDecisionResourceArgs

    ConfigMapRef string
    ConfigMap with the duck type definitions needed to retrieve the data this includes apiVersion(group/version), kind, matchKey and validation settings.
    LabelSelector Three14.Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceLabelSelector
    Label selector used to find the resource defined in the config_map_ref. Alternative to name.
    Name string
    Resource name of the kind, group and version, defined in the config_map_ref.
    RequeueAfterSeconds string
    How often to check for changes (in seconds). Default: 3min.
    Template Three14.Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceTemplate
    Generator template. Used to override the values of the spec-level template.
    Values Dictionary<string, string>
    Arbitrary string key-value pairs which are passed directly as parameters to the template.
    ConfigMapRef string
    ConfigMap with the duck type definitions needed to retrieve the data this includes apiVersion(group/version), kind, matchKey and validation settings.
    LabelSelector ApplicationSetSpecGeneratorClusterDecisionResourceLabelSelector
    Label selector used to find the resource defined in the config_map_ref. Alternative to name.
    Name string
    Resource name of the kind, group and version, defined in the config_map_ref.
    RequeueAfterSeconds string
    How often to check for changes (in seconds). Default: 3min.
    Template ApplicationSetSpecGeneratorClusterDecisionResourceTemplate
    Generator template. Used to override the values of the spec-level template.
    Values map[string]string
    Arbitrary string key-value pairs which are passed directly as parameters to the template.
    configMapRef String
    ConfigMap with the duck type definitions needed to retrieve the data this includes apiVersion(group/version), kind, matchKey and validation settings.
    labelSelector ApplicationSetSpecGeneratorClusterDecisionResourceLabelSelector
    Label selector used to find the resource defined in the config_map_ref. Alternative to name.
    name String
    Resource name of the kind, group and version, defined in the config_map_ref.
    requeueAfterSeconds String
    How often to check for changes (in seconds). Default: 3min.
    template ApplicationSetSpecGeneratorClusterDecisionResourceTemplate
    Generator template. Used to override the values of the spec-level template.
    values Map<String,String>
    Arbitrary string key-value pairs which are passed directly as parameters to the template.
    configMapRef string
    ConfigMap with the duck type definitions needed to retrieve the data this includes apiVersion(group/version), kind, matchKey and validation settings.
    labelSelector ApplicationSetSpecGeneratorClusterDecisionResourceLabelSelector
    Label selector used to find the resource defined in the config_map_ref. Alternative to name.
    name string
    Resource name of the kind, group and version, defined in the config_map_ref.
    requeueAfterSeconds string
    How often to check for changes (in seconds). Default: 3min.
    template ApplicationSetSpecGeneratorClusterDecisionResourceTemplate
    Generator template. Used to override the values of the spec-level template.
    values {[key: string]: string}
    Arbitrary string key-value pairs which are passed directly as parameters to the template.
    config_map_ref str
    ConfigMap with the duck type definitions needed to retrieve the data this includes apiVersion(group/version), kind, matchKey and validation settings.
    label_selector ApplicationSetSpecGeneratorClusterDecisionResourceLabelSelector
    Label selector used to find the resource defined in the config_map_ref. Alternative to name.
    name str
    Resource name of the kind, group and version, defined in the config_map_ref.
    requeue_after_seconds str
    How often to check for changes (in seconds). Default: 3min.
    template ApplicationSetSpecGeneratorClusterDecisionResourceTemplate
    Generator template. Used to override the values of the spec-level template.
    values Mapping[str, str]
    Arbitrary string key-value pairs which are passed directly as parameters to the template.
    configMapRef String
    ConfigMap with the duck type definitions needed to retrieve the data this includes apiVersion(group/version), kind, matchKey and validation settings.
    labelSelector Property Map
    Label selector used to find the resource defined in the config_map_ref. Alternative to name.
    name String
    Resource name of the kind, group and version, defined in the config_map_ref.
    requeueAfterSeconds String
    How often to check for changes (in seconds). Default: 3min.
    template Property Map
    Generator template. Used to override the values of the spec-level template.
    values Map<String>
    Arbitrary string key-value pairs which are passed directly as parameters to the template.

    ApplicationSetSpecGeneratorClusterDecisionResourceLabelSelector, ApplicationSetSpecGeneratorClusterDecisionResourceLabelSelectorArgs

    MatchExpressions List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceLabelSelectorMatchExpression>
    A list of label selector requirements. The requirements are ANDed.
    MatchLabels Dictionary<string, string>
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    MatchExpressions []ApplicationSetSpecGeneratorClusterDecisionResourceLabelSelectorMatchExpression
    A list of label selector requirements. The requirements are ANDed.
    MatchLabels map[string]string
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    matchExpressions List<ApplicationSetSpecGeneratorClusterDecisionResourceLabelSelectorMatchExpression>
    A list of label selector requirements. The requirements are ANDed.
    matchLabels Map<String,String>
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    matchExpressions ApplicationSetSpecGeneratorClusterDecisionResourceLabelSelectorMatchExpression[]
    A list of label selector requirements. The requirements are ANDed.
    matchLabels {[key: string]: string}
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    match_expressions Sequence[ApplicationSetSpecGeneratorClusterDecisionResourceLabelSelectorMatchExpression]
    A list of label selector requirements. The requirements are ANDed.
    match_labels Mapping[str, str]
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    matchExpressions List<Property Map>
    A list of label selector requirements. The requirements are ANDed.
    matchLabels Map<String>
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.

    ApplicationSetSpecGeneratorClusterDecisionResourceLabelSelectorMatchExpression, ApplicationSetSpecGeneratorClusterDecisionResourceLabelSelectorMatchExpressionArgs

    Key string
    The label key that the selector applies to.
    Operator string
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    Values List<string>
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    Key string
    The label key that the selector applies to.
    Operator string
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    Values []string
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key String
    The label key that the selector applies to.
    operator String
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values List<String>
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key string
    The label key that the selector applies to.
    operator string
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values string[]
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key str
    The label key that the selector applies to.
    operator str
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values Sequence[str]
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key String
    The label key that the selector applies to.
    operator String
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values List<String>
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.

    ApplicationSetSpecGeneratorClusterDecisionResourceTemplate, ApplicationSetSpecGeneratorClusterDecisionResourceTemplateArgs

    metadata Property Map
    Kubernetes object metadata for templated Application.
    spec Property Map
    The application specification.

    ApplicationSetSpecGeneratorClusterDecisionResourceTemplateMetadata, ApplicationSetSpecGeneratorClusterDecisionResourceTemplateMetadataArgs

    Annotations Dictionary<string, string>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers List<string>
    List of finalizers to apply to the resulting Application.
    Labels Dictionary<string, string>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    Annotations map[string]string
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers []string
    List of finalizers to apply to the resulting Application.
    Labels map[string]string
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    annotations Map<String,String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String,String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application
    annotations {[key: string]: string}
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers string[]
    List of finalizers to apply to the resulting Application.
    labels {[key: string]: string}
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name string
    Name of the resulting Application
    namespace string
    Namespace of the resulting Application
    annotations Mapping[str, str]
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers Sequence[str]
    List of finalizers to apply to the resulting Application.
    labels Mapping[str, str]
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name str
    Name of the resulting Application
    namespace str
    Namespace of the resulting Application
    annotations Map<String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application

    ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpec, ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecArgs

    Destination Three14.Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSource>
    Location of the application's manifests or chart.
    SyncPolicy Three14.Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    Destination ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences []ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecIgnoreDifference
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos []ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecInfo
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources []ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSource
    Location of the application's manifests or chart.
    SyncPolicy ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Integer
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSource>
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecIgnoreDifference[]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecInfo[]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project string
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSource[]
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignore_differences Sequence[ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecIgnoreDifference]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos Sequence[ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecInfo]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project str
    The project the application belongs to. Defaults to default.
    revision_history_limit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources Sequence[ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSource]
    Location of the application's manifests or chart.
    sync_policy ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination Property Map
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<Property Map>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<Property Map>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<Property Map>
    Location of the application's manifests or chart.
    syncPolicy Property Map
    Controls when and how a sync will be performed.

    ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecDestination, ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecDestinationArgs

    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name string
    Name of the target cluster. Can be used instead of server.
    namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name str
    Name of the target cluster. Can be used instead of server.
    namespace str
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server str
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.

    ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecIgnoreDifference, ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecIgnoreDifferenceArgs

    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions List<string>
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers List<string>
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers List<string>
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions []string
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers []string
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers []string
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    group string
    The Kubernetes resource Group to match for.
    jqPathExpressions string[]
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers string[]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind string
    The Kubernetes resource Kind to match for.
    managedFieldsManagers string[]
    List of external controller manager names whose changes to fields should be ignored.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    group str
    The Kubernetes resource Group to match for.
    jq_path_expressions Sequence[str]
    List of JQ path expression strings targeting the field(s) to ignore.
    json_pointers Sequence[str]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind str
    The Kubernetes resource Kind to match for.
    managed_fields_managers Sequence[str]
    List of external controller manager names whose changes to fields should be ignored.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.

    ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecInfo, ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecInfoArgs

    Name string
    Name of the information.
    Value string
    Value of the information.
    Name string
    Name of the information.
    Value string
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.
    name string
    Name of the information.
    value string
    Value of the information.
    name str
    Name of the information.
    value str
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.

    ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSource, ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceArgs

    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory Three14.Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm Three14.Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceHelm
    Helm specific options.
    Kustomize Three14.Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin Three14.Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceHelm
    Helm specific options.
    Kustomize ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceKustomize
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceKustomize
    Kustomize specific options.
    path string
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart str
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceKustomize
    Kustomize specific options.
    path str
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref str
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repo_url str
    URL to the repository (Git or Helm) that contains the application manifests.
    target_revision str
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory Property Map
    Path/directory specific options.
    helm Property Map
    Helm specific options.
    kustomize Property Map
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin Property Map
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.

    ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceDirectory, ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryArgs

    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet Three14.Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.
    exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse boolean
    Whether to scan a directory recursively for manifests.
    exclude str
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include str
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet Property Map
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.

    ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnet, ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetArgs

    extVars List<Property Map>
    List of Jsonnet External Variables.
    libs List<String>
    Additional library search dirs.
    tlas List<Property Map>
    List of Jsonnet Top-level Arguments

    ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetExtVar, ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetExtVarArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetTla, ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetTlaArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceHelm, ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceHelmArgs

    FileParameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles List<string>
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    FileParameters []ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters []ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameter
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles []string
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter[]
    File parameters for the helm template.
    ignoreMissingValueFiles boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameter[]
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName string
    Helm release name. If omitted it will use the application name.
    skipCrds boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles string[]
    List of Helm value files to use when generating a template.
    values string
    Helm values to be passed to 'helm template', typically defined as a block.
    version string
    The Helm version to use for templating. Accepts either v2 or v3
    file_parameters Sequence[ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter]
    File parameters for the helm template.
    ignore_missing_value_files bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters Sequence[ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameter]
    Helm parameters which are passed to the helm template command upon manifest generation.
    pass_credentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    release_name str
    Helm release name. If omitted it will use the application name.
    skip_crds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    value_files Sequence[str]
    List of Helm value files to use when generating a template.
    values str
    Helm values to be passed to 'helm template', typically defined as a block.
    version str
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<Property Map>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<Property Map>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3

    ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter, ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameterArgs

    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.
    name string
    Name of the Helm parameter.
    path string
    Path to the file containing the values for the Helm parameter.
    name str
    Name of the Helm parameter.
    path str
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.

    ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameter, ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameterArgs

    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.
    forceString boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name string
    Name of the Helm parameter.
    value string
    Value of the Helm parameter.
    force_string bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name str
    Name of the Helm parameter.
    value str
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.

    ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceKustomize, ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceKustomizeArgs

    CommonAnnotations Dictionary<string, string>
    List of additional annotations to add to rendered manifests.
    CommonLabels Dictionary<string, string>
    List of additional labels to add to rendered manifests.
    Images List<string>
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    CommonAnnotations map[string]string
    List of additional annotations to add to rendered manifests.
    CommonLabels map[string]string
    List of additional labels to add to rendered manifests.
    Images []string
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches []ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatch
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String,String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String,String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.
    commonAnnotations {[key: string]: string}
    List of additional annotations to add to rendered manifests.
    commonLabels {[key: string]: string}
    List of additional labels to add to rendered manifests.
    images string[]
    List of Kustomize image override specifications.
    namePrefix string
    Prefix appended to resources for Kustomize apps.
    nameSuffix string
    Suffix appended to resources for Kustomize apps.
    patches ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatch[]
    A list of Kustomize patches to apply.
    version string
    Version of Kustomize to use for rendering manifests.
    common_annotations Mapping[str, str]
    List of additional annotations to add to rendered manifests.
    common_labels Mapping[str, str]
    List of additional labels to add to rendered manifests.
    images Sequence[str]
    List of Kustomize image override specifications.
    name_prefix str
    Prefix appended to resources for Kustomize apps.
    name_suffix str
    Suffix appended to resources for Kustomize apps.
    patches Sequence[ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatch]
    A list of Kustomize patches to apply.
    version str
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<Property Map>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.

    ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatch, ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchArgs

    Target Three14.Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options Dictionary<string, bool>
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    Target ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options map[string]bool
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Map<String,Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options {[key: string]: boolean}
    Additional options.
    patch string
    Inline Kustomize patch to apply.
    path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Mapping[str, bool]
    Additional options.
    patch str
    Inline Kustomize patch to apply.
    path str
    Path to a file containing the patch to apply.
    target Property Map
    Target(s) to patch
    options Map<Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.

    ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTarget, ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTargetArgs

    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.
    annotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    group string
    The Kubernetes resource Group to match for.
    kind string
    The Kubernetes resource Kind to match for.
    labelSelector string
    Label selector to use when matching the Kubernetes resource.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    version string
    The Kubernetes resource Version to match for.
    annotation_selector str
    Annotation selector to use when matching the Kubernetes resource.
    group str
    The Kubernetes resource Group to match for.
    kind str
    The Kubernetes resource Kind to match for.
    label_selector str
    Label selector to use when matching the Kubernetes resource.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    version str
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.

    ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourcePlugin, ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourcePluginArgs

    Envs List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    Envs []ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnv
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnv[]
    Environment variables passed to the plugin.
    name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs Sequence[ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnv]
    Environment variables passed to the plugin.
    name str
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<Property Map>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.

    ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnv, ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnvArgs

    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.
    name string
    Name of the environment variable.
    value string
    Value of the environment variable.
    name str
    Name of the environment variable.
    value str
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.

    ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicy, ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicyArgs

    Automated Three14.Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata Three14.Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry Three14.Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions List<string>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    Automated ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions []string
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions string[]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managed_namespace_metadata ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    sync_options Sequence[str]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated Property Map
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata Property Map
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry Property Map
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.

    ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomated, ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomatedArgs

    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty boolean
    Allows apps have zero live resources.
    prune boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allow_empty bool
    Allows apps have zero live resources.
    prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    self_heal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.

    ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadata, ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadataArgs

    Annotations Dictionary<string, string>
    Annotations to apply to the namespace.
    Labels Dictionary<string, string>
    Labels to apply to the namespace.
    Annotations map[string]string
    Annotations to apply to the namespace.
    Labels map[string]string
    Labels to apply to the namespace.
    annotations Map<String,String>
    Annotations to apply to the namespace.
    labels Map<String,String>
    Labels to apply to the namespace.
    annotations {[key: string]: string}
    Annotations to apply to the namespace.
    labels {[key: string]: string}
    Labels to apply to the namespace.
    annotations Mapping[str, str]
    Annotations to apply to the namespace.
    labels Mapping[str, str]
    Labels to apply to the namespace.
    annotations Map<String>
    Annotations to apply to the namespace.
    labels Map<String>
    Labels to apply to the namespace.

    ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetry, ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryArgs

    Backoff Three14.Argocd.Inputs.ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    Backoff ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit str
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff Property Map
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.

    ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoff, ApplicationSetSpecGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoffArgs

    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor string
    Factor to multiply the base duration after each failed retry.
    maxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration str
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor str
    Factor to multiply the base duration after each failed retry.
    max_duration str
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.

    ApplicationSetSpecGeneratorClusterSelector, ApplicationSetSpecGeneratorClusterSelectorArgs

    MatchExpressions List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorClusterSelectorMatchExpression>
    A list of label selector requirements. The requirements are ANDed.
    MatchLabels Dictionary<string, string>
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    MatchExpressions []ApplicationSetSpecGeneratorClusterSelectorMatchExpression
    A list of label selector requirements. The requirements are ANDed.
    MatchLabels map[string]string
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    matchExpressions List<ApplicationSetSpecGeneratorClusterSelectorMatchExpression>
    A list of label selector requirements. The requirements are ANDed.
    matchLabels Map<String,String>
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    matchExpressions ApplicationSetSpecGeneratorClusterSelectorMatchExpression[]
    A list of label selector requirements. The requirements are ANDed.
    matchLabels {[key: string]: string}
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    match_expressions Sequence[ApplicationSetSpecGeneratorClusterSelectorMatchExpression]
    A list of label selector requirements. The requirements are ANDed.
    match_labels Mapping[str, str]
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    matchExpressions List<Property Map>
    A list of label selector requirements. The requirements are ANDed.
    matchLabels Map<String>
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.

    ApplicationSetSpecGeneratorClusterSelectorMatchExpression, ApplicationSetSpecGeneratorClusterSelectorMatchExpressionArgs

    Key string
    The label key that the selector applies to.
    Operator string
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    Values List<string>
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    Key string
    The label key that the selector applies to.
    Operator string
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    Values []string
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key String
    The label key that the selector applies to.
    operator String
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values List<String>
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key string
    The label key that the selector applies to.
    operator string
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values string[]
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key str
    The label key that the selector applies to.
    operator str
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values Sequence[str]
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key String
    The label key that the selector applies to.
    operator String
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values List<String>
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.

    ApplicationSetSpecGeneratorClusterTemplate, ApplicationSetSpecGeneratorClusterTemplateArgs

    Metadata ApplicationSetSpecGeneratorClusterTemplateMetadata
    Kubernetes object metadata for templated Application.
    Spec ApplicationSetSpecGeneratorClusterTemplateSpec
    The application specification.
    metadata ApplicationSetSpecGeneratorClusterTemplateMetadata
    Kubernetes object metadata for templated Application.
    spec ApplicationSetSpecGeneratorClusterTemplateSpec
    The application specification.
    metadata ApplicationSetSpecGeneratorClusterTemplateMetadata
    Kubernetes object metadata for templated Application.
    spec ApplicationSetSpecGeneratorClusterTemplateSpec
    The application specification.
    metadata ApplicationSetSpecGeneratorClusterTemplateMetadata
    Kubernetes object metadata for templated Application.
    spec ApplicationSetSpecGeneratorClusterTemplateSpec
    The application specification.
    metadata Property Map
    Kubernetes object metadata for templated Application.
    spec Property Map
    The application specification.

    ApplicationSetSpecGeneratorClusterTemplateMetadata, ApplicationSetSpecGeneratorClusterTemplateMetadataArgs

    Annotations Dictionary<string, string>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers List<string>
    List of finalizers to apply to the resulting Application.
    Labels Dictionary<string, string>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    Annotations map[string]string
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers []string
    List of finalizers to apply to the resulting Application.
    Labels map[string]string
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    annotations Map<String,String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String,String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application
    annotations {[key: string]: string}
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers string[]
    List of finalizers to apply to the resulting Application.
    labels {[key: string]: string}
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name string
    Name of the resulting Application
    namespace string
    Namespace of the resulting Application
    annotations Mapping[str, str]
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers Sequence[str]
    List of finalizers to apply to the resulting Application.
    labels Mapping[str, str]
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name str
    Name of the resulting Application
    namespace str
    Namespace of the resulting Application
    annotations Map<String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application

    ApplicationSetSpecGeneratorClusterTemplateSpec, ApplicationSetSpecGeneratorClusterTemplateSpecArgs

    Destination Three14.Argocd.Inputs.ApplicationSetSpecGeneratorClusterTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorClusterTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorClusterTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorClusterTemplateSpecSource>
    Location of the application's manifests or chart.
    SyncPolicy Three14.Argocd.Inputs.ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    Destination ApplicationSetSpecGeneratorClusterTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences []ApplicationSetSpecGeneratorClusterTemplateSpecIgnoreDifference
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos []ApplicationSetSpecGeneratorClusterTemplateSpecInfo
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources []ApplicationSetSpecGeneratorClusterTemplateSpecSource
    Location of the application's manifests or chart.
    SyncPolicy ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorClusterTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<ApplicationSetSpecGeneratorClusterTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<ApplicationSetSpecGeneratorClusterTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Integer
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<ApplicationSetSpecGeneratorClusterTemplateSpecSource>
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorClusterTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences ApplicationSetSpecGeneratorClusterTemplateSpecIgnoreDifference[]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos ApplicationSetSpecGeneratorClusterTemplateSpecInfo[]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project string
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources ApplicationSetSpecGeneratorClusterTemplateSpecSource[]
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorClusterTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignore_differences Sequence[ApplicationSetSpecGeneratorClusterTemplateSpecIgnoreDifference]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos Sequence[ApplicationSetSpecGeneratorClusterTemplateSpecInfo]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project str
    The project the application belongs to. Defaults to default.
    revision_history_limit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources Sequence[ApplicationSetSpecGeneratorClusterTemplateSpecSource]
    Location of the application's manifests or chart.
    sync_policy ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination Property Map
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<Property Map>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<Property Map>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<Property Map>
    Location of the application's manifests or chart.
    syncPolicy Property Map
    Controls when and how a sync will be performed.

    ApplicationSetSpecGeneratorClusterTemplateSpecDestination, ApplicationSetSpecGeneratorClusterTemplateSpecDestinationArgs

    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name string
    Name of the target cluster. Can be used instead of server.
    namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name str
    Name of the target cluster. Can be used instead of server.
    namespace str
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server str
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.

    ApplicationSetSpecGeneratorClusterTemplateSpecIgnoreDifference, ApplicationSetSpecGeneratorClusterTemplateSpecIgnoreDifferenceArgs

    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions List<string>
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers List<string>
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers List<string>
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions []string
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers []string
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers []string
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    group string
    The Kubernetes resource Group to match for.
    jqPathExpressions string[]
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers string[]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind string
    The Kubernetes resource Kind to match for.
    managedFieldsManagers string[]
    List of external controller manager names whose changes to fields should be ignored.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    group str
    The Kubernetes resource Group to match for.
    jq_path_expressions Sequence[str]
    List of JQ path expression strings targeting the field(s) to ignore.
    json_pointers Sequence[str]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind str
    The Kubernetes resource Kind to match for.
    managed_fields_managers Sequence[str]
    List of external controller manager names whose changes to fields should be ignored.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.

    ApplicationSetSpecGeneratorClusterTemplateSpecInfo, ApplicationSetSpecGeneratorClusterTemplateSpecInfoArgs

    Name string
    Name of the information.
    Value string
    Value of the information.
    Name string
    Name of the information.
    Value string
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.
    name string
    Name of the information.
    value string
    Value of the information.
    name str
    Name of the information.
    value str
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.

    ApplicationSetSpecGeneratorClusterTemplateSpecSource, ApplicationSetSpecGeneratorClusterTemplateSpecSourceArgs

    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory Three14.Argocd.Inputs.ApplicationSetSpecGeneratorClusterTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm Three14.Argocd.Inputs.ApplicationSetSpecGeneratorClusterTemplateSpecSourceHelm
    Helm specific options.
    Kustomize Three14.Argocd.Inputs.ApplicationSetSpecGeneratorClusterTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin Three14.Argocd.Inputs.ApplicationSetSpecGeneratorClusterTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory ApplicationSetSpecGeneratorClusterTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm ApplicationSetSpecGeneratorClusterTemplateSpecSourceHelm
    Helm specific options.
    Kustomize ApplicationSetSpecGeneratorClusterTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin ApplicationSetSpecGeneratorClusterTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorClusterTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorClusterTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorClusterTemplateSpecSourceKustomize
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorClusterTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorClusterTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorClusterTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorClusterTemplateSpecSourceKustomize
    Kustomize specific options.
    path string
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorClusterTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart str
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorClusterTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorClusterTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorClusterTemplateSpecSourceKustomize
    Kustomize specific options.
    path str
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorClusterTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref str
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repo_url str
    URL to the repository (Git or Helm) that contains the application manifests.
    target_revision str
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory Property Map
    Path/directory specific options.
    helm Property Map
    Helm specific options.
    kustomize Property Map
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin Property Map
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.

    ApplicationSetSpecGeneratorClusterTemplateSpecSourceDirectory, ApplicationSetSpecGeneratorClusterTemplateSpecSourceDirectoryArgs

    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet Three14.Argocd.Inputs.ApplicationSetSpecGeneratorClusterTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet ApplicationSetSpecGeneratorClusterTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorClusterTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.
    exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorClusterTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse boolean
    Whether to scan a directory recursively for manifests.
    exclude str
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include str
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorClusterTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet Property Map
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.

    ApplicationSetSpecGeneratorClusterTemplateSpecSourceDirectoryJsonnet, ApplicationSetSpecGeneratorClusterTemplateSpecSourceDirectoryJsonnetArgs

    ExtVars []ApplicationSetSpecGeneratorClusterTemplateSpecSourceDirectoryJsonnetExtVar
    List of Jsonnet External Variables.
    Libs []string
    Additional library search dirs.
    Tlas []ApplicationSetSpecGeneratorClusterTemplateSpecSourceDirectoryJsonnetTla
    List of Jsonnet Top-level Arguments
    extVars List<ApplicationSetSpecGeneratorClusterTemplateSpecSourceDirectoryJsonnetExtVar>
    List of Jsonnet External Variables.
    libs List<String>
    Additional library search dirs.
    tlas List<ApplicationSetSpecGeneratorClusterTemplateSpecSourceDirectoryJsonnetTla>
    List of Jsonnet Top-level Arguments
    extVars ApplicationSetSpecGeneratorClusterTemplateSpecSourceDirectoryJsonnetExtVar[]
    List of Jsonnet External Variables.
    libs string[]
    Additional library search dirs.
    tlas ApplicationSetSpecGeneratorClusterTemplateSpecSourceDirectoryJsonnetTla[]
    List of Jsonnet Top-level Arguments
    extVars List<Property Map>
    List of Jsonnet External Variables.
    libs List<String>
    Additional library search dirs.
    tlas List<Property Map>
    List of Jsonnet Top-level Arguments

    ApplicationSetSpecGeneratorClusterTemplateSpecSourceDirectoryJsonnetExtVar, ApplicationSetSpecGeneratorClusterTemplateSpecSourceDirectoryJsonnetExtVarArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorClusterTemplateSpecSourceDirectoryJsonnetTla, ApplicationSetSpecGeneratorClusterTemplateSpecSourceDirectoryJsonnetTlaArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorClusterTemplateSpecSourceHelm, ApplicationSetSpecGeneratorClusterTemplateSpecSourceHelmArgs

    FileParameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorClusterTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorClusterTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles List<string>
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    FileParameters []ApplicationSetSpecGeneratorClusterTemplateSpecSourceHelmFileParameter
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters []ApplicationSetSpecGeneratorClusterTemplateSpecSourceHelmParameter
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles []string
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<ApplicationSetSpecGeneratorClusterTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<ApplicationSetSpecGeneratorClusterTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters ApplicationSetSpecGeneratorClusterTemplateSpecSourceHelmFileParameter[]
    File parameters for the helm template.
    ignoreMissingValueFiles boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters ApplicationSetSpecGeneratorClusterTemplateSpecSourceHelmParameter[]
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName string
    Helm release name. If omitted it will use the application name.
    skipCrds boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles string[]
    List of Helm value files to use when generating a template.
    values string
    Helm values to be passed to 'helm template', typically defined as a block.
    version string
    The Helm version to use for templating. Accepts either v2 or v3
    file_parameters Sequence[ApplicationSetSpecGeneratorClusterTemplateSpecSourceHelmFileParameter]
    File parameters for the helm template.
    ignore_missing_value_files bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters Sequence[ApplicationSetSpecGeneratorClusterTemplateSpecSourceHelmParameter]
    Helm parameters which are passed to the helm template command upon manifest generation.
    pass_credentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    release_name str
    Helm release name. If omitted it will use the application name.
    skip_crds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    value_files Sequence[str]
    List of Helm value files to use when generating a template.
    values str
    Helm values to be passed to 'helm template', typically defined as a block.
    version str
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<Property Map>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<Property Map>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3

    ApplicationSetSpecGeneratorClusterTemplateSpecSourceHelmFileParameter, ApplicationSetSpecGeneratorClusterTemplateSpecSourceHelmFileParameterArgs

    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.
    name string
    Name of the Helm parameter.
    path string
    Path to the file containing the values for the Helm parameter.
    name str
    Name of the Helm parameter.
    path str
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.

    ApplicationSetSpecGeneratorClusterTemplateSpecSourceHelmParameter, ApplicationSetSpecGeneratorClusterTemplateSpecSourceHelmParameterArgs

    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.
    forceString boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name string
    Name of the Helm parameter.
    value string
    Value of the Helm parameter.
    force_string bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name str
    Name of the Helm parameter.
    value str
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.

    ApplicationSetSpecGeneratorClusterTemplateSpecSourceKustomize, ApplicationSetSpecGeneratorClusterTemplateSpecSourceKustomizeArgs

    CommonAnnotations Dictionary<string, string>
    List of additional annotations to add to rendered manifests.
    CommonLabels Dictionary<string, string>
    List of additional labels to add to rendered manifests.
    Images List<string>
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorClusterTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    CommonAnnotations map[string]string
    List of additional annotations to add to rendered manifests.
    CommonLabels map[string]string
    List of additional labels to add to rendered manifests.
    Images []string
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches []ApplicationSetSpecGeneratorClusterTemplateSpecSourceKustomizePatch
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String,String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String,String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<ApplicationSetSpecGeneratorClusterTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.
    commonAnnotations {[key: string]: string}
    List of additional annotations to add to rendered manifests.
    commonLabels {[key: string]: string}
    List of additional labels to add to rendered manifests.
    images string[]
    List of Kustomize image override specifications.
    namePrefix string
    Prefix appended to resources for Kustomize apps.
    nameSuffix string
    Suffix appended to resources for Kustomize apps.
    patches ApplicationSetSpecGeneratorClusterTemplateSpecSourceKustomizePatch[]
    A list of Kustomize patches to apply.
    version string
    Version of Kustomize to use for rendering manifests.
    common_annotations Mapping[str, str]
    List of additional annotations to add to rendered manifests.
    common_labels Mapping[str, str]
    List of additional labels to add to rendered manifests.
    images Sequence[str]
    List of Kustomize image override specifications.
    name_prefix str
    Prefix appended to resources for Kustomize apps.
    name_suffix str
    Suffix appended to resources for Kustomize apps.
    patches Sequence[ApplicationSetSpecGeneratorClusterTemplateSpecSourceKustomizePatch]
    A list of Kustomize patches to apply.
    version str
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<Property Map>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.

    ApplicationSetSpecGeneratorClusterTemplateSpecSourceKustomizePatch, ApplicationSetSpecGeneratorClusterTemplateSpecSourceKustomizePatchArgs

    Target Three14.Argocd.Inputs.ApplicationSetSpecGeneratorClusterTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options Dictionary<string, bool>
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    Target ApplicationSetSpecGeneratorClusterTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options map[string]bool
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorClusterTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Map<String,Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorClusterTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options {[key: string]: boolean}
    Additional options.
    patch string
    Inline Kustomize patch to apply.
    path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorClusterTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Mapping[str, bool]
    Additional options.
    patch str
    Inline Kustomize patch to apply.
    path str
    Path to a file containing the patch to apply.
    target Property Map
    Target(s) to patch
    options Map<Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.

    ApplicationSetSpecGeneratorClusterTemplateSpecSourceKustomizePatchTarget, ApplicationSetSpecGeneratorClusterTemplateSpecSourceKustomizePatchTargetArgs

    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.
    annotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    group string
    The Kubernetes resource Group to match for.
    kind string
    The Kubernetes resource Kind to match for.
    labelSelector string
    Label selector to use when matching the Kubernetes resource.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    version string
    The Kubernetes resource Version to match for.
    annotation_selector str
    Annotation selector to use when matching the Kubernetes resource.
    group str
    The Kubernetes resource Group to match for.
    kind str
    The Kubernetes resource Kind to match for.
    label_selector str
    Label selector to use when matching the Kubernetes resource.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    version str
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.

    ApplicationSetSpecGeneratorClusterTemplateSpecSourcePlugin, ApplicationSetSpecGeneratorClusterTemplateSpecSourcePluginArgs

    Envs List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorClusterTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    Envs []ApplicationSetSpecGeneratorClusterTemplateSpecSourcePluginEnv
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<ApplicationSetSpecGeneratorClusterTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs ApplicationSetSpecGeneratorClusterTemplateSpecSourcePluginEnv[]
    Environment variables passed to the plugin.
    name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs Sequence[ApplicationSetSpecGeneratorClusterTemplateSpecSourcePluginEnv]
    Environment variables passed to the plugin.
    name str
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<Property Map>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.

    ApplicationSetSpecGeneratorClusterTemplateSpecSourcePluginEnv, ApplicationSetSpecGeneratorClusterTemplateSpecSourcePluginEnvArgs

    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.
    name string
    Name of the environment variable.
    value string
    Value of the environment variable.
    name str
    Name of the environment variable.
    value str
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.

    ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicy, ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicyArgs

    Automated Three14.Argocd.Inputs.ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata Three14.Argocd.Inputs.ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry Three14.Argocd.Inputs.ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions List<string>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    Automated ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions []string
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions string[]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managed_namespace_metadata ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    sync_options Sequence[str]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated Property Map
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata Property Map
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry Property Map
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.

    ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicyAutomated, ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicyAutomatedArgs

    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty boolean
    Allows apps have zero live resources.
    prune boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allow_empty bool
    Allows apps have zero live resources.
    prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    self_heal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.

    ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadata, ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadataArgs

    Annotations Dictionary<string, string>
    Annotations to apply to the namespace.
    Labels Dictionary<string, string>
    Labels to apply to the namespace.
    Annotations map[string]string
    Annotations to apply to the namespace.
    Labels map[string]string
    Labels to apply to the namespace.
    annotations Map<String,String>
    Annotations to apply to the namespace.
    labels Map<String,String>
    Labels to apply to the namespace.
    annotations {[key: string]: string}
    Annotations to apply to the namespace.
    labels {[key: string]: string}
    Labels to apply to the namespace.
    annotations Mapping[str, str]
    Annotations to apply to the namespace.
    labels Mapping[str, str]
    Labels to apply to the namespace.
    annotations Map<String>
    Annotations to apply to the namespace.
    labels Map<String>
    Labels to apply to the namespace.

    ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicyRetry, ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicyRetryArgs

    Backoff Three14.Argocd.Inputs.ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    Backoff ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit str
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff Property Map
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.

    ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicyRetryBackoff, ApplicationSetSpecGeneratorClusterTemplateSpecSyncPolicyRetryBackoffArgs

    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor string
    Factor to multiply the base duration after each failed retry.
    maxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration str
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor str
    Factor to multiply the base duration after each failed retry.
    max_duration str
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.

    ApplicationSetSpecGeneratorGit, ApplicationSetSpecGeneratorGitArgs

    RepoUrl string
    URL to the repository to use.
    Directories List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorGitDirectory>
    List of directories in the source repository to use when template the Application..
    Files List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorGitFile>
    List of files in the source repository to use when template the Application.
    PathParamPrefix string
    Prefix for all path-related parameter names.
    Revision string
    Revision of the source repository to use.
    Template Three14.Argocd.Inputs.ApplicationSetSpecGeneratorGitTemplate
    Generator template. Used to override the values of the spec-level template.
    Values Dictionary<string, string>
    Arbitrary string key-value pairs to pass to the template via the values field of the git generator.
    RepoUrl string
    URL to the repository to use.
    Directories []ApplicationSetSpecGeneratorGitDirectory
    List of directories in the source repository to use when template the Application..
    Files []ApplicationSetSpecGeneratorGitFile
    List of files in the source repository to use when template the Application.
    PathParamPrefix string
    Prefix for all path-related parameter names.
    Revision string
    Revision of the source repository to use.
    Template ApplicationSetSpecGeneratorGitTemplate
    Generator template. Used to override the values of the spec-level template.
    Values map[string]string
    Arbitrary string key-value pairs to pass to the template via the values field of the git generator.
    repoUrl String
    URL to the repository to use.
    directories List<ApplicationSetSpecGeneratorGitDirectory>
    List of directories in the source repository to use when template the Application..
    files List<ApplicationSetSpecGeneratorGitFile>
    List of files in the source repository to use when template the Application.
    pathParamPrefix String
    Prefix for all path-related parameter names.
    revision String
    Revision of the source repository to use.
    template ApplicationSetSpecGeneratorGitTemplate
    Generator template. Used to override the values of the spec-level template.
    values Map<String,String>
    Arbitrary string key-value pairs to pass to the template via the values field of the git generator.
    repoUrl string
    URL to the repository to use.
    directories ApplicationSetSpecGeneratorGitDirectory[]
    List of directories in the source repository to use when template the Application..
    files ApplicationSetSpecGeneratorGitFile[]
    List of files in the source repository to use when template the Application.
    pathParamPrefix string
    Prefix for all path-related parameter names.
    revision string
    Revision of the source repository to use.
    template ApplicationSetSpecGeneratorGitTemplate
    Generator template. Used to override the values of the spec-level template.
    values {[key: string]: string}
    Arbitrary string key-value pairs to pass to the template via the values field of the git generator.
    repo_url str
    URL to the repository to use.
    directories Sequence[ApplicationSetSpecGeneratorGitDirectory]
    List of directories in the source repository to use when template the Application..
    files Sequence[ApplicationSetSpecGeneratorGitFile]
    List of files in the source repository to use when template the Application.
    path_param_prefix str
    Prefix for all path-related parameter names.
    revision str
    Revision of the source repository to use.
    template ApplicationSetSpecGeneratorGitTemplate
    Generator template. Used to override the values of the spec-level template.
    values Mapping[str, str]
    Arbitrary string key-value pairs to pass to the template via the values field of the git generator.
    repoUrl String
    URL to the repository to use.
    directories List<Property Map>
    List of directories in the source repository to use when template the Application..
    files List<Property Map>
    List of files in the source repository to use when template the Application.
    pathParamPrefix String
    Prefix for all path-related parameter names.
    revision String
    Revision of the source repository to use.
    template Property Map
    Generator template. Used to override the values of the spec-level template.
    values Map<String>
    Arbitrary string key-value pairs to pass to the template via the values field of the git generator.

    ApplicationSetSpecGeneratorGitDirectory, ApplicationSetSpecGeneratorGitDirectoryArgs

    Path string
    Path in the repository.
    Exclude bool
    Flag indicating whether or not the directory should be excluded when templating.
    Path string
    Path in the repository.
    Exclude bool
    Flag indicating whether or not the directory should be excluded when templating.
    path String
    Path in the repository.
    exclude Boolean
    Flag indicating whether or not the directory should be excluded when templating.
    path string
    Path in the repository.
    exclude boolean
    Flag indicating whether or not the directory should be excluded when templating.
    path str
    Path in the repository.
    exclude bool
    Flag indicating whether or not the directory should be excluded when templating.
    path String
    Path in the repository.
    exclude Boolean
    Flag indicating whether or not the directory should be excluded when templating.

    ApplicationSetSpecGeneratorGitFile, ApplicationSetSpecGeneratorGitFileArgs

    Path string
    Path to the file in the repository.
    Path string
    Path to the file in the repository.
    path String
    Path to the file in the repository.
    path string
    Path to the file in the repository.
    path str
    Path to the file in the repository.
    path String
    Path to the file in the repository.

    ApplicationSetSpecGeneratorGitTemplate, ApplicationSetSpecGeneratorGitTemplateArgs

    Metadata ApplicationSetSpecGeneratorGitTemplateMetadata
    Kubernetes object metadata for templated Application.
    Spec ApplicationSetSpecGeneratorGitTemplateSpec
    The application specification.
    metadata ApplicationSetSpecGeneratorGitTemplateMetadata
    Kubernetes object metadata for templated Application.
    spec ApplicationSetSpecGeneratorGitTemplateSpec
    The application specification.
    metadata ApplicationSetSpecGeneratorGitTemplateMetadata
    Kubernetes object metadata for templated Application.
    spec ApplicationSetSpecGeneratorGitTemplateSpec
    The application specification.
    metadata ApplicationSetSpecGeneratorGitTemplateMetadata
    Kubernetes object metadata for templated Application.
    spec ApplicationSetSpecGeneratorGitTemplateSpec
    The application specification.
    metadata Property Map
    Kubernetes object metadata for templated Application.
    spec Property Map
    The application specification.

    ApplicationSetSpecGeneratorGitTemplateMetadata, ApplicationSetSpecGeneratorGitTemplateMetadataArgs

    Annotations Dictionary<string, string>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers List<string>
    List of finalizers to apply to the resulting Application.
    Labels Dictionary<string, string>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    Annotations map[string]string
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers []string
    List of finalizers to apply to the resulting Application.
    Labels map[string]string
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    annotations Map<String,String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String,String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application
    annotations {[key: string]: string}
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers string[]
    List of finalizers to apply to the resulting Application.
    labels {[key: string]: string}
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name string
    Name of the resulting Application
    namespace string
    Namespace of the resulting Application
    annotations Mapping[str, str]
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers Sequence[str]
    List of finalizers to apply to the resulting Application.
    labels Mapping[str, str]
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name str
    Name of the resulting Application
    namespace str
    Namespace of the resulting Application
    annotations Map<String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application

    ApplicationSetSpecGeneratorGitTemplateSpec, ApplicationSetSpecGeneratorGitTemplateSpecArgs

    Destination Three14.Argocd.Inputs.ApplicationSetSpecGeneratorGitTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorGitTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorGitTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorGitTemplateSpecSource>
    Location of the application's manifests or chart.
    SyncPolicy Three14.Argocd.Inputs.ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    Destination ApplicationSetSpecGeneratorGitTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences []ApplicationSetSpecGeneratorGitTemplateSpecIgnoreDifference
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos []ApplicationSetSpecGeneratorGitTemplateSpecInfo
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources []ApplicationSetSpecGeneratorGitTemplateSpecSource
    Location of the application's manifests or chart.
    SyncPolicy ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorGitTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<ApplicationSetSpecGeneratorGitTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<ApplicationSetSpecGeneratorGitTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Integer
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<ApplicationSetSpecGeneratorGitTemplateSpecSource>
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorGitTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences ApplicationSetSpecGeneratorGitTemplateSpecIgnoreDifference[]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos ApplicationSetSpecGeneratorGitTemplateSpecInfo[]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project string
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources ApplicationSetSpecGeneratorGitTemplateSpecSource[]
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorGitTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignore_differences Sequence[ApplicationSetSpecGeneratorGitTemplateSpecIgnoreDifference]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos Sequence[ApplicationSetSpecGeneratorGitTemplateSpecInfo]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project str
    The project the application belongs to. Defaults to default.
    revision_history_limit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources Sequence[ApplicationSetSpecGeneratorGitTemplateSpecSource]
    Location of the application's manifests or chart.
    sync_policy ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination Property Map
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<Property Map>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<Property Map>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<Property Map>
    Location of the application's manifests or chart.
    syncPolicy Property Map
    Controls when and how a sync will be performed.

    ApplicationSetSpecGeneratorGitTemplateSpecDestination, ApplicationSetSpecGeneratorGitTemplateSpecDestinationArgs

    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name string
    Name of the target cluster. Can be used instead of server.
    namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name str
    Name of the target cluster. Can be used instead of server.
    namespace str
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server str
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.

    ApplicationSetSpecGeneratorGitTemplateSpecIgnoreDifference, ApplicationSetSpecGeneratorGitTemplateSpecIgnoreDifferenceArgs

    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions List<string>
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers List<string>
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers List<string>
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions []string
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers []string
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers []string
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    group string
    The Kubernetes resource Group to match for.
    jqPathExpressions string[]
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers string[]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind string
    The Kubernetes resource Kind to match for.
    managedFieldsManagers string[]
    List of external controller manager names whose changes to fields should be ignored.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    group str
    The Kubernetes resource Group to match for.
    jq_path_expressions Sequence[str]
    List of JQ path expression strings targeting the field(s) to ignore.
    json_pointers Sequence[str]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind str
    The Kubernetes resource Kind to match for.
    managed_fields_managers Sequence[str]
    List of external controller manager names whose changes to fields should be ignored.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.

    ApplicationSetSpecGeneratorGitTemplateSpecInfo, ApplicationSetSpecGeneratorGitTemplateSpecInfoArgs

    Name string
    Name of the information.
    Value string
    Value of the information.
    Name string
    Name of the information.
    Value string
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.
    name string
    Name of the information.
    value string
    Value of the information.
    name str
    Name of the information.
    value str
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.

    ApplicationSetSpecGeneratorGitTemplateSpecSource, ApplicationSetSpecGeneratorGitTemplateSpecSourceArgs

    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory Three14.Argocd.Inputs.ApplicationSetSpecGeneratorGitTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm Three14.Argocd.Inputs.ApplicationSetSpecGeneratorGitTemplateSpecSourceHelm
    Helm specific options.
    Kustomize Three14.Argocd.Inputs.ApplicationSetSpecGeneratorGitTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin Three14.Argocd.Inputs.ApplicationSetSpecGeneratorGitTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory ApplicationSetSpecGeneratorGitTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm ApplicationSetSpecGeneratorGitTemplateSpecSourceHelm
    Helm specific options.
    Kustomize ApplicationSetSpecGeneratorGitTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin ApplicationSetSpecGeneratorGitTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorGitTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorGitTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorGitTemplateSpecSourceKustomize
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorGitTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorGitTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorGitTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorGitTemplateSpecSourceKustomize
    Kustomize specific options.
    path string
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorGitTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart str
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorGitTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorGitTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorGitTemplateSpecSourceKustomize
    Kustomize specific options.
    path str
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorGitTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref str
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repo_url str
    URL to the repository (Git or Helm) that contains the application manifests.
    target_revision str
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory Property Map
    Path/directory specific options.
    helm Property Map
    Helm specific options.
    kustomize Property Map
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin Property Map
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.

    ApplicationSetSpecGeneratorGitTemplateSpecSourceDirectory, ApplicationSetSpecGeneratorGitTemplateSpecSourceDirectoryArgs

    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet Three14.Argocd.Inputs.ApplicationSetSpecGeneratorGitTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet ApplicationSetSpecGeneratorGitTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorGitTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.
    exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorGitTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse boolean
    Whether to scan a directory recursively for manifests.
    exclude str
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include str
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorGitTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet Property Map
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.

    ApplicationSetSpecGeneratorGitTemplateSpecSourceDirectoryJsonnet, ApplicationSetSpecGeneratorGitTemplateSpecSourceDirectoryJsonnetArgs

    ExtVars []ApplicationSetSpecGeneratorGitTemplateSpecSourceDirectoryJsonnetExtVar
    List of Jsonnet External Variables.
    Libs []string
    Additional library search dirs.
    Tlas []ApplicationSetSpecGeneratorGitTemplateSpecSourceDirectoryJsonnetTla
    List of Jsonnet Top-level Arguments
    extVars List<ApplicationSetSpecGeneratorGitTemplateSpecSourceDirectoryJsonnetExtVar>
    List of Jsonnet External Variables.
    libs List<String>
    Additional library search dirs.
    tlas List<ApplicationSetSpecGeneratorGitTemplateSpecSourceDirectoryJsonnetTla>
    List of Jsonnet Top-level Arguments
    extVars ApplicationSetSpecGeneratorGitTemplateSpecSourceDirectoryJsonnetExtVar[]
    List of Jsonnet External Variables.
    libs string[]
    Additional library search dirs.
    tlas ApplicationSetSpecGeneratorGitTemplateSpecSourceDirectoryJsonnetTla[]
    List of Jsonnet Top-level Arguments
    ext_vars Sequence[ApplicationSetSpecGeneratorGitTemplateSpecSourceDirectoryJsonnetExtVar]
    List of Jsonnet External Variables.
    libs Sequence[str]
    Additional library search dirs.
    tlas Sequence[ApplicationSetSpecGeneratorGitTemplateSpecSourceDirectoryJsonnetTla]
    List of Jsonnet Top-level Arguments
    extVars List<Property Map>
    List of Jsonnet External Variables.
    libs List<String>
    Additional library search dirs.
    tlas List<Property Map>
    List of Jsonnet Top-level Arguments

    ApplicationSetSpecGeneratorGitTemplateSpecSourceDirectoryJsonnetExtVar, ApplicationSetSpecGeneratorGitTemplateSpecSourceDirectoryJsonnetExtVarArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorGitTemplateSpecSourceDirectoryJsonnetTla, ApplicationSetSpecGeneratorGitTemplateSpecSourceDirectoryJsonnetTlaArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorGitTemplateSpecSourceHelm, ApplicationSetSpecGeneratorGitTemplateSpecSourceHelmArgs

    FileParameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorGitTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorGitTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles List<string>
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    FileParameters []ApplicationSetSpecGeneratorGitTemplateSpecSourceHelmFileParameter
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters []ApplicationSetSpecGeneratorGitTemplateSpecSourceHelmParameter
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles []string
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<ApplicationSetSpecGeneratorGitTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<ApplicationSetSpecGeneratorGitTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters ApplicationSetSpecGeneratorGitTemplateSpecSourceHelmFileParameter[]
    File parameters for the helm template.
    ignoreMissingValueFiles boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters ApplicationSetSpecGeneratorGitTemplateSpecSourceHelmParameter[]
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName string
    Helm release name. If omitted it will use the application name.
    skipCrds boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles string[]
    List of Helm value files to use when generating a template.
    values string
    Helm values to be passed to 'helm template', typically defined as a block.
    version string
    The Helm version to use for templating. Accepts either v2 or v3
    file_parameters Sequence[ApplicationSetSpecGeneratorGitTemplateSpecSourceHelmFileParameter]
    File parameters for the helm template.
    ignore_missing_value_files bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters Sequence[ApplicationSetSpecGeneratorGitTemplateSpecSourceHelmParameter]
    Helm parameters which are passed to the helm template command upon manifest generation.
    pass_credentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    release_name str
    Helm release name. If omitted it will use the application name.
    skip_crds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    value_files Sequence[str]
    List of Helm value files to use when generating a template.
    values str
    Helm values to be passed to 'helm template', typically defined as a block.
    version str
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<Property Map>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<Property Map>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3

    ApplicationSetSpecGeneratorGitTemplateSpecSourceHelmFileParameter, ApplicationSetSpecGeneratorGitTemplateSpecSourceHelmFileParameterArgs

    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.
    name string
    Name of the Helm parameter.
    path string
    Path to the file containing the values for the Helm parameter.
    name str
    Name of the Helm parameter.
    path str
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.

    ApplicationSetSpecGeneratorGitTemplateSpecSourceHelmParameter, ApplicationSetSpecGeneratorGitTemplateSpecSourceHelmParameterArgs

    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.
    forceString boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name string
    Name of the Helm parameter.
    value string
    Value of the Helm parameter.
    force_string bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name str
    Name of the Helm parameter.
    value str
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.

    ApplicationSetSpecGeneratorGitTemplateSpecSourceKustomize, ApplicationSetSpecGeneratorGitTemplateSpecSourceKustomizeArgs

    CommonAnnotations Dictionary<string, string>
    List of additional annotations to add to rendered manifests.
    CommonLabels Dictionary<string, string>
    List of additional labels to add to rendered manifests.
    Images List<string>
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorGitTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    CommonAnnotations map[string]string
    List of additional annotations to add to rendered manifests.
    CommonLabels map[string]string
    List of additional labels to add to rendered manifests.
    Images []string
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches []ApplicationSetSpecGeneratorGitTemplateSpecSourceKustomizePatch
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String,String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String,String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<ApplicationSetSpecGeneratorGitTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.
    commonAnnotations {[key: string]: string}
    List of additional annotations to add to rendered manifests.
    commonLabels {[key: string]: string}
    List of additional labels to add to rendered manifests.
    images string[]
    List of Kustomize image override specifications.
    namePrefix string
    Prefix appended to resources for Kustomize apps.
    nameSuffix string
    Suffix appended to resources for Kustomize apps.
    patches ApplicationSetSpecGeneratorGitTemplateSpecSourceKustomizePatch[]
    A list of Kustomize patches to apply.
    version string
    Version of Kustomize to use for rendering manifests.
    common_annotations Mapping[str, str]
    List of additional annotations to add to rendered manifests.
    common_labels Mapping[str, str]
    List of additional labels to add to rendered manifests.
    images Sequence[str]
    List of Kustomize image override specifications.
    name_prefix str
    Prefix appended to resources for Kustomize apps.
    name_suffix str
    Suffix appended to resources for Kustomize apps.
    patches Sequence[ApplicationSetSpecGeneratorGitTemplateSpecSourceKustomizePatch]
    A list of Kustomize patches to apply.
    version str
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<Property Map>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.

    ApplicationSetSpecGeneratorGitTemplateSpecSourceKustomizePatch, ApplicationSetSpecGeneratorGitTemplateSpecSourceKustomizePatchArgs

    Target Three14.Argocd.Inputs.ApplicationSetSpecGeneratorGitTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options Dictionary<string, bool>
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    Target ApplicationSetSpecGeneratorGitTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options map[string]bool
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorGitTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Map<String,Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorGitTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options {[key: string]: boolean}
    Additional options.
    patch string
    Inline Kustomize patch to apply.
    path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorGitTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Mapping[str, bool]
    Additional options.
    patch str
    Inline Kustomize patch to apply.
    path str
    Path to a file containing the patch to apply.
    target Property Map
    Target(s) to patch
    options Map<Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.

    ApplicationSetSpecGeneratorGitTemplateSpecSourceKustomizePatchTarget, ApplicationSetSpecGeneratorGitTemplateSpecSourceKustomizePatchTargetArgs

    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.
    annotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    group string
    The Kubernetes resource Group to match for.
    kind string
    The Kubernetes resource Kind to match for.
    labelSelector string
    Label selector to use when matching the Kubernetes resource.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    version string
    The Kubernetes resource Version to match for.
    annotation_selector str
    Annotation selector to use when matching the Kubernetes resource.
    group str
    The Kubernetes resource Group to match for.
    kind str
    The Kubernetes resource Kind to match for.
    label_selector str
    Label selector to use when matching the Kubernetes resource.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    version str
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.

    ApplicationSetSpecGeneratorGitTemplateSpecSourcePlugin, ApplicationSetSpecGeneratorGitTemplateSpecSourcePluginArgs

    Envs List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorGitTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    Envs []ApplicationSetSpecGeneratorGitTemplateSpecSourcePluginEnv
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<ApplicationSetSpecGeneratorGitTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs ApplicationSetSpecGeneratorGitTemplateSpecSourcePluginEnv[]
    Environment variables passed to the plugin.
    name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs Sequence[ApplicationSetSpecGeneratorGitTemplateSpecSourcePluginEnv]
    Environment variables passed to the plugin.
    name str
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<Property Map>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.

    ApplicationSetSpecGeneratorGitTemplateSpecSourcePluginEnv, ApplicationSetSpecGeneratorGitTemplateSpecSourcePluginEnvArgs

    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.
    name string
    Name of the environment variable.
    value string
    Value of the environment variable.
    name str
    Name of the environment variable.
    value str
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.

    ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicy, ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicyArgs

    Automated Three14.Argocd.Inputs.ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata Three14.Argocd.Inputs.ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry Three14.Argocd.Inputs.ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions List<string>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    Automated ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions []string
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions string[]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managed_namespace_metadata ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    sync_options Sequence[str]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated Property Map
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata Property Map
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry Property Map
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.

    ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicyAutomated, ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicyAutomatedArgs

    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty boolean
    Allows apps have zero live resources.
    prune boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allow_empty bool
    Allows apps have zero live resources.
    prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    self_heal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.

    ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadata, ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadataArgs

    Annotations Dictionary<string, string>
    Annotations to apply to the namespace.
    Labels Dictionary<string, string>
    Labels to apply to the namespace.
    Annotations map[string]string
    Annotations to apply to the namespace.
    Labels map[string]string
    Labels to apply to the namespace.
    annotations Map<String,String>
    Annotations to apply to the namespace.
    labels Map<String,String>
    Labels to apply to the namespace.
    annotations {[key: string]: string}
    Annotations to apply to the namespace.
    labels {[key: string]: string}
    Labels to apply to the namespace.
    annotations Mapping[str, str]
    Annotations to apply to the namespace.
    labels Mapping[str, str]
    Labels to apply to the namespace.
    annotations Map<String>
    Annotations to apply to the namespace.
    labels Map<String>
    Labels to apply to the namespace.

    ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicyRetry, ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicyRetryArgs

    Backoff Three14.Argocd.Inputs.ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    Backoff ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit str
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff Property Map
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.

    ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicyRetryBackoff, ApplicationSetSpecGeneratorGitTemplateSpecSyncPolicyRetryBackoffArgs

    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor string
    Factor to multiply the base duration after each failed retry.
    maxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration str
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor str
    Factor to multiply the base duration after each failed retry.
    max_duration str
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.

    ApplicationSetSpecGeneratorList, ApplicationSetSpecGeneratorListArgs

    Elements List<ImmutableDictionary<string, string>>
    List of key/value pairs to pass as parameters into the template
    Template Three14.Argocd.Inputs.ApplicationSetSpecGeneratorListTemplate
    Generator template. Used to override the values of the spec-level template.
    Elements []map[string]string
    List of key/value pairs to pass as parameters into the template
    Template ApplicationSetSpecGeneratorListTemplate
    Generator template. Used to override the values of the spec-level template.
    elements List<Map<String,String>>
    List of key/value pairs to pass as parameters into the template
    template ApplicationSetSpecGeneratorListTemplate
    Generator template. Used to override the values of the spec-level template.
    elements {[key: string]: string}[]
    List of key/value pairs to pass as parameters into the template
    template ApplicationSetSpecGeneratorListTemplate
    Generator template. Used to override the values of the spec-level template.
    elements Sequence[Mapping[str, str]]
    List of key/value pairs to pass as parameters into the template
    template ApplicationSetSpecGeneratorListTemplate
    Generator template. Used to override the values of the spec-level template.
    elements List<Map<String>>
    List of key/value pairs to pass as parameters into the template
    template Property Map
    Generator template. Used to override the values of the spec-level template.

    ApplicationSetSpecGeneratorListTemplate, ApplicationSetSpecGeneratorListTemplateArgs

    Metadata ApplicationSetSpecGeneratorListTemplateMetadata
    Kubernetes object metadata for templated Application.
    Spec ApplicationSetSpecGeneratorListTemplateSpec
    The application specification.
    metadata ApplicationSetSpecGeneratorListTemplateMetadata
    Kubernetes object metadata for templated Application.
    spec ApplicationSetSpecGeneratorListTemplateSpec
    The application specification.
    metadata ApplicationSetSpecGeneratorListTemplateMetadata
    Kubernetes object metadata for templated Application.
    spec ApplicationSetSpecGeneratorListTemplateSpec
    The application specification.
    metadata ApplicationSetSpecGeneratorListTemplateMetadata
    Kubernetes object metadata for templated Application.
    spec ApplicationSetSpecGeneratorListTemplateSpec
    The application specification.
    metadata Property Map
    Kubernetes object metadata for templated Application.
    spec Property Map
    The application specification.

    ApplicationSetSpecGeneratorListTemplateMetadata, ApplicationSetSpecGeneratorListTemplateMetadataArgs

    Annotations Dictionary<string, string>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers List<string>
    List of finalizers to apply to the resulting Application.
    Labels Dictionary<string, string>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    Annotations map[string]string
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers []string
    List of finalizers to apply to the resulting Application.
    Labels map[string]string
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    annotations Map<String,String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String,String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application
    annotations {[key: string]: string}
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers string[]
    List of finalizers to apply to the resulting Application.
    labels {[key: string]: string}
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name string
    Name of the resulting Application
    namespace string
    Namespace of the resulting Application
    annotations Mapping[str, str]
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers Sequence[str]
    List of finalizers to apply to the resulting Application.
    labels Mapping[str, str]
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name str
    Name of the resulting Application
    namespace str
    Namespace of the resulting Application
    annotations Map<String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application

    ApplicationSetSpecGeneratorListTemplateSpec, ApplicationSetSpecGeneratorListTemplateSpecArgs

    Destination Three14.Argocd.Inputs.ApplicationSetSpecGeneratorListTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorListTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorListTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorListTemplateSpecSource>
    Location of the application's manifests or chart.
    SyncPolicy Three14.Argocd.Inputs.ApplicationSetSpecGeneratorListTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    Destination ApplicationSetSpecGeneratorListTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences []ApplicationSetSpecGeneratorListTemplateSpecIgnoreDifference
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos []ApplicationSetSpecGeneratorListTemplateSpecInfo
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources []ApplicationSetSpecGeneratorListTemplateSpecSource
    Location of the application's manifests or chart.
    SyncPolicy ApplicationSetSpecGeneratorListTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorListTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<ApplicationSetSpecGeneratorListTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<ApplicationSetSpecGeneratorListTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Integer
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<ApplicationSetSpecGeneratorListTemplateSpecSource>
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorListTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorListTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences ApplicationSetSpecGeneratorListTemplateSpecIgnoreDifference[]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos ApplicationSetSpecGeneratorListTemplateSpecInfo[]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project string
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources ApplicationSetSpecGeneratorListTemplateSpecSource[]
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorListTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorListTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignore_differences Sequence[ApplicationSetSpecGeneratorListTemplateSpecIgnoreDifference]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos Sequence[ApplicationSetSpecGeneratorListTemplateSpecInfo]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project str
    The project the application belongs to. Defaults to default.
    revision_history_limit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources Sequence[ApplicationSetSpecGeneratorListTemplateSpecSource]
    Location of the application's manifests or chart.
    sync_policy ApplicationSetSpecGeneratorListTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination Property Map
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<Property Map>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<Property Map>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<Property Map>
    Location of the application's manifests or chart.
    syncPolicy Property Map
    Controls when and how a sync will be performed.

    ApplicationSetSpecGeneratorListTemplateSpecDestination, ApplicationSetSpecGeneratorListTemplateSpecDestinationArgs

    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name string
    Name of the target cluster. Can be used instead of server.
    namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name str
    Name of the target cluster. Can be used instead of server.
    namespace str
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server str
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.

    ApplicationSetSpecGeneratorListTemplateSpecIgnoreDifference, ApplicationSetSpecGeneratorListTemplateSpecIgnoreDifferenceArgs

    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions List<string>
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers List<string>
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers List<string>
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions []string
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers []string
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers []string
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    group string
    The Kubernetes resource Group to match for.
    jqPathExpressions string[]
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers string[]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind string
    The Kubernetes resource Kind to match for.
    managedFieldsManagers string[]
    List of external controller manager names whose changes to fields should be ignored.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    group str
    The Kubernetes resource Group to match for.
    jq_path_expressions Sequence[str]
    List of JQ path expression strings targeting the field(s) to ignore.
    json_pointers Sequence[str]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind str
    The Kubernetes resource Kind to match for.
    managed_fields_managers Sequence[str]
    List of external controller manager names whose changes to fields should be ignored.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.

    ApplicationSetSpecGeneratorListTemplateSpecInfo, ApplicationSetSpecGeneratorListTemplateSpecInfoArgs

    Name string
    Name of the information.
    Value string
    Value of the information.
    Name string
    Name of the information.
    Value string
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.
    name string
    Name of the information.
    value string
    Value of the information.
    name str
    Name of the information.
    value str
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.

    ApplicationSetSpecGeneratorListTemplateSpecSource, ApplicationSetSpecGeneratorListTemplateSpecSourceArgs

    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory Three14.Argocd.Inputs.ApplicationSetSpecGeneratorListTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm Three14.Argocd.Inputs.ApplicationSetSpecGeneratorListTemplateSpecSourceHelm
    Helm specific options.
    Kustomize Three14.Argocd.Inputs.ApplicationSetSpecGeneratorListTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin Three14.Argocd.Inputs.ApplicationSetSpecGeneratorListTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory ApplicationSetSpecGeneratorListTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm ApplicationSetSpecGeneratorListTemplateSpecSourceHelm
    Helm specific options.
    Kustomize ApplicationSetSpecGeneratorListTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin ApplicationSetSpecGeneratorListTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorListTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorListTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorListTemplateSpecSourceKustomize
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorListTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorListTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorListTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorListTemplateSpecSourceKustomize
    Kustomize specific options.
    path string
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorListTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart str
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorListTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorListTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorListTemplateSpecSourceKustomize
    Kustomize specific options.
    path str
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorListTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref str
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repo_url str
    URL to the repository (Git or Helm) that contains the application manifests.
    target_revision str
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory Property Map
    Path/directory specific options.
    helm Property Map
    Helm specific options.
    kustomize Property Map
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin Property Map
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.

    ApplicationSetSpecGeneratorListTemplateSpecSourceDirectory, ApplicationSetSpecGeneratorListTemplateSpecSourceDirectoryArgs

    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet Three14.Argocd.Inputs.ApplicationSetSpecGeneratorListTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet ApplicationSetSpecGeneratorListTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorListTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.
    exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorListTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse boolean
    Whether to scan a directory recursively for manifests.
    exclude str
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include str
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorListTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet Property Map
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.

    ApplicationSetSpecGeneratorListTemplateSpecSourceDirectoryJsonnet, ApplicationSetSpecGeneratorListTemplateSpecSourceDirectoryJsonnetArgs

    ExtVars []ApplicationSetSpecGeneratorListTemplateSpecSourceDirectoryJsonnetExtVar
    List of Jsonnet External Variables.
    Libs []string
    Additional library search dirs.
    Tlas []ApplicationSetSpecGeneratorListTemplateSpecSourceDirectoryJsonnetTla
    List of Jsonnet Top-level Arguments
    extVars List<ApplicationSetSpecGeneratorListTemplateSpecSourceDirectoryJsonnetExtVar>
    List of Jsonnet External Variables.
    libs List<String>
    Additional library search dirs.
    tlas List<ApplicationSetSpecGeneratorListTemplateSpecSourceDirectoryJsonnetTla>
    List of Jsonnet Top-level Arguments
    extVars ApplicationSetSpecGeneratorListTemplateSpecSourceDirectoryJsonnetExtVar[]
    List of Jsonnet External Variables.
    libs string[]
    Additional library search dirs.
    tlas ApplicationSetSpecGeneratorListTemplateSpecSourceDirectoryJsonnetTla[]
    List of Jsonnet Top-level Arguments
    ext_vars Sequence[ApplicationSetSpecGeneratorListTemplateSpecSourceDirectoryJsonnetExtVar]
    List of Jsonnet External Variables.
    libs Sequence[str]
    Additional library search dirs.
    tlas Sequence[ApplicationSetSpecGeneratorListTemplateSpecSourceDirectoryJsonnetTla]
    List of Jsonnet Top-level Arguments
    extVars List<Property Map>
    List of Jsonnet External Variables.
    libs List<String>
    Additional library search dirs.
    tlas List<Property Map>
    List of Jsonnet Top-level Arguments

    ApplicationSetSpecGeneratorListTemplateSpecSourceDirectoryJsonnetExtVar, ApplicationSetSpecGeneratorListTemplateSpecSourceDirectoryJsonnetExtVarArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorListTemplateSpecSourceDirectoryJsonnetTla, ApplicationSetSpecGeneratorListTemplateSpecSourceDirectoryJsonnetTlaArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorListTemplateSpecSourceHelm, ApplicationSetSpecGeneratorListTemplateSpecSourceHelmArgs

    FileParameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorListTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorListTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles List<string>
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    FileParameters []ApplicationSetSpecGeneratorListTemplateSpecSourceHelmFileParameter
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters []ApplicationSetSpecGeneratorListTemplateSpecSourceHelmParameter
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles []string
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<ApplicationSetSpecGeneratorListTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<ApplicationSetSpecGeneratorListTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters ApplicationSetSpecGeneratorListTemplateSpecSourceHelmFileParameter[]
    File parameters for the helm template.
    ignoreMissingValueFiles boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters ApplicationSetSpecGeneratorListTemplateSpecSourceHelmParameter[]
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName string
    Helm release name. If omitted it will use the application name.
    skipCrds boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles string[]
    List of Helm value files to use when generating a template.
    values string
    Helm values to be passed to 'helm template', typically defined as a block.
    version string
    The Helm version to use for templating. Accepts either v2 or v3
    file_parameters Sequence[ApplicationSetSpecGeneratorListTemplateSpecSourceHelmFileParameter]
    File parameters for the helm template.
    ignore_missing_value_files bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters Sequence[ApplicationSetSpecGeneratorListTemplateSpecSourceHelmParameter]
    Helm parameters which are passed to the helm template command upon manifest generation.
    pass_credentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    release_name str
    Helm release name. If omitted it will use the application name.
    skip_crds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    value_files Sequence[str]
    List of Helm value files to use when generating a template.
    values str
    Helm values to be passed to 'helm template', typically defined as a block.
    version str
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<Property Map>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<Property Map>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3

    ApplicationSetSpecGeneratorListTemplateSpecSourceHelmFileParameter, ApplicationSetSpecGeneratorListTemplateSpecSourceHelmFileParameterArgs

    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.
    name string
    Name of the Helm parameter.
    path string
    Path to the file containing the values for the Helm parameter.
    name str
    Name of the Helm parameter.
    path str
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.

    ApplicationSetSpecGeneratorListTemplateSpecSourceHelmParameter, ApplicationSetSpecGeneratorListTemplateSpecSourceHelmParameterArgs

    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.
    forceString boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name string
    Name of the Helm parameter.
    value string
    Value of the Helm parameter.
    force_string bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name str
    Name of the Helm parameter.
    value str
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.

    ApplicationSetSpecGeneratorListTemplateSpecSourceKustomize, ApplicationSetSpecGeneratorListTemplateSpecSourceKustomizeArgs

    CommonAnnotations Dictionary<string, string>
    List of additional annotations to add to rendered manifests.
    CommonLabels Dictionary<string, string>
    List of additional labels to add to rendered manifests.
    Images List<string>
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorListTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    CommonAnnotations map[string]string
    List of additional annotations to add to rendered manifests.
    CommonLabels map[string]string
    List of additional labels to add to rendered manifests.
    Images []string
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches []ApplicationSetSpecGeneratorListTemplateSpecSourceKustomizePatch
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String,String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String,String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<ApplicationSetSpecGeneratorListTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.
    commonAnnotations {[key: string]: string}
    List of additional annotations to add to rendered manifests.
    commonLabels {[key: string]: string}
    List of additional labels to add to rendered manifests.
    images string[]
    List of Kustomize image override specifications.
    namePrefix string
    Prefix appended to resources for Kustomize apps.
    nameSuffix string
    Suffix appended to resources for Kustomize apps.
    patches ApplicationSetSpecGeneratorListTemplateSpecSourceKustomizePatch[]
    A list of Kustomize patches to apply.
    version string
    Version of Kustomize to use for rendering manifests.
    common_annotations Mapping[str, str]
    List of additional annotations to add to rendered manifests.
    common_labels Mapping[str, str]
    List of additional labels to add to rendered manifests.
    images Sequence[str]
    List of Kustomize image override specifications.
    name_prefix str
    Prefix appended to resources for Kustomize apps.
    name_suffix str
    Suffix appended to resources for Kustomize apps.
    patches Sequence[ApplicationSetSpecGeneratorListTemplateSpecSourceKustomizePatch]
    A list of Kustomize patches to apply.
    version str
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<Property Map>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.

    ApplicationSetSpecGeneratorListTemplateSpecSourceKustomizePatch, ApplicationSetSpecGeneratorListTemplateSpecSourceKustomizePatchArgs

    Target Three14.Argocd.Inputs.ApplicationSetSpecGeneratorListTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options Dictionary<string, bool>
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    Target ApplicationSetSpecGeneratorListTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options map[string]bool
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorListTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Map<String,Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorListTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options {[key: string]: boolean}
    Additional options.
    patch string
    Inline Kustomize patch to apply.
    path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorListTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Mapping[str, bool]
    Additional options.
    patch str
    Inline Kustomize patch to apply.
    path str
    Path to a file containing the patch to apply.
    target Property Map
    Target(s) to patch
    options Map<Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.

    ApplicationSetSpecGeneratorListTemplateSpecSourceKustomizePatchTarget, ApplicationSetSpecGeneratorListTemplateSpecSourceKustomizePatchTargetArgs

    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.
    annotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    group string
    The Kubernetes resource Group to match for.
    kind string
    The Kubernetes resource Kind to match for.
    labelSelector string
    Label selector to use when matching the Kubernetes resource.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    version string
    The Kubernetes resource Version to match for.
    annotation_selector str
    Annotation selector to use when matching the Kubernetes resource.
    group str
    The Kubernetes resource Group to match for.
    kind str
    The Kubernetes resource Kind to match for.
    label_selector str
    Label selector to use when matching the Kubernetes resource.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    version str
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.

    ApplicationSetSpecGeneratorListTemplateSpecSourcePlugin, ApplicationSetSpecGeneratorListTemplateSpecSourcePluginArgs

    Envs List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorListTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    Envs []ApplicationSetSpecGeneratorListTemplateSpecSourcePluginEnv
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<ApplicationSetSpecGeneratorListTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs ApplicationSetSpecGeneratorListTemplateSpecSourcePluginEnv[]
    Environment variables passed to the plugin.
    name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs Sequence[ApplicationSetSpecGeneratorListTemplateSpecSourcePluginEnv]
    Environment variables passed to the plugin.
    name str
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<Property Map>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.

    ApplicationSetSpecGeneratorListTemplateSpecSourcePluginEnv, ApplicationSetSpecGeneratorListTemplateSpecSourcePluginEnvArgs

    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.
    name string
    Name of the environment variable.
    value string
    Value of the environment variable.
    name str
    Name of the environment variable.
    value str
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.

    ApplicationSetSpecGeneratorListTemplateSpecSyncPolicy, ApplicationSetSpecGeneratorListTemplateSpecSyncPolicyArgs

    Automated Three14.Argocd.Inputs.ApplicationSetSpecGeneratorListTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata Three14.Argocd.Inputs.ApplicationSetSpecGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry Three14.Argocd.Inputs.ApplicationSetSpecGeneratorListTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions List<string>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    Automated ApplicationSetSpecGeneratorListTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata ApplicationSetSpecGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry ApplicationSetSpecGeneratorListTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions []string
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorListTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorListTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorListTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorListTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions string[]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorListTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managed_namespace_metadata ApplicationSetSpecGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorListTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    sync_options Sequence[str]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated Property Map
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata Property Map
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry Property Map
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.

    ApplicationSetSpecGeneratorListTemplateSpecSyncPolicyAutomated, ApplicationSetSpecGeneratorListTemplateSpecSyncPolicyAutomatedArgs

    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty boolean
    Allows apps have zero live resources.
    prune boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allow_empty bool
    Allows apps have zero live resources.
    prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    self_heal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.

    ApplicationSetSpecGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadata, ApplicationSetSpecGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadataArgs

    Annotations Dictionary<string, string>
    Annotations to apply to the namespace.
    Labels Dictionary<string, string>
    Labels to apply to the namespace.
    Annotations map[string]string
    Annotations to apply to the namespace.
    Labels map[string]string
    Labels to apply to the namespace.
    annotations Map<String,String>
    Annotations to apply to the namespace.
    labels Map<String,String>
    Labels to apply to the namespace.
    annotations {[key: string]: string}
    Annotations to apply to the namespace.
    labels {[key: string]: string}
    Labels to apply to the namespace.
    annotations Mapping[str, str]
    Annotations to apply to the namespace.
    labels Mapping[str, str]
    Labels to apply to the namespace.
    annotations Map<String>
    Annotations to apply to the namespace.
    labels Map<String>
    Labels to apply to the namespace.

    ApplicationSetSpecGeneratorListTemplateSpecSyncPolicyRetry, ApplicationSetSpecGeneratorListTemplateSpecSyncPolicyRetryArgs

    Backoff Three14.Argocd.Inputs.ApplicationSetSpecGeneratorListTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    Backoff ApplicationSetSpecGeneratorListTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorListTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorListTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorListTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit str
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff Property Map
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.

    ApplicationSetSpecGeneratorListTemplateSpecSyncPolicyRetryBackoff, ApplicationSetSpecGeneratorListTemplateSpecSyncPolicyRetryBackoffArgs

    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor string
    Factor to multiply the base duration after each failed retry.
    maxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration str
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor str
    Factor to multiply the base duration after each failed retry.
    max_duration str
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.

    ApplicationSetSpecGeneratorMatrix, ApplicationSetSpecGeneratorMatrixArgs

    Generators List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGenerator>
    Child generator. Generators are responsible for generating parameters, which are then combined by the parent matrix generator into the template fields of the ApplicationSet resource.
    Template Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixTemplate
    Generator template. Used to override the values of the spec-level template.
    Generators []ApplicationSetSpecGeneratorMatrixGenerator
    Child generator. Generators are responsible for generating parameters, which are then combined by the parent matrix generator into the template fields of the ApplicationSet resource.
    Template ApplicationSetSpecGeneratorMatrixTemplate
    Generator template. Used to override the values of the spec-level template.
    generators List<ApplicationSetSpecGeneratorMatrixGenerator>
    Child generator. Generators are responsible for generating parameters, which are then combined by the parent matrix generator into the template fields of the ApplicationSet resource.
    template ApplicationSetSpecGeneratorMatrixTemplate
    Generator template. Used to override the values of the spec-level template.
    generators ApplicationSetSpecGeneratorMatrixGenerator[]
    Child generator. Generators are responsible for generating parameters, which are then combined by the parent matrix generator into the template fields of the ApplicationSet resource.
    template ApplicationSetSpecGeneratorMatrixTemplate
    Generator template. Used to override the values of the spec-level template.
    generators Sequence[ApplicationSetSpecGeneratorMatrixGenerator]
    Child generator. Generators are responsible for generating parameters, which are then combined by the parent matrix generator into the template fields of the ApplicationSet resource.
    template ApplicationSetSpecGeneratorMatrixTemplate
    Generator template. Used to override the values of the spec-level template.
    generators List<Property Map>
    Child generator. Generators are responsible for generating parameters, which are then combined by the parent matrix generator into the template fields of the ApplicationSet resource.
    template Property Map
    Generator template. Used to override the values of the spec-level template.

    ApplicationSetSpecGeneratorMatrixGenerator, ApplicationSetSpecGeneratorMatrixGeneratorArgs

    ClusterDecisionResources List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResource>
    The cluster decision resource generates a list of Argo CD clusters.
    Clusters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorCluster>
    The cluster generator produces parameters based on the list of items found within the cluster secret.
    Gits List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGit>
    Git generators generates parameters using either the directory structure of a specified Git repository (directory generator), or, using the contents of JSON/YAML files found within a specified repository (file generator).
    Lists List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorList>
    List generators generate parameters based on an arbitrary list of key/value pairs (as long as the values are string values).
    Matrices List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrix>
    Matrix generators combine the parameters generated by two child generators, iterating through every combination of each generator's generated parameters. Take note of the restrictions regarding their usage - particularly regarding nesting matrix generators.
    Merges List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMerge>
    Merge generators combine parameters produced by the base (first) generator with matching parameter sets produced by subsequent generators. Take note of the restrictions regarding their usage - particularly regarding nesting merge generators.
    PullRequests List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequest>
    Pull Request generators uses the API of an SCMaaS provider to automatically discover open pull requests within a repository.
    ScmProviders List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProvider>
    SCM Provider generators uses the API of an SCMaaS provider to automatically discover repositories within an organization.
    Selector Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorSelector
    The Selector allows to post-filter based on generated values using the kubernetes common labelSelector format.
    ClusterDecisionResources []ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResource
    The cluster decision resource generates a list of Argo CD clusters.
    Clusters []ApplicationSetSpecGeneratorMatrixGeneratorCluster
    The cluster generator produces parameters based on the list of items found within the cluster secret.
    Gits []ApplicationSetSpecGeneratorMatrixGeneratorGit
    Git generators generates parameters using either the directory structure of a specified Git repository (directory generator), or, using the contents of JSON/YAML files found within a specified repository (file generator).
    Lists []ApplicationSetSpecGeneratorMatrixGeneratorList
    List generators generate parameters based on an arbitrary list of key/value pairs (as long as the values are string values).
    Matrices []ApplicationSetSpecGeneratorMatrixGeneratorMatrix
    Matrix generators combine the parameters generated by two child generators, iterating through every combination of each generator's generated parameters. Take note of the restrictions regarding their usage - particularly regarding nesting matrix generators.
    Merges []ApplicationSetSpecGeneratorMatrixGeneratorMerge
    Merge generators combine parameters produced by the base (first) generator with matching parameter sets produced by subsequent generators. Take note of the restrictions regarding their usage - particularly regarding nesting merge generators.
    PullRequests []ApplicationSetSpecGeneratorMatrixGeneratorPullRequest
    Pull Request generators uses the API of an SCMaaS provider to automatically discover open pull requests within a repository.
    ScmProviders []ApplicationSetSpecGeneratorMatrixGeneratorScmProvider
    SCM Provider generators uses the API of an SCMaaS provider to automatically discover repositories within an organization.
    Selector ApplicationSetSpecGeneratorMatrixGeneratorSelector
    The Selector allows to post-filter based on generated values using the kubernetes common labelSelector format.
    clusterDecisionResources List<ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResource>
    The cluster decision resource generates a list of Argo CD clusters.
    clusters List<ApplicationSetSpecGeneratorMatrixGeneratorCluster>
    The cluster generator produces parameters based on the list of items found within the cluster secret.
    gits List<ApplicationSetSpecGeneratorMatrixGeneratorGit>
    Git generators generates parameters using either the directory structure of a specified Git repository (directory generator), or, using the contents of JSON/YAML files found within a specified repository (file generator).
    lists List<ApplicationSetSpecGeneratorMatrixGeneratorList>
    List generators generate parameters based on an arbitrary list of key/value pairs (as long as the values are string values).
    matrices List<ApplicationSetSpecGeneratorMatrixGeneratorMatrix>
    Matrix generators combine the parameters generated by two child generators, iterating through every combination of each generator's generated parameters. Take note of the restrictions regarding their usage - particularly regarding nesting matrix generators.
    merges List<ApplicationSetSpecGeneratorMatrixGeneratorMerge>
    Merge generators combine parameters produced by the base (first) generator with matching parameter sets produced by subsequent generators. Take note of the restrictions regarding their usage - particularly regarding nesting merge generators.
    pullRequests List<ApplicationSetSpecGeneratorMatrixGeneratorPullRequest>
    Pull Request generators uses the API of an SCMaaS provider to automatically discover open pull requests within a repository.
    scmProviders List<ApplicationSetSpecGeneratorMatrixGeneratorScmProvider>
    SCM Provider generators uses the API of an SCMaaS provider to automatically discover repositories within an organization.
    selector ApplicationSetSpecGeneratorMatrixGeneratorSelector
    The Selector allows to post-filter based on generated values using the kubernetes common labelSelector format.
    clusterDecisionResources ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResource[]
    The cluster decision resource generates a list of Argo CD clusters.
    clusters ApplicationSetSpecGeneratorMatrixGeneratorCluster[]
    The cluster generator produces parameters based on the list of items found within the cluster secret.
    gits ApplicationSetSpecGeneratorMatrixGeneratorGit[]
    Git generators generates parameters using either the directory structure of a specified Git repository (directory generator), or, using the contents of JSON/YAML files found within a specified repository (file generator).
    lists ApplicationSetSpecGeneratorMatrixGeneratorList[]
    List generators generate parameters based on an arbitrary list of key/value pairs (as long as the values are string values).
    matrices ApplicationSetSpecGeneratorMatrixGeneratorMatrix[]
    Matrix generators combine the parameters generated by two child generators, iterating through every combination of each generator's generated parameters. Take note of the restrictions regarding their usage - particularly regarding nesting matrix generators.
    merges ApplicationSetSpecGeneratorMatrixGeneratorMerge[]
    Merge generators combine parameters produced by the base (first) generator with matching parameter sets produced by subsequent generators. Take note of the restrictions regarding their usage - particularly regarding nesting merge generators.
    pullRequests ApplicationSetSpecGeneratorMatrixGeneratorPullRequest[]
    Pull Request generators uses the API of an SCMaaS provider to automatically discover open pull requests within a repository.
    scmProviders ApplicationSetSpecGeneratorMatrixGeneratorScmProvider[]
    SCM Provider generators uses the API of an SCMaaS provider to automatically discover repositories within an organization.
    selector ApplicationSetSpecGeneratorMatrixGeneratorSelector
    The Selector allows to post-filter based on generated values using the kubernetes common labelSelector format.
    cluster_decision_resources Sequence[ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResource]
    The cluster decision resource generates a list of Argo CD clusters.
    clusters Sequence[ApplicationSetSpecGeneratorMatrixGeneratorCluster]
    The cluster generator produces parameters based on the list of items found within the cluster secret.
    gits Sequence[ApplicationSetSpecGeneratorMatrixGeneratorGit]
    Git generators generates parameters using either the directory structure of a specified Git repository (directory generator), or, using the contents of JSON/YAML files found within a specified repository (file generator).
    lists Sequence[ApplicationSetSpecGeneratorMatrixGeneratorList]
    List generators generate parameters based on an arbitrary list of key/value pairs (as long as the values are string values).
    matrices Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrix]
    Matrix generators combine the parameters generated by two child generators, iterating through every combination of each generator's generated parameters. Take note of the restrictions regarding their usage - particularly regarding nesting matrix generators.
    merges Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMerge]
    Merge generators combine parameters produced by the base (first) generator with matching parameter sets produced by subsequent generators. Take note of the restrictions regarding their usage - particularly regarding nesting merge generators.
    pull_requests Sequence[ApplicationSetSpecGeneratorMatrixGeneratorPullRequest]
    Pull Request generators uses the API of an SCMaaS provider to automatically discover open pull requests within a repository.
    scm_providers Sequence[ApplicationSetSpecGeneratorMatrixGeneratorScmProvider]
    SCM Provider generators uses the API of an SCMaaS provider to automatically discover repositories within an organization.
    selector ApplicationSetSpecGeneratorMatrixGeneratorSelector
    The Selector allows to post-filter based on generated values using the kubernetes common labelSelector format.
    clusterDecisionResources List<Property Map>
    The cluster decision resource generates a list of Argo CD clusters.
    clusters List<Property Map>
    The cluster generator produces parameters based on the list of items found within the cluster secret.
    gits List<Property Map>
    Git generators generates parameters using either the directory structure of a specified Git repository (directory generator), or, using the contents of JSON/YAML files found within a specified repository (file generator).
    lists List<Property Map>
    List generators generate parameters based on an arbitrary list of key/value pairs (as long as the values are string values).
    matrices List<Property Map>
    Matrix generators combine the parameters generated by two child generators, iterating through every combination of each generator's generated parameters. Take note of the restrictions regarding their usage - particularly regarding nesting matrix generators.
    merges List<Property Map>
    Merge generators combine parameters produced by the base (first) generator with matching parameter sets produced by subsequent generators. Take note of the restrictions regarding their usage - particularly regarding nesting merge generators.
    pullRequests List<Property Map>
    Pull Request generators uses the API of an SCMaaS provider to automatically discover open pull requests within a repository.
    scmProviders List<Property Map>
    SCM Provider generators uses the API of an SCMaaS provider to automatically discover repositories within an organization.
    selector Property Map
    The Selector allows to post-filter based on generated values using the kubernetes common labelSelector format.

    ApplicationSetSpecGeneratorMatrixGeneratorCluster, ApplicationSetSpecGeneratorMatrixGeneratorClusterArgs

    Enabled bool
    Boolean value defaulting to true to indicate that this block has been added thereby allowing all other attributes to be optional.
    Selector Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterSelector
    Label selector used to narrow the scope of targeted clusters.
    Template Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplate
    Generator template. Used to override the values of the spec-level template.
    Values Dictionary<string, string>
    Arbitrary string key-value pairs to pass to the template via the values field of the cluster generator.
    Enabled bool
    Boolean value defaulting to true to indicate that this block has been added thereby allowing all other attributes to be optional.
    Selector ApplicationSetSpecGeneratorMatrixGeneratorClusterSelector
    Label selector used to narrow the scope of targeted clusters.
    Template ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplate
    Generator template. Used to override the values of the spec-level template.
    Values map[string]string
    Arbitrary string key-value pairs to pass to the template via the values field of the cluster generator.
    enabled Boolean
    Boolean value defaulting to true to indicate that this block has been added thereby allowing all other attributes to be optional.
    selector ApplicationSetSpecGeneratorMatrixGeneratorClusterSelector
    Label selector used to narrow the scope of targeted clusters.
    template ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplate
    Generator template. Used to override the values of the spec-level template.
    values Map<String,String>
    Arbitrary string key-value pairs to pass to the template via the values field of the cluster generator.
    enabled boolean
    Boolean value defaulting to true to indicate that this block has been added thereby allowing all other attributes to be optional.
    selector ApplicationSetSpecGeneratorMatrixGeneratorClusterSelector
    Label selector used to narrow the scope of targeted clusters.
    template ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplate
    Generator template. Used to override the values of the spec-level template.
    values {[key: string]: string}
    Arbitrary string key-value pairs to pass to the template via the values field of the cluster generator.
    enabled bool
    Boolean value defaulting to true to indicate that this block has been added thereby allowing all other attributes to be optional.
    selector ApplicationSetSpecGeneratorMatrixGeneratorClusterSelector
    Label selector used to narrow the scope of targeted clusters.
    template ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplate
    Generator template. Used to override the values of the spec-level template.
    values Mapping[str, str]
    Arbitrary string key-value pairs to pass to the template via the values field of the cluster generator.
    enabled Boolean
    Boolean value defaulting to true to indicate that this block has been added thereby allowing all other attributes to be optional.
    selector Property Map
    Label selector used to narrow the scope of targeted clusters.
    template Property Map
    Generator template. Used to override the values of the spec-level template.
    values Map<String>
    Arbitrary string key-value pairs to pass to the template via the values field of the cluster generator.

    ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResource, ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceArgs

    ConfigMapRef string
    ConfigMap with the duck type definitions needed to retrieve the data this includes apiVersion(group/version), kind, matchKey and validation settings.
    LabelSelector Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceLabelSelector
    Label selector used to find the resource defined in the config_map_ref. Alternative to name.
    Name string
    Resource name of the kind, group and version, defined in the config_map_ref.
    RequeueAfterSeconds string
    How often to check for changes (in seconds). Default: 3min.
    Template Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplate
    Generator template. Used to override the values of the spec-level template.
    Values Dictionary<string, string>
    Arbitrary string key-value pairs which are passed directly as parameters to the template.
    ConfigMapRef string
    ConfigMap with the duck type definitions needed to retrieve the data this includes apiVersion(group/version), kind, matchKey and validation settings.
    LabelSelector ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceLabelSelector
    Label selector used to find the resource defined in the config_map_ref. Alternative to name.
    Name string
    Resource name of the kind, group and version, defined in the config_map_ref.
    RequeueAfterSeconds string
    How often to check for changes (in seconds). Default: 3min.
    Template ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplate
    Generator template. Used to override the values of the spec-level template.
    Values map[string]string
    Arbitrary string key-value pairs which are passed directly as parameters to the template.
    configMapRef String
    ConfigMap with the duck type definitions needed to retrieve the data this includes apiVersion(group/version), kind, matchKey and validation settings.
    labelSelector ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceLabelSelector
    Label selector used to find the resource defined in the config_map_ref. Alternative to name.
    name String
    Resource name of the kind, group and version, defined in the config_map_ref.
    requeueAfterSeconds String
    How often to check for changes (in seconds). Default: 3min.
    template ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplate
    Generator template. Used to override the values of the spec-level template.
    values Map<String,String>
    Arbitrary string key-value pairs which are passed directly as parameters to the template.
    configMapRef string
    ConfigMap with the duck type definitions needed to retrieve the data this includes apiVersion(group/version), kind, matchKey and validation settings.
    labelSelector ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceLabelSelector
    Label selector used to find the resource defined in the config_map_ref. Alternative to name.
    name string
    Resource name of the kind, group and version, defined in the config_map_ref.
    requeueAfterSeconds string
    How often to check for changes (in seconds). Default: 3min.
    template ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplate
    Generator template. Used to override the values of the spec-level template.
    values {[key: string]: string}
    Arbitrary string key-value pairs which are passed directly as parameters to the template.
    config_map_ref str
    ConfigMap with the duck type definitions needed to retrieve the data this includes apiVersion(group/version), kind, matchKey and validation settings.
    label_selector ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceLabelSelector
    Label selector used to find the resource defined in the config_map_ref. Alternative to name.
    name str
    Resource name of the kind, group and version, defined in the config_map_ref.
    requeue_after_seconds str
    How often to check for changes (in seconds). Default: 3min.
    template ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplate
    Generator template. Used to override the values of the spec-level template.
    values Mapping[str, str]
    Arbitrary string key-value pairs which are passed directly as parameters to the template.
    configMapRef String
    ConfigMap with the duck type definitions needed to retrieve the data this includes apiVersion(group/version), kind, matchKey and validation settings.
    labelSelector Property Map
    Label selector used to find the resource defined in the config_map_ref. Alternative to name.
    name String
    Resource name of the kind, group and version, defined in the config_map_ref.
    requeueAfterSeconds String
    How often to check for changes (in seconds). Default: 3min.
    template Property Map
    Generator template. Used to override the values of the spec-level template.
    values Map<String>
    Arbitrary string key-value pairs which are passed directly as parameters to the template.

    ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceLabelSelector, ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceLabelSelectorArgs

    MatchExpressions List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceLabelSelectorMatchExpression>
    A list of label selector requirements. The requirements are ANDed.
    MatchLabels Dictionary<string, string>
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    MatchExpressions []ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceLabelSelectorMatchExpression
    A list of label selector requirements. The requirements are ANDed.
    MatchLabels map[string]string
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    matchExpressions List<ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceLabelSelectorMatchExpression>
    A list of label selector requirements. The requirements are ANDed.
    matchLabels Map<String,String>
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    matchExpressions ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceLabelSelectorMatchExpression[]
    A list of label selector requirements. The requirements are ANDed.
    matchLabels {[key: string]: string}
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    match_expressions Sequence[ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceLabelSelectorMatchExpression]
    A list of label selector requirements. The requirements are ANDed.
    match_labels Mapping[str, str]
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    matchExpressions List<Property Map>
    A list of label selector requirements. The requirements are ANDed.
    matchLabels Map<String>
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.

    ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceLabelSelectorMatchExpression, ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceLabelSelectorMatchExpressionArgs

    Key string
    The label key that the selector applies to.
    Operator string
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    Values List<string>
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    Key string
    The label key that the selector applies to.
    Operator string
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    Values []string
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key String
    The label key that the selector applies to.
    operator String
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values List<String>
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key string
    The label key that the selector applies to.
    operator string
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values string[]
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key str
    The label key that the selector applies to.
    operator str
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values Sequence[str]
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key String
    The label key that the selector applies to.
    operator String
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values List<String>
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.

    ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplate, ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateArgs

    metadata Property Map
    Kubernetes object metadata for templated Application.
    spec Property Map
    The application specification.

    ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateMetadata, ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateMetadataArgs

    Annotations Dictionary<string, string>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers List<string>
    List of finalizers to apply to the resulting Application.
    Labels Dictionary<string, string>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    Annotations map[string]string
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers []string
    List of finalizers to apply to the resulting Application.
    Labels map[string]string
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    annotations Map<String,String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String,String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application
    annotations {[key: string]: string}
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers string[]
    List of finalizers to apply to the resulting Application.
    labels {[key: string]: string}
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name string
    Name of the resulting Application
    namespace string
    Namespace of the resulting Application
    annotations Mapping[str, str]
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers Sequence[str]
    List of finalizers to apply to the resulting Application.
    labels Mapping[str, str]
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name str
    Name of the resulting Application
    namespace str
    Namespace of the resulting Application
    annotations Map<String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application

    ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpec, ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecArgs

    Destination Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSource>
    Location of the application's manifests or chart.
    SyncPolicy Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    Destination ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences []ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecIgnoreDifference
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos []ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecInfo
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources []ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSource
    Location of the application's manifests or chart.
    SyncPolicy ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Integer
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSource>
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecIgnoreDifference[]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecInfo[]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project string
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSource[]
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignore_differences Sequence[ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecIgnoreDifference]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos Sequence[ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecInfo]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project str
    The project the application belongs to. Defaults to default.
    revision_history_limit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources Sequence[ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSource]
    Location of the application's manifests or chart.
    sync_policy ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination Property Map
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<Property Map>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<Property Map>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<Property Map>
    Location of the application's manifests or chart.
    syncPolicy Property Map
    Controls when and how a sync will be performed.

    ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecDestination, ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecDestinationArgs

    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name string
    Name of the target cluster. Can be used instead of server.
    namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name str
    Name of the target cluster. Can be used instead of server.
    namespace str
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server str
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.

    ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecIgnoreDifference, ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecIgnoreDifferenceArgs

    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions List<string>
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers List<string>
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers List<string>
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions []string
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers []string
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers []string
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    group string
    The Kubernetes resource Group to match for.
    jqPathExpressions string[]
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers string[]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind string
    The Kubernetes resource Kind to match for.
    managedFieldsManagers string[]
    List of external controller manager names whose changes to fields should be ignored.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    group str
    The Kubernetes resource Group to match for.
    jq_path_expressions Sequence[str]
    List of JQ path expression strings targeting the field(s) to ignore.
    json_pointers Sequence[str]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind str
    The Kubernetes resource Kind to match for.
    managed_fields_managers Sequence[str]
    List of external controller manager names whose changes to fields should be ignored.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.

    ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecInfo, ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecInfoArgs

    Name string
    Name of the information.
    Value string
    Value of the information.
    Name string
    Name of the information.
    Value string
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.
    name string
    Name of the information.
    value string
    Value of the information.
    name str
    Name of the information.
    value str
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.

    ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSource, ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceArgs

    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelm
    Helm specific options.
    Kustomize Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelm
    Helm specific options.
    Kustomize ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomize
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomize
    Kustomize specific options.
    path string
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart str
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomize
    Kustomize specific options.
    path str
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref str
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repo_url str
    URL to the repository (Git or Helm) that contains the application manifests.
    target_revision str
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory Property Map
    Path/directory specific options.
    helm Property Map
    Helm specific options.
    kustomize Property Map
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin Property Map
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.

    ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectory, ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryArgs

    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.
    exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse boolean
    Whether to scan a directory recursively for manifests.
    exclude str
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include str
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet Property Map
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.

    ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnet, ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetArgs

    extVars List<Property Map>
    List of Jsonnet External Variables.
    libs List<String>
    Additional library search dirs.
    tlas List<Property Map>
    List of Jsonnet Top-level Arguments

    ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetExtVar, ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetExtVarArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetTla, ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetTlaArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelm, ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmArgs

    FileParameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles List<string>
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    FileParameters []ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters []ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameter
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles []string
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter[]
    File parameters for the helm template.
    ignoreMissingValueFiles boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameter[]
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName string
    Helm release name. If omitted it will use the application name.
    skipCrds boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles string[]
    List of Helm value files to use when generating a template.
    values string
    Helm values to be passed to 'helm template', typically defined as a block.
    version string
    The Helm version to use for templating. Accepts either v2 or v3
    file_parameters Sequence[ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter]
    File parameters for the helm template.
    ignore_missing_value_files bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters Sequence[ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameter]
    Helm parameters which are passed to the helm template command upon manifest generation.
    pass_credentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    release_name str
    Helm release name. If omitted it will use the application name.
    skip_crds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    value_files Sequence[str]
    List of Helm value files to use when generating a template.
    values str
    Helm values to be passed to 'helm template', typically defined as a block.
    version str
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<Property Map>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<Property Map>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3

    ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter, ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameterArgs

    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.
    name string
    Name of the Helm parameter.
    path string
    Path to the file containing the values for the Helm parameter.
    name str
    Name of the Helm parameter.
    path str
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.

    ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameter, ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameterArgs

    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.
    forceString boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name string
    Name of the Helm parameter.
    value string
    Value of the Helm parameter.
    force_string bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name str
    Name of the Helm parameter.
    value str
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.

    ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomize, ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizeArgs

    CommonAnnotations Dictionary<string, string>
    List of additional annotations to add to rendered manifests.
    CommonLabels Dictionary<string, string>
    List of additional labels to add to rendered manifests.
    Images List<string>
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    CommonAnnotations map[string]string
    List of additional annotations to add to rendered manifests.
    CommonLabels map[string]string
    List of additional labels to add to rendered manifests.
    Images []string
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches []ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatch
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String,String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String,String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.
    commonAnnotations {[key: string]: string}
    List of additional annotations to add to rendered manifests.
    commonLabels {[key: string]: string}
    List of additional labels to add to rendered manifests.
    images string[]
    List of Kustomize image override specifications.
    namePrefix string
    Prefix appended to resources for Kustomize apps.
    nameSuffix string
    Suffix appended to resources for Kustomize apps.
    patches ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatch[]
    A list of Kustomize patches to apply.
    version string
    Version of Kustomize to use for rendering manifests.
    common_annotations Mapping[str, str]
    List of additional annotations to add to rendered manifests.
    common_labels Mapping[str, str]
    List of additional labels to add to rendered manifests.
    images Sequence[str]
    List of Kustomize image override specifications.
    name_prefix str
    Prefix appended to resources for Kustomize apps.
    name_suffix str
    Suffix appended to resources for Kustomize apps.
    patches Sequence[ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatch]
    A list of Kustomize patches to apply.
    version str
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<Property Map>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.

    ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatch, ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchArgs

    Target Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options Dictionary<string, bool>
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    Target ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options map[string]bool
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Map<String,Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options {[key: string]: boolean}
    Additional options.
    patch string
    Inline Kustomize patch to apply.
    path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Mapping[str, bool]
    Additional options.
    patch str
    Inline Kustomize patch to apply.
    path str
    Path to a file containing the patch to apply.
    target Property Map
    Target(s) to patch
    options Map<Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.

    ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTarget, ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTargetArgs

    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.
    annotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    group string
    The Kubernetes resource Group to match for.
    kind string
    The Kubernetes resource Kind to match for.
    labelSelector string
    Label selector to use when matching the Kubernetes resource.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    version string
    The Kubernetes resource Version to match for.
    annotation_selector str
    Annotation selector to use when matching the Kubernetes resource.
    group str
    The Kubernetes resource Group to match for.
    kind str
    The Kubernetes resource Kind to match for.
    label_selector str
    Label selector to use when matching the Kubernetes resource.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    version str
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.

    ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePlugin, ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePluginArgs

    Envs List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    Envs []ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnv
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnv[]
    Environment variables passed to the plugin.
    name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs Sequence[ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnv]
    Environment variables passed to the plugin.
    name str
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<Property Map>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.

    ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnv, ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnvArgs

    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.
    name string
    Name of the environment variable.
    value string
    Value of the environment variable.
    name str
    Name of the environment variable.
    value str
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.

    ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicy, ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyArgs

    Automated Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions List<string>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    Automated ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions []string
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions string[]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managed_namespace_metadata ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    sync_options Sequence[str]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated Property Map
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata Property Map
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry Property Map
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.

    ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomated, ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomatedArgs

    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty boolean
    Allows apps have zero live resources.
    prune boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allow_empty bool
    Allows apps have zero live resources.
    prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    self_heal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.

    ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadata, ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadataArgs

    Annotations Dictionary<string, string>
    Annotations to apply to the namespace.
    Labels Dictionary<string, string>
    Labels to apply to the namespace.
    Annotations map[string]string
    Annotations to apply to the namespace.
    Labels map[string]string
    Labels to apply to the namespace.
    annotations Map<String,String>
    Annotations to apply to the namespace.
    labels Map<String,String>
    Labels to apply to the namespace.
    annotations {[key: string]: string}
    Annotations to apply to the namespace.
    labels {[key: string]: string}
    Labels to apply to the namespace.
    annotations Mapping[str, str]
    Annotations to apply to the namespace.
    labels Mapping[str, str]
    Labels to apply to the namespace.
    annotations Map<String>
    Annotations to apply to the namespace.
    labels Map<String>
    Labels to apply to the namespace.

    ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetry, ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryArgs

    Backoff Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    Backoff ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit str
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff Property Map
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.

    ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoff, ApplicationSetSpecGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoffArgs

    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor string
    Factor to multiply the base duration after each failed retry.
    maxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration str
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor str
    Factor to multiply the base duration after each failed retry.
    max_duration str
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.

    ApplicationSetSpecGeneratorMatrixGeneratorClusterSelector, ApplicationSetSpecGeneratorMatrixGeneratorClusterSelectorArgs

    MatchExpressions List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterSelectorMatchExpression>
    A list of label selector requirements. The requirements are ANDed.
    MatchLabels Dictionary<string, string>
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    MatchExpressions []ApplicationSetSpecGeneratorMatrixGeneratorClusterSelectorMatchExpression
    A list of label selector requirements. The requirements are ANDed.
    MatchLabels map[string]string
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    matchExpressions List<ApplicationSetSpecGeneratorMatrixGeneratorClusterSelectorMatchExpression>
    A list of label selector requirements. The requirements are ANDed.
    matchLabels Map<String,String>
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    matchExpressions ApplicationSetSpecGeneratorMatrixGeneratorClusterSelectorMatchExpression[]
    A list of label selector requirements. The requirements are ANDed.
    matchLabels {[key: string]: string}
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    match_expressions Sequence[ApplicationSetSpecGeneratorMatrixGeneratorClusterSelectorMatchExpression]
    A list of label selector requirements. The requirements are ANDed.
    match_labels Mapping[str, str]
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    matchExpressions List<Property Map>
    A list of label selector requirements. The requirements are ANDed.
    matchLabels Map<String>
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.

    ApplicationSetSpecGeneratorMatrixGeneratorClusterSelectorMatchExpression, ApplicationSetSpecGeneratorMatrixGeneratorClusterSelectorMatchExpressionArgs

    Key string
    The label key that the selector applies to.
    Operator string
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    Values List<string>
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    Key string
    The label key that the selector applies to.
    Operator string
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    Values []string
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key String
    The label key that the selector applies to.
    operator String
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values List<String>
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key string
    The label key that the selector applies to.
    operator string
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values string[]
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key str
    The label key that the selector applies to.
    operator str
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values Sequence[str]
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key String
    The label key that the selector applies to.
    operator String
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values List<String>
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.

    ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplate, ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateArgs

    metadata Property Map
    Kubernetes object metadata for templated Application.
    spec Property Map
    The application specification.

    ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateMetadata, ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateMetadataArgs

    Annotations Dictionary<string, string>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers List<string>
    List of finalizers to apply to the resulting Application.
    Labels Dictionary<string, string>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    Annotations map[string]string
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers []string
    List of finalizers to apply to the resulting Application.
    Labels map[string]string
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    annotations Map<String,String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String,String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application
    annotations {[key: string]: string}
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers string[]
    List of finalizers to apply to the resulting Application.
    labels {[key: string]: string}
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name string
    Name of the resulting Application
    namespace string
    Namespace of the resulting Application
    annotations Mapping[str, str]
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers Sequence[str]
    List of finalizers to apply to the resulting Application.
    labels Mapping[str, str]
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name str
    Name of the resulting Application
    namespace str
    Namespace of the resulting Application
    annotations Map<String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application

    ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpec, ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecArgs

    Destination Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSource>
    Location of the application's manifests or chart.
    SyncPolicy Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    Destination ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences []ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecIgnoreDifference
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos []ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecInfo
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources []ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSource
    Location of the application's manifests or chart.
    SyncPolicy ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Integer
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSource>
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecIgnoreDifference[]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecInfo[]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project string
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSource[]
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignore_differences Sequence[ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecIgnoreDifference]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos Sequence[ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecInfo]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project str
    The project the application belongs to. Defaults to default.
    revision_history_limit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources Sequence[ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSource]
    Location of the application's manifests or chart.
    sync_policy ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination Property Map
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<Property Map>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<Property Map>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<Property Map>
    Location of the application's manifests or chart.
    syncPolicy Property Map
    Controls when and how a sync will be performed.

    ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecDestination, ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecDestinationArgs

    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name string
    Name of the target cluster. Can be used instead of server.
    namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name str
    Name of the target cluster. Can be used instead of server.
    namespace str
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server str
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.

    ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecIgnoreDifference, ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecIgnoreDifferenceArgs

    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions List<string>
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers List<string>
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers List<string>
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions []string
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers []string
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers []string
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    group string
    The Kubernetes resource Group to match for.
    jqPathExpressions string[]
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers string[]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind string
    The Kubernetes resource Kind to match for.
    managedFieldsManagers string[]
    List of external controller manager names whose changes to fields should be ignored.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    group str
    The Kubernetes resource Group to match for.
    jq_path_expressions Sequence[str]
    List of JQ path expression strings targeting the field(s) to ignore.
    json_pointers Sequence[str]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind str
    The Kubernetes resource Kind to match for.
    managed_fields_managers Sequence[str]
    List of external controller manager names whose changes to fields should be ignored.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.

    ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecInfo, ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecInfoArgs

    Name string
    Name of the information.
    Value string
    Value of the information.
    Name string
    Name of the information.
    Value string
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.
    name string
    Name of the information.
    value string
    Value of the information.
    name str
    Name of the information.
    value str
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.

    ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSource, ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceArgs

    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceHelm
    Helm specific options.
    Kustomize Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceHelm
    Helm specific options.
    Kustomize ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomize
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomize
    Kustomize specific options.
    path string
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart str
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomize
    Kustomize specific options.
    path str
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref str
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repo_url str
    URL to the repository (Git or Helm) that contains the application manifests.
    target_revision str
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory Property Map
    Path/directory specific options.
    helm Property Map
    Helm specific options.
    kustomize Property Map
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin Property Map
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.

    ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectory, ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryArgs

    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.
    exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse boolean
    Whether to scan a directory recursively for manifests.
    exclude str
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include str
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet Property Map
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.

    ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnet, ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnetArgs

    extVars List<Property Map>
    List of Jsonnet External Variables.
    libs List<String>
    Additional library search dirs.
    tlas List<Property Map>
    List of Jsonnet Top-level Arguments

    ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnetExtVar, ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnetExtVarArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnetTla, ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnetTlaArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceHelm, ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmArgs

    FileParameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles List<string>
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    FileParameters []ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmFileParameter
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters []ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmParameter
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles []string
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmFileParameter[]
    File parameters for the helm template.
    ignoreMissingValueFiles boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmParameter[]
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName string
    Helm release name. If omitted it will use the application name.
    skipCrds boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles string[]
    List of Helm value files to use when generating a template.
    values string
    Helm values to be passed to 'helm template', typically defined as a block.
    version string
    The Helm version to use for templating. Accepts either v2 or v3
    file_parameters Sequence[ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmFileParameter]
    File parameters for the helm template.
    ignore_missing_value_files bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters Sequence[ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmParameter]
    Helm parameters which are passed to the helm template command upon manifest generation.
    pass_credentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    release_name str
    Helm release name. If omitted it will use the application name.
    skip_crds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    value_files Sequence[str]
    List of Helm value files to use when generating a template.
    values str
    Helm values to be passed to 'helm template', typically defined as a block.
    version str
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<Property Map>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<Property Map>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3

    ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmFileParameter, ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmFileParameterArgs

    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.
    name string
    Name of the Helm parameter.
    path string
    Path to the file containing the values for the Helm parameter.
    name str
    Name of the Helm parameter.
    path str
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.

    ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmParameter, ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmParameterArgs

    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.
    forceString boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name string
    Name of the Helm parameter.
    value string
    Value of the Helm parameter.
    force_string bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name str
    Name of the Helm parameter.
    value str
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.

    ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomize, ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizeArgs

    CommonAnnotations Dictionary<string, string>
    List of additional annotations to add to rendered manifests.
    CommonLabels Dictionary<string, string>
    List of additional labels to add to rendered manifests.
    Images List<string>
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    CommonAnnotations map[string]string
    List of additional annotations to add to rendered manifests.
    CommonLabels map[string]string
    List of additional labels to add to rendered manifests.
    Images []string
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches []ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatch
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String,String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String,String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.
    commonAnnotations {[key: string]: string}
    List of additional annotations to add to rendered manifests.
    commonLabels {[key: string]: string}
    List of additional labels to add to rendered manifests.
    images string[]
    List of Kustomize image override specifications.
    namePrefix string
    Prefix appended to resources for Kustomize apps.
    nameSuffix string
    Suffix appended to resources for Kustomize apps.
    patches ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatch[]
    A list of Kustomize patches to apply.
    version string
    Version of Kustomize to use for rendering manifests.
    common_annotations Mapping[str, str]
    List of additional annotations to add to rendered manifests.
    common_labels Mapping[str, str]
    List of additional labels to add to rendered manifests.
    images Sequence[str]
    List of Kustomize image override specifications.
    name_prefix str
    Prefix appended to resources for Kustomize apps.
    name_suffix str
    Suffix appended to resources for Kustomize apps.
    patches Sequence[ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatch]
    A list of Kustomize patches to apply.
    version str
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<Property Map>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.

    ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatch, ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatchArgs

    Target Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options Dictionary<string, bool>
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    Target ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options map[string]bool
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Map<String,Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options {[key: string]: boolean}
    Additional options.
    patch string
    Inline Kustomize patch to apply.
    path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Mapping[str, bool]
    Additional options.
    patch str
    Inline Kustomize patch to apply.
    path str
    Path to a file containing the patch to apply.
    target Property Map
    Target(s) to patch
    options Map<Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.

    ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatchTarget, ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatchTargetArgs

    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.
    annotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    group string
    The Kubernetes resource Group to match for.
    kind string
    The Kubernetes resource Kind to match for.
    labelSelector string
    Label selector to use when matching the Kubernetes resource.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    version string
    The Kubernetes resource Version to match for.
    annotation_selector str
    Annotation selector to use when matching the Kubernetes resource.
    group str
    The Kubernetes resource Group to match for.
    kind str
    The Kubernetes resource Kind to match for.
    label_selector str
    Label selector to use when matching the Kubernetes resource.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    version str
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.

    ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourcePlugin, ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourcePluginArgs

    Envs List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    Envs []ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourcePluginEnv
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourcePluginEnv[]
    Environment variables passed to the plugin.
    name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs Sequence[ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourcePluginEnv]
    Environment variables passed to the plugin.
    name str
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<Property Map>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.

    ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourcePluginEnv, ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSourcePluginEnvArgs

    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.
    name string
    Name of the environment variable.
    value string
    Value of the environment variable.
    name str
    Name of the environment variable.
    value str
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.

    ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicy, ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyArgs

    Automated Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions List<string>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    Automated ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions []string
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions string[]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managed_namespace_metadata ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    sync_options Sequence[str]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated Property Map
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata Property Map
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry Property Map
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.

    ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyAutomated, ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyAutomatedArgs

    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty boolean
    Allows apps have zero live resources.
    prune boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allow_empty bool
    Allows apps have zero live resources.
    prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    self_heal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.

    ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadata, ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadataArgs

    Annotations Dictionary<string, string>
    Annotations to apply to the namespace.
    Labels Dictionary<string, string>
    Labels to apply to the namespace.
    Annotations map[string]string
    Annotations to apply to the namespace.
    Labels map[string]string
    Labels to apply to the namespace.
    annotations Map<String,String>
    Annotations to apply to the namespace.
    labels Map<String,String>
    Labels to apply to the namespace.
    annotations {[key: string]: string}
    Annotations to apply to the namespace.
    labels {[key: string]: string}
    Labels to apply to the namespace.
    annotations Mapping[str, str]
    Annotations to apply to the namespace.
    labels Mapping[str, str]
    Labels to apply to the namespace.
    annotations Map<String>
    Annotations to apply to the namespace.
    labels Map<String>
    Labels to apply to the namespace.

    ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetry, ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetryArgs

    Backoff Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    Backoff ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit str
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff Property Map
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.

    ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetryBackoff, ApplicationSetSpecGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetryBackoffArgs

    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor string
    Factor to multiply the base duration after each failed retry.
    maxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration str
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor str
    Factor to multiply the base duration after each failed retry.
    max_duration str
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.

    ApplicationSetSpecGeneratorMatrixGeneratorGit, ApplicationSetSpecGeneratorMatrixGeneratorGitArgs

    RepoUrl string
    URL to the repository to use.
    Directories List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitDirectory>
    List of directories in the source repository to use when template the Application..
    Files List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitFile>
    List of files in the source repository to use when template the Application.
    PathParamPrefix string
    Prefix for all path-related parameter names.
    Revision string
    Revision of the source repository to use.
    Template Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplate
    Generator template. Used to override the values of the spec-level template.
    Values Dictionary<string, string>
    Arbitrary string key-value pairs to pass to the template via the values field of the git generator.
    RepoUrl string
    URL to the repository to use.
    Directories []ApplicationSetSpecGeneratorMatrixGeneratorGitDirectory
    List of directories in the source repository to use when template the Application..
    Files []ApplicationSetSpecGeneratorMatrixGeneratorGitFile
    List of files in the source repository to use when template the Application.
    PathParamPrefix string
    Prefix for all path-related parameter names.
    Revision string
    Revision of the source repository to use.
    Template ApplicationSetSpecGeneratorMatrixGeneratorGitTemplate
    Generator template. Used to override the values of the spec-level template.
    Values map[string]string
    Arbitrary string key-value pairs to pass to the template via the values field of the git generator.
    repoUrl String
    URL to the repository to use.
    directories List<ApplicationSetSpecGeneratorMatrixGeneratorGitDirectory>
    List of directories in the source repository to use when template the Application..
    files List<ApplicationSetSpecGeneratorMatrixGeneratorGitFile>
    List of files in the source repository to use when template the Application.
    pathParamPrefix String
    Prefix for all path-related parameter names.
    revision String
    Revision of the source repository to use.
    template ApplicationSetSpecGeneratorMatrixGeneratorGitTemplate
    Generator template. Used to override the values of the spec-level template.
    values Map<String,String>
    Arbitrary string key-value pairs to pass to the template via the values field of the git generator.
    repoUrl string
    URL to the repository to use.
    directories ApplicationSetSpecGeneratorMatrixGeneratorGitDirectory[]
    List of directories in the source repository to use when template the Application..
    files ApplicationSetSpecGeneratorMatrixGeneratorGitFile[]
    List of files in the source repository to use when template the Application.
    pathParamPrefix string
    Prefix for all path-related parameter names.
    revision string
    Revision of the source repository to use.
    template ApplicationSetSpecGeneratorMatrixGeneratorGitTemplate
    Generator template. Used to override the values of the spec-level template.
    values {[key: string]: string}
    Arbitrary string key-value pairs to pass to the template via the values field of the git generator.
    repo_url str
    URL to the repository to use.
    directories Sequence[ApplicationSetSpecGeneratorMatrixGeneratorGitDirectory]
    List of directories in the source repository to use when template the Application..
    files Sequence[ApplicationSetSpecGeneratorMatrixGeneratorGitFile]
    List of files in the source repository to use when template the Application.
    path_param_prefix str
    Prefix for all path-related parameter names.
    revision str
    Revision of the source repository to use.
    template ApplicationSetSpecGeneratorMatrixGeneratorGitTemplate
    Generator template. Used to override the values of the spec-level template.
    values Mapping[str, str]
    Arbitrary string key-value pairs to pass to the template via the values field of the git generator.
    repoUrl String
    URL to the repository to use.
    directories List<Property Map>
    List of directories in the source repository to use when template the Application..
    files List<Property Map>
    List of files in the source repository to use when template the Application.
    pathParamPrefix String
    Prefix for all path-related parameter names.
    revision String
    Revision of the source repository to use.
    template Property Map
    Generator template. Used to override the values of the spec-level template.
    values Map<String>
    Arbitrary string key-value pairs to pass to the template via the values field of the git generator.

    ApplicationSetSpecGeneratorMatrixGeneratorGitDirectory, ApplicationSetSpecGeneratorMatrixGeneratorGitDirectoryArgs

    Path string
    Path in the repository.
    Exclude bool
    Flag indicating whether or not the directory should be excluded when templating.
    Path string
    Path in the repository.
    Exclude bool
    Flag indicating whether or not the directory should be excluded when templating.
    path String
    Path in the repository.
    exclude Boolean
    Flag indicating whether or not the directory should be excluded when templating.
    path string
    Path in the repository.
    exclude boolean
    Flag indicating whether or not the directory should be excluded when templating.
    path str
    Path in the repository.
    exclude bool
    Flag indicating whether or not the directory should be excluded when templating.
    path String
    Path in the repository.
    exclude Boolean
    Flag indicating whether or not the directory should be excluded when templating.

    ApplicationSetSpecGeneratorMatrixGeneratorGitFile, ApplicationSetSpecGeneratorMatrixGeneratorGitFileArgs

    Path string
    Path to the file in the repository.
    Path string
    Path to the file in the repository.
    path String
    Path to the file in the repository.
    path string
    Path to the file in the repository.
    path str
    Path to the file in the repository.
    path String
    Path to the file in the repository.

    ApplicationSetSpecGeneratorMatrixGeneratorGitTemplate, ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateArgs

    metadata Property Map
    Kubernetes object metadata for templated Application.
    spec Property Map
    The application specification.

    ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateMetadata, ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateMetadataArgs

    Annotations Dictionary<string, string>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers List<string>
    List of finalizers to apply to the resulting Application.
    Labels Dictionary<string, string>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    Annotations map[string]string
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers []string
    List of finalizers to apply to the resulting Application.
    Labels map[string]string
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    annotations Map<String,String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String,String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application
    annotations {[key: string]: string}
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers string[]
    List of finalizers to apply to the resulting Application.
    labels {[key: string]: string}
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name string
    Name of the resulting Application
    namespace string
    Namespace of the resulting Application
    annotations Mapping[str, str]
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers Sequence[str]
    List of finalizers to apply to the resulting Application.
    labels Mapping[str, str]
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name str
    Name of the resulting Application
    namespace str
    Namespace of the resulting Application
    annotations Map<String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application

    ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpec, ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecArgs

    Destination Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSource>
    Location of the application's manifests or chart.
    SyncPolicy Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    Destination ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences []ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecIgnoreDifference
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos []ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecInfo
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources []ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSource
    Location of the application's manifests or chart.
    SyncPolicy ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Integer
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSource>
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecIgnoreDifference[]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecInfo[]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project string
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSource[]
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignore_differences Sequence[ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecIgnoreDifference]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos Sequence[ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecInfo]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project str
    The project the application belongs to. Defaults to default.
    revision_history_limit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources Sequence[ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSource]
    Location of the application's manifests or chart.
    sync_policy ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination Property Map
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<Property Map>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<Property Map>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<Property Map>
    Location of the application's manifests or chart.
    syncPolicy Property Map
    Controls when and how a sync will be performed.

    ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecDestination, ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecDestinationArgs

    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name string
    Name of the target cluster. Can be used instead of server.
    namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name str
    Name of the target cluster. Can be used instead of server.
    namespace str
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server str
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.

    ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecIgnoreDifference, ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecIgnoreDifferenceArgs

    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions List<string>
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers List<string>
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers List<string>
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions []string
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers []string
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers []string
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    group string
    The Kubernetes resource Group to match for.
    jqPathExpressions string[]
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers string[]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind string
    The Kubernetes resource Kind to match for.
    managedFieldsManagers string[]
    List of external controller manager names whose changes to fields should be ignored.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    group str
    The Kubernetes resource Group to match for.
    jq_path_expressions Sequence[str]
    List of JQ path expression strings targeting the field(s) to ignore.
    json_pointers Sequence[str]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind str
    The Kubernetes resource Kind to match for.
    managed_fields_managers Sequence[str]
    List of external controller manager names whose changes to fields should be ignored.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.

    ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecInfo, ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecInfoArgs

    Name string
    Name of the information.
    Value string
    Value of the information.
    Name string
    Name of the information.
    Value string
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.
    name string
    Name of the information.
    value string
    Value of the information.
    name str
    Name of the information.
    value str
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.

    ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSource, ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceArgs

    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceHelm
    Helm specific options.
    Kustomize Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceHelm
    Helm specific options.
    Kustomize ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceKustomize
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceKustomize
    Kustomize specific options.
    path string
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart str
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceKustomize
    Kustomize specific options.
    path str
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref str
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repo_url str
    URL to the repository (Git or Helm) that contains the application manifests.
    target_revision str
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory Property Map
    Path/directory specific options.
    helm Property Map
    Helm specific options.
    kustomize Property Map
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin Property Map
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.

    ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceDirectory, ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryArgs

    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.
    exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse boolean
    Whether to scan a directory recursively for manifests.
    exclude str
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include str
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet Property Map
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.

    ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnet, ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnetArgs

    extVars List<Property Map>
    List of Jsonnet External Variables.
    libs List<String>
    Additional library search dirs.
    tlas List<Property Map>
    List of Jsonnet Top-level Arguments

    ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnetExtVar, ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnetExtVarArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnetTla, ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnetTlaArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceHelm, ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceHelmArgs

    FileParameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles List<string>
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    FileParameters []ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceHelmFileParameter
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters []ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceHelmParameter
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles []string
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceHelmFileParameter[]
    File parameters for the helm template.
    ignoreMissingValueFiles boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceHelmParameter[]
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName string
    Helm release name. If omitted it will use the application name.
    skipCrds boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles string[]
    List of Helm value files to use when generating a template.
    values string
    Helm values to be passed to 'helm template', typically defined as a block.
    version string
    The Helm version to use for templating. Accepts either v2 or v3
    file_parameters Sequence[ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceHelmFileParameter]
    File parameters for the helm template.
    ignore_missing_value_files bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters Sequence[ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceHelmParameter]
    Helm parameters which are passed to the helm template command upon manifest generation.
    pass_credentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    release_name str
    Helm release name. If omitted it will use the application name.
    skip_crds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    value_files Sequence[str]
    List of Helm value files to use when generating a template.
    values str
    Helm values to be passed to 'helm template', typically defined as a block.
    version str
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<Property Map>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<Property Map>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3

    ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceHelmFileParameter, ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceHelmFileParameterArgs

    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.
    name string
    Name of the Helm parameter.
    path string
    Path to the file containing the values for the Helm parameter.
    name str
    Name of the Helm parameter.
    path str
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.

    ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceHelmParameter, ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceHelmParameterArgs

    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.
    forceString boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name string
    Name of the Helm parameter.
    value string
    Value of the Helm parameter.
    force_string bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name str
    Name of the Helm parameter.
    value str
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.

    ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceKustomize, ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizeArgs

    CommonAnnotations Dictionary<string, string>
    List of additional annotations to add to rendered manifests.
    CommonLabels Dictionary<string, string>
    List of additional labels to add to rendered manifests.
    Images List<string>
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    CommonAnnotations map[string]string
    List of additional annotations to add to rendered manifests.
    CommonLabels map[string]string
    List of additional labels to add to rendered manifests.
    Images []string
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches []ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatch
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String,String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String,String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.
    commonAnnotations {[key: string]: string}
    List of additional annotations to add to rendered manifests.
    commonLabels {[key: string]: string}
    List of additional labels to add to rendered manifests.
    images string[]
    List of Kustomize image override specifications.
    namePrefix string
    Prefix appended to resources for Kustomize apps.
    nameSuffix string
    Suffix appended to resources for Kustomize apps.
    patches ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatch[]
    A list of Kustomize patches to apply.
    version string
    Version of Kustomize to use for rendering manifests.
    common_annotations Mapping[str, str]
    List of additional annotations to add to rendered manifests.
    common_labels Mapping[str, str]
    List of additional labels to add to rendered manifests.
    images Sequence[str]
    List of Kustomize image override specifications.
    name_prefix str
    Prefix appended to resources for Kustomize apps.
    name_suffix str
    Suffix appended to resources for Kustomize apps.
    patches Sequence[ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatch]
    A list of Kustomize patches to apply.
    version str
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<Property Map>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.

    ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatch, ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatchArgs

    Target Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options Dictionary<string, bool>
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    Target ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options map[string]bool
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Map<String,Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options {[key: string]: boolean}
    Additional options.
    patch string
    Inline Kustomize patch to apply.
    path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Mapping[str, bool]
    Additional options.
    patch str
    Inline Kustomize patch to apply.
    path str
    Path to a file containing the patch to apply.
    target Property Map
    Target(s) to patch
    options Map<Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.

    ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatchTarget, ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatchTargetArgs

    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.
    annotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    group string
    The Kubernetes resource Group to match for.
    kind string
    The Kubernetes resource Kind to match for.
    labelSelector string
    Label selector to use when matching the Kubernetes resource.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    version string
    The Kubernetes resource Version to match for.
    annotation_selector str
    Annotation selector to use when matching the Kubernetes resource.
    group str
    The Kubernetes resource Group to match for.
    kind str
    The Kubernetes resource Kind to match for.
    label_selector str
    Label selector to use when matching the Kubernetes resource.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    version str
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.

    ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourcePlugin, ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourcePluginArgs

    Envs List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    Envs []ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourcePluginEnv
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourcePluginEnv[]
    Environment variables passed to the plugin.
    name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs Sequence[ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourcePluginEnv]
    Environment variables passed to the plugin.
    name str
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<Property Map>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.

    ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourcePluginEnv, ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSourcePluginEnvArgs

    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.
    name string
    Name of the environment variable.
    value string
    Value of the environment variable.
    name str
    Name of the environment variable.
    value str
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.

    ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicy, ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyArgs

    Automated Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions List<string>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    Automated ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions []string
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions string[]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managed_namespace_metadata ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    sync_options Sequence[str]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated Property Map
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata Property Map
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry Property Map
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.

    ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyAutomated, ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyAutomatedArgs

    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty boolean
    Allows apps have zero live resources.
    prune boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allow_empty bool
    Allows apps have zero live resources.
    prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    self_heal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.

    ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadata, ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadataArgs

    Annotations Dictionary<string, string>
    Annotations to apply to the namespace.
    Labels Dictionary<string, string>
    Labels to apply to the namespace.
    Annotations map[string]string
    Annotations to apply to the namespace.
    Labels map[string]string
    Labels to apply to the namespace.
    annotations Map<String,String>
    Annotations to apply to the namespace.
    labels Map<String,String>
    Labels to apply to the namespace.
    annotations {[key: string]: string}
    Annotations to apply to the namespace.
    labels {[key: string]: string}
    Labels to apply to the namespace.
    annotations Mapping[str, str]
    Annotations to apply to the namespace.
    labels Mapping[str, str]
    Labels to apply to the namespace.
    annotations Map<String>
    Annotations to apply to the namespace.
    labels Map<String>
    Labels to apply to the namespace.

    ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetry, ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetryArgs

    Backoff Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    Backoff ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit str
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff Property Map
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.

    ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetryBackoff, ApplicationSetSpecGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetryBackoffArgs

    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor string
    Factor to multiply the base duration after each failed retry.
    maxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration str
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor str
    Factor to multiply the base duration after each failed retry.
    max_duration str
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.

    ApplicationSetSpecGeneratorMatrixGeneratorList, ApplicationSetSpecGeneratorMatrixGeneratorListArgs

    Elements List<ImmutableDictionary<string, string>>
    List of key/value pairs to pass as parameters into the template
    Template Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorListTemplate
    Generator template. Used to override the values of the spec-level template.
    Elements []map[string]string
    List of key/value pairs to pass as parameters into the template
    Template ApplicationSetSpecGeneratorMatrixGeneratorListTemplate
    Generator template. Used to override the values of the spec-level template.
    elements List<Map<String,String>>
    List of key/value pairs to pass as parameters into the template
    template ApplicationSetSpecGeneratorMatrixGeneratorListTemplate
    Generator template. Used to override the values of the spec-level template.
    elements {[key: string]: string}[]
    List of key/value pairs to pass as parameters into the template
    template ApplicationSetSpecGeneratorMatrixGeneratorListTemplate
    Generator template. Used to override the values of the spec-level template.
    elements Sequence[Mapping[str, str]]
    List of key/value pairs to pass as parameters into the template
    template ApplicationSetSpecGeneratorMatrixGeneratorListTemplate
    Generator template. Used to override the values of the spec-level template.
    elements List<Map<String>>
    List of key/value pairs to pass as parameters into the template
    template Property Map
    Generator template. Used to override the values of the spec-level template.

    ApplicationSetSpecGeneratorMatrixGeneratorListTemplate, ApplicationSetSpecGeneratorMatrixGeneratorListTemplateArgs

    metadata Property Map
    Kubernetes object metadata for templated Application.
    spec Property Map
    The application specification.

    ApplicationSetSpecGeneratorMatrixGeneratorListTemplateMetadata, ApplicationSetSpecGeneratorMatrixGeneratorListTemplateMetadataArgs

    Annotations Dictionary<string, string>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers List<string>
    List of finalizers to apply to the resulting Application.
    Labels Dictionary<string, string>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    Annotations map[string]string
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers []string
    List of finalizers to apply to the resulting Application.
    Labels map[string]string
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    annotations Map<String,String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String,String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application
    annotations {[key: string]: string}
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers string[]
    List of finalizers to apply to the resulting Application.
    labels {[key: string]: string}
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name string
    Name of the resulting Application
    namespace string
    Namespace of the resulting Application
    annotations Mapping[str, str]
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers Sequence[str]
    List of finalizers to apply to the resulting Application.
    labels Mapping[str, str]
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name str
    Name of the resulting Application
    namespace str
    Namespace of the resulting Application
    annotations Map<String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application

    ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpec, ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecArgs

    Destination Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSource>
    Location of the application's manifests or chart.
    SyncPolicy Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    Destination ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences []ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecIgnoreDifference
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos []ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecInfo
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources []ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSource
    Location of the application's manifests or chart.
    SyncPolicy ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Integer
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSource>
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecIgnoreDifference[]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecInfo[]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project string
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSource[]
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignore_differences Sequence[ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecIgnoreDifference]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos Sequence[ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecInfo]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project str
    The project the application belongs to. Defaults to default.
    revision_history_limit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources Sequence[ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSource]
    Location of the application's manifests or chart.
    sync_policy ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination Property Map
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<Property Map>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<Property Map>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<Property Map>
    Location of the application's manifests or chart.
    syncPolicy Property Map
    Controls when and how a sync will be performed.

    ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecDestination, ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecDestinationArgs

    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name string
    Name of the target cluster. Can be used instead of server.
    namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name str
    Name of the target cluster. Can be used instead of server.
    namespace str
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server str
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.

    ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecIgnoreDifference, ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecIgnoreDifferenceArgs

    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions List<string>
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers List<string>
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers List<string>
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions []string
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers []string
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers []string
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    group string
    The Kubernetes resource Group to match for.
    jqPathExpressions string[]
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers string[]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind string
    The Kubernetes resource Kind to match for.
    managedFieldsManagers string[]
    List of external controller manager names whose changes to fields should be ignored.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    group str
    The Kubernetes resource Group to match for.
    jq_path_expressions Sequence[str]
    List of JQ path expression strings targeting the field(s) to ignore.
    json_pointers Sequence[str]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind str
    The Kubernetes resource Kind to match for.
    managed_fields_managers Sequence[str]
    List of external controller manager names whose changes to fields should be ignored.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.

    ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecInfo, ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecInfoArgs

    Name string
    Name of the information.
    Value string
    Value of the information.
    Name string
    Name of the information.
    Value string
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.
    name string
    Name of the information.
    value string
    Value of the information.
    name str
    Name of the information.
    value str
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.

    ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSource, ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceArgs

    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceHelm
    Helm specific options.
    Kustomize Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceHelm
    Helm specific options.
    Kustomize ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceKustomize
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceKustomize
    Kustomize specific options.
    path string
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart str
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceKustomize
    Kustomize specific options.
    path str
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref str
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repo_url str
    URL to the repository (Git or Helm) that contains the application manifests.
    target_revision str
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory Property Map
    Path/directory specific options.
    helm Property Map
    Helm specific options.
    kustomize Property Map
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin Property Map
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.

    ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceDirectory, ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryArgs

    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.
    exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse boolean
    Whether to scan a directory recursively for manifests.
    exclude str
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include str
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet Property Map
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.

    ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnet, ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnetArgs

    extVars List<Property Map>
    List of Jsonnet External Variables.
    libs List<String>
    Additional library search dirs.
    tlas List<Property Map>
    List of Jsonnet Top-level Arguments

    ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnetExtVar, ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnetExtVarArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnetTla, ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnetTlaArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceHelm, ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceHelmArgs

    FileParameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles List<string>
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    FileParameters []ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceHelmFileParameter
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters []ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceHelmParameter
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles []string
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceHelmFileParameter[]
    File parameters for the helm template.
    ignoreMissingValueFiles boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceHelmParameter[]
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName string
    Helm release name. If omitted it will use the application name.
    skipCrds boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles string[]
    List of Helm value files to use when generating a template.
    values string
    Helm values to be passed to 'helm template', typically defined as a block.
    version string
    The Helm version to use for templating. Accepts either v2 or v3
    file_parameters Sequence[ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceHelmFileParameter]
    File parameters for the helm template.
    ignore_missing_value_files bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters Sequence[ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceHelmParameter]
    Helm parameters which are passed to the helm template command upon manifest generation.
    pass_credentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    release_name str
    Helm release name. If omitted it will use the application name.
    skip_crds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    value_files Sequence[str]
    List of Helm value files to use when generating a template.
    values str
    Helm values to be passed to 'helm template', typically defined as a block.
    version str
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<Property Map>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<Property Map>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3

    ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceHelmFileParameter, ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceHelmFileParameterArgs

    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.
    name string
    Name of the Helm parameter.
    path string
    Path to the file containing the values for the Helm parameter.
    name str
    Name of the Helm parameter.
    path str
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.

    ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceHelmParameter, ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceHelmParameterArgs

    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.
    forceString boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name string
    Name of the Helm parameter.
    value string
    Value of the Helm parameter.
    force_string bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name str
    Name of the Helm parameter.
    value str
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.

    ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceKustomize, ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceKustomizeArgs

    CommonAnnotations Dictionary<string, string>
    List of additional annotations to add to rendered manifests.
    CommonLabels Dictionary<string, string>
    List of additional labels to add to rendered manifests.
    Images List<string>
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    CommonAnnotations map[string]string
    List of additional annotations to add to rendered manifests.
    CommonLabels map[string]string
    List of additional labels to add to rendered manifests.
    Images []string
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches []ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatch
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String,String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String,String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.
    commonAnnotations {[key: string]: string}
    List of additional annotations to add to rendered manifests.
    commonLabels {[key: string]: string}
    List of additional labels to add to rendered manifests.
    images string[]
    List of Kustomize image override specifications.
    namePrefix string
    Prefix appended to resources for Kustomize apps.
    nameSuffix string
    Suffix appended to resources for Kustomize apps.
    patches ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatch[]
    A list of Kustomize patches to apply.
    version string
    Version of Kustomize to use for rendering manifests.
    common_annotations Mapping[str, str]
    List of additional annotations to add to rendered manifests.
    common_labels Mapping[str, str]
    List of additional labels to add to rendered manifests.
    images Sequence[str]
    List of Kustomize image override specifications.
    name_prefix str
    Prefix appended to resources for Kustomize apps.
    name_suffix str
    Suffix appended to resources for Kustomize apps.
    patches Sequence[ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatch]
    A list of Kustomize patches to apply.
    version str
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<Property Map>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.

    ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatch, ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatchArgs

    Target Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options Dictionary<string, bool>
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    Target ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options map[string]bool
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Map<String,Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options {[key: string]: boolean}
    Additional options.
    patch string
    Inline Kustomize patch to apply.
    path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Mapping[str, bool]
    Additional options.
    patch str
    Inline Kustomize patch to apply.
    path str
    Path to a file containing the patch to apply.
    target Property Map
    Target(s) to patch
    options Map<Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.

    ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatchTarget, ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatchTargetArgs

    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.
    annotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    group string
    The Kubernetes resource Group to match for.
    kind string
    The Kubernetes resource Kind to match for.
    labelSelector string
    Label selector to use when matching the Kubernetes resource.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    version string
    The Kubernetes resource Version to match for.
    annotation_selector str
    Annotation selector to use when matching the Kubernetes resource.
    group str
    The Kubernetes resource Group to match for.
    kind str
    The Kubernetes resource Kind to match for.
    label_selector str
    Label selector to use when matching the Kubernetes resource.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    version str
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.

    ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourcePlugin, ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourcePluginArgs

    Envs List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    Envs []ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourcePluginEnv
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourcePluginEnv[]
    Environment variables passed to the plugin.
    name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs Sequence[ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourcePluginEnv]
    Environment variables passed to the plugin.
    name str
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<Property Map>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.

    ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourcePluginEnv, ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSourcePluginEnvArgs

    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.
    name string
    Name of the environment variable.
    value string
    Value of the environment variable.
    name str
    Name of the environment variable.
    value str
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.

    ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicy, ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicyArgs

    Automated Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions List<string>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    Automated ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions []string
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions string[]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managed_namespace_metadata ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    sync_options Sequence[str]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated Property Map
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata Property Map
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry Property Map
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.

    ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicyAutomated, ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicyAutomatedArgs

    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty boolean
    Allows apps have zero live resources.
    prune boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allow_empty bool
    Allows apps have zero live resources.
    prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    self_heal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.

    ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadata, ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadataArgs

    Annotations Dictionary<string, string>
    Annotations to apply to the namespace.
    Labels Dictionary<string, string>
    Labels to apply to the namespace.
    Annotations map[string]string
    Annotations to apply to the namespace.
    Labels map[string]string
    Labels to apply to the namespace.
    annotations Map<String,String>
    Annotations to apply to the namespace.
    labels Map<String,String>
    Labels to apply to the namespace.
    annotations {[key: string]: string}
    Annotations to apply to the namespace.
    labels {[key: string]: string}
    Labels to apply to the namespace.
    annotations Mapping[str, str]
    Annotations to apply to the namespace.
    labels Mapping[str, str]
    Labels to apply to the namespace.
    annotations Map<String>
    Annotations to apply to the namespace.
    labels Map<String>
    Labels to apply to the namespace.

    ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetry, ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetryArgs

    Backoff Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    Backoff ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit str
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff Property Map
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.

    ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetryBackoff, ApplicationSetSpecGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetryBackoffArgs

    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor string
    Factor to multiply the base duration after each failed retry.
    maxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration str
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor str
    Factor to multiply the base duration after each failed retry.
    max_duration str
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrix, ApplicationSetSpecGeneratorMatrixGeneratorMatrixArgs

    Generators List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGenerator>
    Child generator. Generators are responsible for generating parameters, which are then combined by the parent matrix generator into the template fields of the ApplicationSet resource.
    Template Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplate
    Generator template. Used to override the values of the spec-level template.
    Generators []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGenerator
    Child generator. Generators are responsible for generating parameters, which are then combined by the parent matrix generator into the template fields of the ApplicationSet resource.
    Template ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplate
    Generator template. Used to override the values of the spec-level template.
    generators List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGenerator>
    Child generator. Generators are responsible for generating parameters, which are then combined by the parent matrix generator into the template fields of the ApplicationSet resource.
    template ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplate
    Generator template. Used to override the values of the spec-level template.
    generators ApplicationSetSpecGeneratorMatrixGeneratorMatrixGenerator[]
    Child generator. Generators are responsible for generating parameters, which are then combined by the parent matrix generator into the template fields of the ApplicationSet resource.
    template ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplate
    Generator template. Used to override the values of the spec-level template.
    generators Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGenerator]
    Child generator. Generators are responsible for generating parameters, which are then combined by the parent matrix generator into the template fields of the ApplicationSet resource.
    template ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplate
    Generator template. Used to override the values of the spec-level template.
    generators List<Property Map>
    Child generator. Generators are responsible for generating parameters, which are then combined by the parent matrix generator into the template fields of the ApplicationSet resource.
    template Property Map
    Generator template. Used to override the values of the spec-level template.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGenerator, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorArgs

    ClusterDecisionResources List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResource>
    The cluster decision resource generates a list of Argo CD clusters.
    Clusters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorCluster>
    The cluster generator produces parameters based on the list of items found within the cluster secret.
    Gits List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGit>
    Git generators generates parameters using either the directory structure of a specified Git repository (directory generator), or, using the contents of JSON/YAML files found within a specified repository (file generator).
    Lists List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorList>
    List generators generate parameters based on an arbitrary list of key/value pairs (as long as the values are string values).
    PullRequests List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequest>
    Pull Request generators uses the API of an SCMaaS provider to automatically discover open pull requests within a repository.
    ScmProviders List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProvider>
    SCM Provider generators uses the API of an SCMaaS provider to automatically discover repositories within an organization.
    Selector Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorSelector
    The Selector allows to post-filter based on generated values using the kubernetes common labelSelector format.
    ClusterDecisionResources []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResource
    The cluster decision resource generates a list of Argo CD clusters.
    Clusters []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorCluster
    The cluster generator produces parameters based on the list of items found within the cluster secret.
    Gits []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGit
    Git generators generates parameters using either the directory structure of a specified Git repository (directory generator), or, using the contents of JSON/YAML files found within a specified repository (file generator).
    Lists []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorList
    List generators generate parameters based on an arbitrary list of key/value pairs (as long as the values are string values).
    PullRequests []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequest
    Pull Request generators uses the API of an SCMaaS provider to automatically discover open pull requests within a repository.
    ScmProviders []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProvider
    SCM Provider generators uses the API of an SCMaaS provider to automatically discover repositories within an organization.
    Selector ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorSelector
    The Selector allows to post-filter based on generated values using the kubernetes common labelSelector format.
    clusterDecisionResources List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResource>
    The cluster decision resource generates a list of Argo CD clusters.
    clusters List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorCluster>
    The cluster generator produces parameters based on the list of items found within the cluster secret.
    gits List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGit>
    Git generators generates parameters using either the directory structure of a specified Git repository (directory generator), or, using the contents of JSON/YAML files found within a specified repository (file generator).
    lists List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorList>
    List generators generate parameters based on an arbitrary list of key/value pairs (as long as the values are string values).
    pullRequests List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequest>
    Pull Request generators uses the API of an SCMaaS provider to automatically discover open pull requests within a repository.
    scmProviders List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProvider>
    SCM Provider generators uses the API of an SCMaaS provider to automatically discover repositories within an organization.
    selector ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorSelector
    The Selector allows to post-filter based on generated values using the kubernetes common labelSelector format.
    clusterDecisionResources ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResource[]
    The cluster decision resource generates a list of Argo CD clusters.
    clusters ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorCluster[]
    The cluster generator produces parameters based on the list of items found within the cluster secret.
    gits ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGit[]
    Git generators generates parameters using either the directory structure of a specified Git repository (directory generator), or, using the contents of JSON/YAML files found within a specified repository (file generator).
    lists ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorList[]
    List generators generate parameters based on an arbitrary list of key/value pairs (as long as the values are string values).
    pullRequests ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequest[]
    Pull Request generators uses the API of an SCMaaS provider to automatically discover open pull requests within a repository.
    scmProviders ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProvider[]
    SCM Provider generators uses the API of an SCMaaS provider to automatically discover repositories within an organization.
    selector ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorSelector
    The Selector allows to post-filter based on generated values using the kubernetes common labelSelector format.
    cluster_decision_resources Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResource]
    The cluster decision resource generates a list of Argo CD clusters.
    clusters Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorCluster]
    The cluster generator produces parameters based on the list of items found within the cluster secret.
    gits Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGit]
    Git generators generates parameters using either the directory structure of a specified Git repository (directory generator), or, using the contents of JSON/YAML files found within a specified repository (file generator).
    lists Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorList]
    List generators generate parameters based on an arbitrary list of key/value pairs (as long as the values are string values).
    pull_requests Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequest]
    Pull Request generators uses the API of an SCMaaS provider to automatically discover open pull requests within a repository.
    scm_providers Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProvider]
    SCM Provider generators uses the API of an SCMaaS provider to automatically discover repositories within an organization.
    selector ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorSelector
    The Selector allows to post-filter based on generated values using the kubernetes common labelSelector format.
    clusterDecisionResources List<Property Map>
    The cluster decision resource generates a list of Argo CD clusters.
    clusters List<Property Map>
    The cluster generator produces parameters based on the list of items found within the cluster secret.
    gits List<Property Map>
    Git generators generates parameters using either the directory structure of a specified Git repository (directory generator), or, using the contents of JSON/YAML files found within a specified repository (file generator).
    lists List<Property Map>
    List generators generate parameters based on an arbitrary list of key/value pairs (as long as the values are string values).
    pullRequests List<Property Map>
    Pull Request generators uses the API of an SCMaaS provider to automatically discover open pull requests within a repository.
    scmProviders List<Property Map>
    SCM Provider generators uses the API of an SCMaaS provider to automatically discover repositories within an organization.
    selector Property Map
    The Selector allows to post-filter based on generated values using the kubernetes common labelSelector format.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorCluster, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterArgs

    Enabled bool
    Boolean value defaulting to true to indicate that this block has been added thereby allowing all other attributes to be optional.
    Selector Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterSelector
    Label selector used to narrow the scope of targeted clusters.
    Template Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplate
    Generator template. Used to override the values of the spec-level template.
    Values Dictionary<string, string>
    Arbitrary string key-value pairs to pass to the template via the values field of the cluster generator.
    Enabled bool
    Boolean value defaulting to true to indicate that this block has been added thereby allowing all other attributes to be optional.
    Selector ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterSelector
    Label selector used to narrow the scope of targeted clusters.
    Template ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplate
    Generator template. Used to override the values of the spec-level template.
    Values map[string]string
    Arbitrary string key-value pairs to pass to the template via the values field of the cluster generator.
    enabled Boolean
    Boolean value defaulting to true to indicate that this block has been added thereby allowing all other attributes to be optional.
    selector ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterSelector
    Label selector used to narrow the scope of targeted clusters.
    template ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplate
    Generator template. Used to override the values of the spec-level template.
    values Map<String,String>
    Arbitrary string key-value pairs to pass to the template via the values field of the cluster generator.
    enabled boolean
    Boolean value defaulting to true to indicate that this block has been added thereby allowing all other attributes to be optional.
    selector ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterSelector
    Label selector used to narrow the scope of targeted clusters.
    template ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplate
    Generator template. Used to override the values of the spec-level template.
    values {[key: string]: string}
    Arbitrary string key-value pairs to pass to the template via the values field of the cluster generator.
    enabled bool
    Boolean value defaulting to true to indicate that this block has been added thereby allowing all other attributes to be optional.
    selector ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterSelector
    Label selector used to narrow the scope of targeted clusters.
    template ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplate
    Generator template. Used to override the values of the spec-level template.
    values Mapping[str, str]
    Arbitrary string key-value pairs to pass to the template via the values field of the cluster generator.
    enabled Boolean
    Boolean value defaulting to true to indicate that this block has been added thereby allowing all other attributes to be optional.
    selector Property Map
    Label selector used to narrow the scope of targeted clusters.
    template Property Map
    Generator template. Used to override the values of the spec-level template.
    values Map<String>
    Arbitrary string key-value pairs to pass to the template via the values field of the cluster generator.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResource, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceArgs

    ConfigMapRef string
    ConfigMap with the duck type definitions needed to retrieve the data this includes apiVersion(group/version), kind, matchKey and validation settings.
    LabelSelector Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceLabelSelector
    Label selector used to find the resource defined in the config_map_ref. Alternative to name.
    Name string
    Resource name of the kind, group and version, defined in the config_map_ref.
    RequeueAfterSeconds string
    How often to check for changes (in seconds). Default: 3min.
    Template Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplate
    Generator template. Used to override the values of the spec-level template.
    Values Dictionary<string, string>
    Arbitrary string key-value pairs which are passed directly as parameters to the template.
    ConfigMapRef string
    ConfigMap with the duck type definitions needed to retrieve the data this includes apiVersion(group/version), kind, matchKey and validation settings.
    LabelSelector ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceLabelSelector
    Label selector used to find the resource defined in the config_map_ref. Alternative to name.
    Name string
    Resource name of the kind, group and version, defined in the config_map_ref.
    RequeueAfterSeconds string
    How often to check for changes (in seconds). Default: 3min.
    Template ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplate
    Generator template. Used to override the values of the spec-level template.
    Values map[string]string
    Arbitrary string key-value pairs which are passed directly as parameters to the template.
    configMapRef String
    ConfigMap with the duck type definitions needed to retrieve the data this includes apiVersion(group/version), kind, matchKey and validation settings.
    labelSelector ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceLabelSelector
    Label selector used to find the resource defined in the config_map_ref. Alternative to name.
    name String
    Resource name of the kind, group and version, defined in the config_map_ref.
    requeueAfterSeconds String
    How often to check for changes (in seconds). Default: 3min.
    template ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplate
    Generator template. Used to override the values of the spec-level template.
    values Map<String,String>
    Arbitrary string key-value pairs which are passed directly as parameters to the template.
    configMapRef string
    ConfigMap with the duck type definitions needed to retrieve the data this includes apiVersion(group/version), kind, matchKey and validation settings.
    labelSelector ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceLabelSelector
    Label selector used to find the resource defined in the config_map_ref. Alternative to name.
    name string
    Resource name of the kind, group and version, defined in the config_map_ref.
    requeueAfterSeconds string
    How often to check for changes (in seconds). Default: 3min.
    template ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplate
    Generator template. Used to override the values of the spec-level template.
    values {[key: string]: string}
    Arbitrary string key-value pairs which are passed directly as parameters to the template.
    config_map_ref str
    ConfigMap with the duck type definitions needed to retrieve the data this includes apiVersion(group/version), kind, matchKey and validation settings.
    label_selector ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceLabelSelector
    Label selector used to find the resource defined in the config_map_ref. Alternative to name.
    name str
    Resource name of the kind, group and version, defined in the config_map_ref.
    requeue_after_seconds str
    How often to check for changes (in seconds). Default: 3min.
    template ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplate
    Generator template. Used to override the values of the spec-level template.
    values Mapping[str, str]
    Arbitrary string key-value pairs which are passed directly as parameters to the template.
    configMapRef String
    ConfigMap with the duck type definitions needed to retrieve the data this includes apiVersion(group/version), kind, matchKey and validation settings.
    labelSelector Property Map
    Label selector used to find the resource defined in the config_map_ref. Alternative to name.
    name String
    Resource name of the kind, group and version, defined in the config_map_ref.
    requeueAfterSeconds String
    How often to check for changes (in seconds). Default: 3min.
    template Property Map
    Generator template. Used to override the values of the spec-level template.
    values Map<String>
    Arbitrary string key-value pairs which are passed directly as parameters to the template.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceLabelSelector, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceLabelSelectorArgs

    MatchExpressions List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceLabelSelectorMatchExpression>
    A list of label selector requirements. The requirements are ANDed.
    MatchLabels Dictionary<string, string>
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    MatchExpressions []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceLabelSelectorMatchExpression
    A list of label selector requirements. The requirements are ANDed.
    MatchLabels map[string]string
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    matchExpressions List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceLabelSelectorMatchExpression>
    A list of label selector requirements. The requirements are ANDed.
    matchLabels Map<String,String>
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    matchExpressions ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceLabelSelectorMatchExpression[]
    A list of label selector requirements. The requirements are ANDed.
    matchLabels {[key: string]: string}
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    match_expressions Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceLabelSelectorMatchExpression]
    A list of label selector requirements. The requirements are ANDed.
    match_labels Mapping[str, str]
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    matchExpressions List<Property Map>
    A list of label selector requirements. The requirements are ANDed.
    matchLabels Map<String>
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceLabelSelectorMatchExpression, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceLabelSelectorMatchExpressionArgs

    Key string
    The label key that the selector applies to.
    Operator string
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    Values List<string>
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    Key string
    The label key that the selector applies to.
    Operator string
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    Values []string
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key String
    The label key that the selector applies to.
    operator String
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values List<String>
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key string
    The label key that the selector applies to.
    operator string
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values string[]
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key str
    The label key that the selector applies to.
    operator str
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values Sequence[str]
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key String
    The label key that the selector applies to.
    operator String
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values List<String>
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplate, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateArgs

    metadata Property Map
    Kubernetes object metadata for templated Application.
    spec Property Map
    The application specification.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateMetadata, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateMetadataArgs

    Annotations Dictionary<string, string>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers List<string>
    List of finalizers to apply to the resulting Application.
    Labels Dictionary<string, string>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    Annotations map[string]string
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers []string
    List of finalizers to apply to the resulting Application.
    Labels map[string]string
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    annotations Map<String,String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String,String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application
    annotations {[key: string]: string}
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers string[]
    List of finalizers to apply to the resulting Application.
    labels {[key: string]: string}
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name string
    Name of the resulting Application
    namespace string
    Namespace of the resulting Application
    annotations Mapping[str, str]
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers Sequence[str]
    List of finalizers to apply to the resulting Application.
    labels Mapping[str, str]
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name str
    Name of the resulting Application
    namespace str
    Namespace of the resulting Application
    annotations Map<String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpec, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecArgs

    Destination Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSource>
    Location of the application's manifests or chart.
    SyncPolicy Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    Destination ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecIgnoreDifference
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecInfo
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSource
    Location of the application's manifests or chart.
    SyncPolicy ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Integer
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSource>
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecIgnoreDifference[]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecInfo[]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project string
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSource[]
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignore_differences Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecIgnoreDifference]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecInfo]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project str
    The project the application belongs to. Defaults to default.
    revision_history_limit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSource]
    Location of the application's manifests or chart.
    sync_policy ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination Property Map
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<Property Map>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<Property Map>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<Property Map>
    Location of the application's manifests or chart.
    syncPolicy Property Map
    Controls when and how a sync will be performed.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecDestination, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecDestinationArgs

    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name string
    Name of the target cluster. Can be used instead of server.
    namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name str
    Name of the target cluster. Can be used instead of server.
    namespace str
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server str
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecIgnoreDifference, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecIgnoreDifferenceArgs

    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions List<string>
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers List<string>
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers List<string>
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions []string
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers []string
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers []string
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    group string
    The Kubernetes resource Group to match for.
    jqPathExpressions string[]
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers string[]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind string
    The Kubernetes resource Kind to match for.
    managedFieldsManagers string[]
    List of external controller manager names whose changes to fields should be ignored.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    group str
    The Kubernetes resource Group to match for.
    jq_path_expressions Sequence[str]
    List of JQ path expression strings targeting the field(s) to ignore.
    json_pointers Sequence[str]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind str
    The Kubernetes resource Kind to match for.
    managed_fields_managers Sequence[str]
    List of external controller manager names whose changes to fields should be ignored.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecInfo, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecInfoArgs

    Name string
    Name of the information.
    Value string
    Value of the information.
    Name string
    Name of the information.
    Value string
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.
    name string
    Name of the information.
    value string
    Value of the information.
    name str
    Name of the information.
    value str
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSource, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceArgs

    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelm
    Helm specific options.
    Kustomize Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelm
    Helm specific options.
    Kustomize ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomize
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomize
    Kustomize specific options.
    path string
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart str
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomize
    Kustomize specific options.
    path str
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref str
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repo_url str
    URL to the repository (Git or Helm) that contains the application manifests.
    target_revision str
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory Property Map
    Path/directory specific options.
    helm Property Map
    Helm specific options.
    kustomize Property Map
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin Property Map
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectory, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryArgs

    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.
    exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse boolean
    Whether to scan a directory recursively for manifests.
    exclude str
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include str
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet Property Map
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnet, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetArgs

    extVars List<Property Map>
    List of Jsonnet External Variables.
    libs List<String>
    Additional library search dirs.
    tlas List<Property Map>
    List of Jsonnet Top-level Arguments

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetExtVar, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetExtVarArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetTla, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetTlaArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelm, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmArgs

    FileParameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles List<string>
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    FileParameters []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameter
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles []string
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter[]
    File parameters for the helm template.
    ignoreMissingValueFiles boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameter[]
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName string
    Helm release name. If omitted it will use the application name.
    skipCrds boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles string[]
    List of Helm value files to use when generating a template.
    values string
    Helm values to be passed to 'helm template', typically defined as a block.
    version string
    The Helm version to use for templating. Accepts either v2 or v3
    file_parameters Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter]
    File parameters for the helm template.
    ignore_missing_value_files bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameter]
    Helm parameters which are passed to the helm template command upon manifest generation.
    pass_credentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    release_name str
    Helm release name. If omitted it will use the application name.
    skip_crds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    value_files Sequence[str]
    List of Helm value files to use when generating a template.
    values str
    Helm values to be passed to 'helm template', typically defined as a block.
    version str
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<Property Map>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<Property Map>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameterArgs

    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.
    name string
    Name of the Helm parameter.
    path string
    Path to the file containing the values for the Helm parameter.
    name str
    Name of the Helm parameter.
    path str
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameter, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameterArgs

    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.
    forceString boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name string
    Name of the Helm parameter.
    value string
    Value of the Helm parameter.
    force_string bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name str
    Name of the Helm parameter.
    value str
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomize, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizeArgs

    CommonAnnotations Dictionary<string, string>
    List of additional annotations to add to rendered manifests.
    CommonLabels Dictionary<string, string>
    List of additional labels to add to rendered manifests.
    Images List<string>
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    CommonAnnotations map[string]string
    List of additional annotations to add to rendered manifests.
    CommonLabels map[string]string
    List of additional labels to add to rendered manifests.
    Images []string
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatch
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String,String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String,String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.
    commonAnnotations {[key: string]: string}
    List of additional annotations to add to rendered manifests.
    commonLabels {[key: string]: string}
    List of additional labels to add to rendered manifests.
    images string[]
    List of Kustomize image override specifications.
    namePrefix string
    Prefix appended to resources for Kustomize apps.
    nameSuffix string
    Suffix appended to resources for Kustomize apps.
    patches ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatch[]
    A list of Kustomize patches to apply.
    version string
    Version of Kustomize to use for rendering manifests.
    common_annotations Mapping[str, str]
    List of additional annotations to add to rendered manifests.
    common_labels Mapping[str, str]
    List of additional labels to add to rendered manifests.
    images Sequence[str]
    List of Kustomize image override specifications.
    name_prefix str
    Prefix appended to resources for Kustomize apps.
    name_suffix str
    Suffix appended to resources for Kustomize apps.
    patches Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatch]
    A list of Kustomize patches to apply.
    version str
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<Property Map>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatch, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchArgs

    Target Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options Dictionary<string, bool>
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    Target ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options map[string]bool
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Map<String,Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options {[key: string]: boolean}
    Additional options.
    patch string
    Inline Kustomize patch to apply.
    path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Mapping[str, bool]
    Additional options.
    patch str
    Inline Kustomize patch to apply.
    path str
    Path to a file containing the patch to apply.
    target Property Map
    Target(s) to patch
    options Map<Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTarget, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTargetArgs

    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.
    annotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    group string
    The Kubernetes resource Group to match for.
    kind string
    The Kubernetes resource Kind to match for.
    labelSelector string
    Label selector to use when matching the Kubernetes resource.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    version string
    The Kubernetes resource Version to match for.
    annotation_selector str
    Annotation selector to use when matching the Kubernetes resource.
    group str
    The Kubernetes resource Group to match for.
    kind str
    The Kubernetes resource Kind to match for.
    label_selector str
    Label selector to use when matching the Kubernetes resource.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    version str
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePlugin, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePluginArgs

    Envs List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    Envs []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnv
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnv[]
    Environment variables passed to the plugin.
    name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnv]
    Environment variables passed to the plugin.
    name str
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<Property Map>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnv, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnvArgs

    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.
    name string
    Name of the environment variable.
    value string
    Value of the environment variable.
    name str
    Name of the environment variable.
    value str
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicy, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyArgs

    Automated ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions []string
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions string[]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managed_namespace_metadata ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    sync_options Sequence[str]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated Property Map
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata Property Map
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry Property Map
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomated, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomatedArgs

    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty boolean
    Allows apps have zero live resources.
    prune boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allow_empty bool
    Allows apps have zero live resources.
    prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    self_heal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadata, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadataArgs

    Annotations Dictionary<string, string>
    Annotations to apply to the namespace.
    Labels Dictionary<string, string>
    Labels to apply to the namespace.
    Annotations map[string]string
    Annotations to apply to the namespace.
    Labels map[string]string
    Labels to apply to the namespace.
    annotations Map<String,String>
    Annotations to apply to the namespace.
    labels Map<String,String>
    Labels to apply to the namespace.
    annotations {[key: string]: string}
    Annotations to apply to the namespace.
    labels {[key: string]: string}
    Labels to apply to the namespace.
    annotations Mapping[str, str]
    Annotations to apply to the namespace.
    labels Mapping[str, str]
    Labels to apply to the namespace.
    annotations Map<String>
    Annotations to apply to the namespace.
    labels Map<String>
    Labels to apply to the namespace.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetry, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryArgs

    Backoff Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    Backoff ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit str
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff Property Map
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoff, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoffArgs

    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor string
    Factor to multiply the base duration after each failed retry.
    maxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration str
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor str
    Factor to multiply the base duration after each failed retry.
    max_duration str
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterSelector, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterSelectorArgs

    MatchExpressions List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterSelectorMatchExpression>
    A list of label selector requirements. The requirements are ANDed.
    MatchLabels Dictionary<string, string>
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    MatchExpressions []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterSelectorMatchExpression
    A list of label selector requirements. The requirements are ANDed.
    MatchLabels map[string]string
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    matchExpressions List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterSelectorMatchExpression>
    A list of label selector requirements. The requirements are ANDed.
    matchLabels Map<String,String>
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    matchExpressions ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterSelectorMatchExpression[]
    A list of label selector requirements. The requirements are ANDed.
    matchLabels {[key: string]: string}
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    match_expressions Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterSelectorMatchExpression]
    A list of label selector requirements. The requirements are ANDed.
    match_labels Mapping[str, str]
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    matchExpressions List<Property Map>
    A list of label selector requirements. The requirements are ANDed.
    matchLabels Map<String>
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterSelectorMatchExpression, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterSelectorMatchExpressionArgs

    Key string
    The label key that the selector applies to.
    Operator string
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    Values List<string>
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    Key string
    The label key that the selector applies to.
    Operator string
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    Values []string
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key String
    The label key that the selector applies to.
    operator String
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values List<String>
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key string
    The label key that the selector applies to.
    operator string
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values string[]
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key str
    The label key that the selector applies to.
    operator str
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values Sequence[str]
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key String
    The label key that the selector applies to.
    operator String
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values List<String>
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplate, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateArgs

    metadata Property Map
    Kubernetes object metadata for templated Application.
    spec Property Map
    The application specification.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateMetadata, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateMetadataArgs

    Annotations Dictionary<string, string>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers List<string>
    List of finalizers to apply to the resulting Application.
    Labels Dictionary<string, string>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    Annotations map[string]string
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers []string
    List of finalizers to apply to the resulting Application.
    Labels map[string]string
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    annotations Map<String,String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String,String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application
    annotations {[key: string]: string}
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers string[]
    List of finalizers to apply to the resulting Application.
    labels {[key: string]: string}
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name string
    Name of the resulting Application
    namespace string
    Namespace of the resulting Application
    annotations Mapping[str, str]
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers Sequence[str]
    List of finalizers to apply to the resulting Application.
    labels Mapping[str, str]
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name str
    Name of the resulting Application
    namespace str
    Namespace of the resulting Application
    annotations Map<String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpec, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecArgs

    Destination Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSource>
    Location of the application's manifests or chart.
    SyncPolicy Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    Destination ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecIgnoreDifference
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecInfo
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSource
    Location of the application's manifests or chart.
    SyncPolicy ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Integer
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSource>
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecIgnoreDifference[]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecInfo[]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project string
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSource[]
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignore_differences Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecIgnoreDifference]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecInfo]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project str
    The project the application belongs to. Defaults to default.
    revision_history_limit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSource]
    Location of the application's manifests or chart.
    sync_policy ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination Property Map
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<Property Map>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<Property Map>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<Property Map>
    Location of the application's manifests or chart.
    syncPolicy Property Map
    Controls when and how a sync will be performed.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecDestination, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecDestinationArgs

    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name string
    Name of the target cluster. Can be used instead of server.
    namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name str
    Name of the target cluster. Can be used instead of server.
    namespace str
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server str
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecIgnoreDifference, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecIgnoreDifferenceArgs

    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions List<string>
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers List<string>
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers List<string>
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions []string
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers []string
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers []string
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    group string
    The Kubernetes resource Group to match for.
    jqPathExpressions string[]
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers string[]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind string
    The Kubernetes resource Kind to match for.
    managedFieldsManagers string[]
    List of external controller manager names whose changes to fields should be ignored.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    group str
    The Kubernetes resource Group to match for.
    jq_path_expressions Sequence[str]
    List of JQ path expression strings targeting the field(s) to ignore.
    json_pointers Sequence[str]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind str
    The Kubernetes resource Kind to match for.
    managed_fields_managers Sequence[str]
    List of external controller manager names whose changes to fields should be ignored.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecInfo, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecInfoArgs

    Name string
    Name of the information.
    Value string
    Value of the information.
    Name string
    Name of the information.
    Value string
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.
    name string
    Name of the information.
    value string
    Value of the information.
    name str
    Name of the information.
    value str
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSource, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceArgs

    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceHelm
    Helm specific options.
    Kustomize Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceHelm
    Helm specific options.
    Kustomize ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomize
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomize
    Kustomize specific options.
    path string
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart str
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomize
    Kustomize specific options.
    path str
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref str
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repo_url str
    URL to the repository (Git or Helm) that contains the application manifests.
    target_revision str
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory Property Map
    Path/directory specific options.
    helm Property Map
    Helm specific options.
    kustomize Property Map
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin Property Map
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectory, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryArgs

    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.
    exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse boolean
    Whether to scan a directory recursively for manifests.
    exclude str
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include str
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet Property Map
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnet, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnetArgs

    extVars List<Property Map>
    List of Jsonnet External Variables.
    libs List<String>
    Additional library search dirs.
    tlas List<Property Map>
    List of Jsonnet Top-level Arguments

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnetExtVar, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnetExtVarArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnetTla, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnetTlaArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceHelm, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmArgs

    FileParameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles List<string>
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    FileParameters []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmFileParameter
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmParameter
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles []string
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmFileParameter[]
    File parameters for the helm template.
    ignoreMissingValueFiles boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmParameter[]
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName string
    Helm release name. If omitted it will use the application name.
    skipCrds boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles string[]
    List of Helm value files to use when generating a template.
    values string
    Helm values to be passed to 'helm template', typically defined as a block.
    version string
    The Helm version to use for templating. Accepts either v2 or v3
    file_parameters Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmFileParameter]
    File parameters for the helm template.
    ignore_missing_value_files bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmParameter]
    Helm parameters which are passed to the helm template command upon manifest generation.
    pass_credentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    release_name str
    Helm release name. If omitted it will use the application name.
    skip_crds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    value_files Sequence[str]
    List of Helm value files to use when generating a template.
    values str
    Helm values to be passed to 'helm template', typically defined as a block.
    version str
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<Property Map>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<Property Map>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmFileParameter, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmFileParameterArgs

    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.
    name string
    Name of the Helm parameter.
    path string
    Path to the file containing the values for the Helm parameter.
    name str
    Name of the Helm parameter.
    path str
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmParameter, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmParameterArgs

    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.
    forceString boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name string
    Name of the Helm parameter.
    value string
    Value of the Helm parameter.
    force_string bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name str
    Name of the Helm parameter.
    value str
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomize, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizeArgs

    CommonAnnotations Dictionary<string, string>
    List of additional annotations to add to rendered manifests.
    CommonLabels Dictionary<string, string>
    List of additional labels to add to rendered manifests.
    Images List<string>
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    CommonAnnotations map[string]string
    List of additional annotations to add to rendered manifests.
    CommonLabels map[string]string
    List of additional labels to add to rendered manifests.
    Images []string
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatch
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String,String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String,String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.
    commonAnnotations {[key: string]: string}
    List of additional annotations to add to rendered manifests.
    commonLabels {[key: string]: string}
    List of additional labels to add to rendered manifests.
    images string[]
    List of Kustomize image override specifications.
    namePrefix string
    Prefix appended to resources for Kustomize apps.
    nameSuffix string
    Suffix appended to resources for Kustomize apps.
    patches ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatch[]
    A list of Kustomize patches to apply.
    version string
    Version of Kustomize to use for rendering manifests.
    common_annotations Mapping[str, str]
    List of additional annotations to add to rendered manifests.
    common_labels Mapping[str, str]
    List of additional labels to add to rendered manifests.
    images Sequence[str]
    List of Kustomize image override specifications.
    name_prefix str
    Prefix appended to resources for Kustomize apps.
    name_suffix str
    Suffix appended to resources for Kustomize apps.
    patches Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatch]
    A list of Kustomize patches to apply.
    version str
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<Property Map>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatch, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatchArgs

    Target Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options Dictionary<string, bool>
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    Target ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options map[string]bool
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Map<String,Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options {[key: string]: boolean}
    Additional options.
    patch string
    Inline Kustomize patch to apply.
    path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Mapping[str, bool]
    Additional options.
    patch str
    Inline Kustomize patch to apply.
    path str
    Path to a file containing the patch to apply.
    target Property Map
    Target(s) to patch
    options Map<Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatchTarget, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatchTargetArgs

    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.
    annotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    group string
    The Kubernetes resource Group to match for.
    kind string
    The Kubernetes resource Kind to match for.
    labelSelector string
    Label selector to use when matching the Kubernetes resource.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    version string
    The Kubernetes resource Version to match for.
    annotation_selector str
    Annotation selector to use when matching the Kubernetes resource.
    group str
    The Kubernetes resource Group to match for.
    kind str
    The Kubernetes resource Kind to match for.
    label_selector str
    Label selector to use when matching the Kubernetes resource.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    version str
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourcePlugin, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourcePluginArgs

    Envs List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    Envs []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourcePluginEnv
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourcePluginEnv[]
    Environment variables passed to the plugin.
    name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourcePluginEnv]
    Environment variables passed to the plugin.
    name str
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<Property Map>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourcePluginEnv, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSourcePluginEnvArgs

    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.
    name string
    Name of the environment variable.
    value string
    Value of the environment variable.
    name str
    Name of the environment variable.
    value str
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicy, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyArgs

    Automated Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions List<string>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    Automated ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions []string
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions string[]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managed_namespace_metadata ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    sync_options Sequence[str]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated Property Map
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata Property Map
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry Property Map
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyAutomated, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyAutomatedArgs

    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty boolean
    Allows apps have zero live resources.
    prune boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allow_empty bool
    Allows apps have zero live resources.
    prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    self_heal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadata, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadataArgs

    Annotations Dictionary<string, string>
    Annotations to apply to the namespace.
    Labels Dictionary<string, string>
    Labels to apply to the namespace.
    Annotations map[string]string
    Annotations to apply to the namespace.
    Labels map[string]string
    Labels to apply to the namespace.
    annotations Map<String,String>
    Annotations to apply to the namespace.
    labels Map<String,String>
    Labels to apply to the namespace.
    annotations {[key: string]: string}
    Annotations to apply to the namespace.
    labels {[key: string]: string}
    Labels to apply to the namespace.
    annotations Mapping[str, str]
    Annotations to apply to the namespace.
    labels Mapping[str, str]
    Labels to apply to the namespace.
    annotations Map<String>
    Annotations to apply to the namespace.
    labels Map<String>
    Labels to apply to the namespace.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetry, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetryArgs

    Backoff Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    Backoff ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit str
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff Property Map
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetryBackoff, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetryBackoffArgs

    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor string
    Factor to multiply the base duration after each failed retry.
    maxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration str
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor str
    Factor to multiply the base duration after each failed retry.
    max_duration str
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGit, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitArgs

    RepoUrl string
    URL to the repository to use.
    Directories List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitDirectory>
    List of directories in the source repository to use when template the Application..
    Files List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitFile>
    List of files in the source repository to use when template the Application.
    PathParamPrefix string
    Prefix for all path-related parameter names.
    Revision string
    Revision of the source repository to use.
    Template Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplate
    Generator template. Used to override the values of the spec-level template.
    Values Dictionary<string, string>
    Arbitrary string key-value pairs to pass to the template via the values field of the git generator.
    RepoUrl string
    URL to the repository to use.
    Directories []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitDirectory
    List of directories in the source repository to use when template the Application..
    Files []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitFile
    List of files in the source repository to use when template the Application.
    PathParamPrefix string
    Prefix for all path-related parameter names.
    Revision string
    Revision of the source repository to use.
    Template ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplate
    Generator template. Used to override the values of the spec-level template.
    Values map[string]string
    Arbitrary string key-value pairs to pass to the template via the values field of the git generator.
    repoUrl String
    URL to the repository to use.
    directories List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitDirectory>
    List of directories in the source repository to use when template the Application..
    files List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitFile>
    List of files in the source repository to use when template the Application.
    pathParamPrefix String
    Prefix for all path-related parameter names.
    revision String
    Revision of the source repository to use.
    template ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplate
    Generator template. Used to override the values of the spec-level template.
    values Map<String,String>
    Arbitrary string key-value pairs to pass to the template via the values field of the git generator.
    repoUrl string
    URL to the repository to use.
    directories ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitDirectory[]
    List of directories in the source repository to use when template the Application..
    files ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitFile[]
    List of files in the source repository to use when template the Application.
    pathParamPrefix string
    Prefix for all path-related parameter names.
    revision string
    Revision of the source repository to use.
    template ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplate
    Generator template. Used to override the values of the spec-level template.
    values {[key: string]: string}
    Arbitrary string key-value pairs to pass to the template via the values field of the git generator.
    repo_url str
    URL to the repository to use.
    directories Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitDirectory]
    List of directories in the source repository to use when template the Application..
    files Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitFile]
    List of files in the source repository to use when template the Application.
    path_param_prefix str
    Prefix for all path-related parameter names.
    revision str
    Revision of the source repository to use.
    template ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplate
    Generator template. Used to override the values of the spec-level template.
    values Mapping[str, str]
    Arbitrary string key-value pairs to pass to the template via the values field of the git generator.
    repoUrl String
    URL to the repository to use.
    directories List<Property Map>
    List of directories in the source repository to use when template the Application..
    files List<Property Map>
    List of files in the source repository to use when template the Application.
    pathParamPrefix String
    Prefix for all path-related parameter names.
    revision String
    Revision of the source repository to use.
    template Property Map
    Generator template. Used to override the values of the spec-level template.
    values Map<String>
    Arbitrary string key-value pairs to pass to the template via the values field of the git generator.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitDirectory, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitDirectoryArgs

    Path string
    Path in the repository.
    Exclude bool
    Flag indicating whether or not the directory should be excluded when templating.
    Path string
    Path in the repository.
    Exclude bool
    Flag indicating whether or not the directory should be excluded when templating.
    path String
    Path in the repository.
    exclude Boolean
    Flag indicating whether or not the directory should be excluded when templating.
    path string
    Path in the repository.
    exclude boolean
    Flag indicating whether or not the directory should be excluded when templating.
    path str
    Path in the repository.
    exclude bool
    Flag indicating whether or not the directory should be excluded when templating.
    path String
    Path in the repository.
    exclude Boolean
    Flag indicating whether or not the directory should be excluded when templating.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitFile, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitFileArgs

    Path string
    Path to the file in the repository.
    Path string
    Path to the file in the repository.
    path String
    Path to the file in the repository.
    path string
    Path to the file in the repository.
    path str
    Path to the file in the repository.
    path String
    Path to the file in the repository.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplate, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateArgs

    metadata Property Map
    Kubernetes object metadata for templated Application.
    spec Property Map
    The application specification.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateMetadata, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateMetadataArgs

    Annotations Dictionary<string, string>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers List<string>
    List of finalizers to apply to the resulting Application.
    Labels Dictionary<string, string>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    Annotations map[string]string
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers []string
    List of finalizers to apply to the resulting Application.
    Labels map[string]string
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    annotations Map<String,String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String,String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application
    annotations {[key: string]: string}
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers string[]
    List of finalizers to apply to the resulting Application.
    labels {[key: string]: string}
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name string
    Name of the resulting Application
    namespace string
    Namespace of the resulting Application
    annotations Mapping[str, str]
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers Sequence[str]
    List of finalizers to apply to the resulting Application.
    labels Mapping[str, str]
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name str
    Name of the resulting Application
    namespace str
    Namespace of the resulting Application
    annotations Map<String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpec, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecArgs

    Destination Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSource>
    Location of the application's manifests or chart.
    SyncPolicy Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    Destination ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecIgnoreDifference
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecInfo
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSource
    Location of the application's manifests or chart.
    SyncPolicy ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Integer
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSource>
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecIgnoreDifference[]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecInfo[]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project string
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSource[]
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignore_differences Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecIgnoreDifference]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecInfo]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project str
    The project the application belongs to. Defaults to default.
    revision_history_limit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSource]
    Location of the application's manifests or chart.
    sync_policy ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination Property Map
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<Property Map>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<Property Map>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<Property Map>
    Location of the application's manifests or chart.
    syncPolicy Property Map
    Controls when and how a sync will be performed.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecDestination, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecDestinationArgs

    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name string
    Name of the target cluster. Can be used instead of server.
    namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name str
    Name of the target cluster. Can be used instead of server.
    namespace str
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server str
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecIgnoreDifference, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecIgnoreDifferenceArgs

    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions List<string>
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers List<string>
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers List<string>
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions []string
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers []string
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers []string
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    group string
    The Kubernetes resource Group to match for.
    jqPathExpressions string[]
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers string[]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind string
    The Kubernetes resource Kind to match for.
    managedFieldsManagers string[]
    List of external controller manager names whose changes to fields should be ignored.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    group str
    The Kubernetes resource Group to match for.
    jq_path_expressions Sequence[str]
    List of JQ path expression strings targeting the field(s) to ignore.
    json_pointers Sequence[str]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind str
    The Kubernetes resource Kind to match for.
    managed_fields_managers Sequence[str]
    List of external controller manager names whose changes to fields should be ignored.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecInfo, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecInfoArgs

    Name string
    Name of the information.
    Value string
    Value of the information.
    Name string
    Name of the information.
    Value string
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.
    name string
    Name of the information.
    value string
    Value of the information.
    name str
    Name of the information.
    value str
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSource, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceArgs

    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceHelm
    Helm specific options.
    Kustomize Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceHelm
    Helm specific options.
    Kustomize ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceKustomize
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceKustomize
    Kustomize specific options.
    path string
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart str
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceKustomize
    Kustomize specific options.
    path str
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref str
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repo_url str
    URL to the repository (Git or Helm) that contains the application manifests.
    target_revision str
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory Property Map
    Path/directory specific options.
    helm Property Map
    Helm specific options.
    kustomize Property Map
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin Property Map
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceDirectory, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryArgs

    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.
    exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse boolean
    Whether to scan a directory recursively for manifests.
    exclude str
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include str
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet Property Map
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnet, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnetArgs

    extVars List<Property Map>
    List of Jsonnet External Variables.
    libs List<String>
    Additional library search dirs.
    tlas List<Property Map>
    List of Jsonnet Top-level Arguments

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnetExtVar, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnetExtVarArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnetTla, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnetTlaArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceHelm, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceHelmArgs

    FileParameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles List<string>
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    FileParameters []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceHelmFileParameter
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceHelmParameter
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles []string
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceHelmFileParameter[]
    File parameters for the helm template.
    ignoreMissingValueFiles boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceHelmParameter[]
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName string
    Helm release name. If omitted it will use the application name.
    skipCrds boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles string[]
    List of Helm value files to use when generating a template.
    values string
    Helm values to be passed to 'helm template', typically defined as a block.
    version string
    The Helm version to use for templating. Accepts either v2 or v3
    file_parameters Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceHelmFileParameter]
    File parameters for the helm template.
    ignore_missing_value_files bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceHelmParameter]
    Helm parameters which are passed to the helm template command upon manifest generation.
    pass_credentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    release_name str
    Helm release name. If omitted it will use the application name.
    skip_crds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    value_files Sequence[str]
    List of Helm value files to use when generating a template.
    values str
    Helm values to be passed to 'helm template', typically defined as a block.
    version str
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<Property Map>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<Property Map>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceHelmFileParameter, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceHelmFileParameterArgs

    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.
    name string
    Name of the Helm parameter.
    path string
    Path to the file containing the values for the Helm parameter.
    name str
    Name of the Helm parameter.
    path str
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceHelmParameter, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceHelmParameterArgs

    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.
    forceString boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name string
    Name of the Helm parameter.
    value string
    Value of the Helm parameter.
    force_string bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name str
    Name of the Helm parameter.
    value str
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceKustomize, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizeArgs

    CommonAnnotations Dictionary<string, string>
    List of additional annotations to add to rendered manifests.
    CommonLabels Dictionary<string, string>
    List of additional labels to add to rendered manifests.
    Images List<string>
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    CommonAnnotations map[string]string
    List of additional annotations to add to rendered manifests.
    CommonLabels map[string]string
    List of additional labels to add to rendered manifests.
    Images []string
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatch
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String,String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String,String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.
    commonAnnotations {[key: string]: string}
    List of additional annotations to add to rendered manifests.
    commonLabels {[key: string]: string}
    List of additional labels to add to rendered manifests.
    images string[]
    List of Kustomize image override specifications.
    namePrefix string
    Prefix appended to resources for Kustomize apps.
    nameSuffix string
    Suffix appended to resources for Kustomize apps.
    patches ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatch[]
    A list of Kustomize patches to apply.
    version string
    Version of Kustomize to use for rendering manifests.
    common_annotations Mapping[str, str]
    List of additional annotations to add to rendered manifests.
    common_labels Mapping[str, str]
    List of additional labels to add to rendered manifests.
    images Sequence[str]
    List of Kustomize image override specifications.
    name_prefix str
    Prefix appended to resources for Kustomize apps.
    name_suffix str
    Suffix appended to resources for Kustomize apps.
    patches Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatch]
    A list of Kustomize patches to apply.
    version str
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<Property Map>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatch, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatchArgs

    Target Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options Dictionary<string, bool>
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    Target ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options map[string]bool
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Map<String,Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options {[key: string]: boolean}
    Additional options.
    patch string
    Inline Kustomize patch to apply.
    path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Mapping[str, bool]
    Additional options.
    patch str
    Inline Kustomize patch to apply.
    path str
    Path to a file containing the patch to apply.
    target Property Map
    Target(s) to patch
    options Map<Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatchTarget, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatchTargetArgs

    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.
    annotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    group string
    The Kubernetes resource Group to match for.
    kind string
    The Kubernetes resource Kind to match for.
    labelSelector string
    Label selector to use when matching the Kubernetes resource.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    version string
    The Kubernetes resource Version to match for.
    annotation_selector str
    Annotation selector to use when matching the Kubernetes resource.
    group str
    The Kubernetes resource Group to match for.
    kind str
    The Kubernetes resource Kind to match for.
    label_selector str
    Label selector to use when matching the Kubernetes resource.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    version str
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourcePlugin, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourcePluginArgs

    Envs List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    Envs []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourcePluginEnv
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourcePluginEnv[]
    Environment variables passed to the plugin.
    name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourcePluginEnv]
    Environment variables passed to the plugin.
    name str
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<Property Map>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourcePluginEnv, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSourcePluginEnvArgs

    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.
    name string
    Name of the environment variable.
    value string
    Value of the environment variable.
    name str
    Name of the environment variable.
    value str
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicy, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyArgs

    Automated Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions List<string>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    Automated ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions []string
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions string[]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managed_namespace_metadata ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    sync_options Sequence[str]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated Property Map
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata Property Map
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry Property Map
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyAutomated, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyAutomatedArgs

    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty boolean
    Allows apps have zero live resources.
    prune boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allow_empty bool
    Allows apps have zero live resources.
    prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    self_heal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadata, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadataArgs

    Annotations Dictionary<string, string>
    Annotations to apply to the namespace.
    Labels Dictionary<string, string>
    Labels to apply to the namespace.
    Annotations map[string]string
    Annotations to apply to the namespace.
    Labels map[string]string
    Labels to apply to the namespace.
    annotations Map<String,String>
    Annotations to apply to the namespace.
    labels Map<String,String>
    Labels to apply to the namespace.
    annotations {[key: string]: string}
    Annotations to apply to the namespace.
    labels {[key: string]: string}
    Labels to apply to the namespace.
    annotations Mapping[str, str]
    Annotations to apply to the namespace.
    labels Mapping[str, str]
    Labels to apply to the namespace.
    annotations Map<String>
    Annotations to apply to the namespace.
    labels Map<String>
    Labels to apply to the namespace.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetry, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetryArgs

    Backoff Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    Backoff ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit str
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff Property Map
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetryBackoff, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetryBackoffArgs

    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor string
    Factor to multiply the base duration after each failed retry.
    maxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration str
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor str
    Factor to multiply the base duration after each failed retry.
    max_duration str
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorList, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListArgs

    Elements List<ImmutableDictionary<string, string>>
    List of key/value pairs to pass as parameters into the template
    Template Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplate
    Generator template. Used to override the values of the spec-level template.
    Elements []map[string]string
    List of key/value pairs to pass as parameters into the template
    Template ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplate
    Generator template. Used to override the values of the spec-level template.
    elements List<Map<String,String>>
    List of key/value pairs to pass as parameters into the template
    template ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplate
    Generator template. Used to override the values of the spec-level template.
    elements {[key: string]: string}[]
    List of key/value pairs to pass as parameters into the template
    template ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplate
    Generator template. Used to override the values of the spec-level template.
    elements Sequence[Mapping[str, str]]
    List of key/value pairs to pass as parameters into the template
    template ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplate
    Generator template. Used to override the values of the spec-level template.
    elements List<Map<String>>
    List of key/value pairs to pass as parameters into the template
    template Property Map
    Generator template. Used to override the values of the spec-level template.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplate, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateArgs

    metadata Property Map
    Kubernetes object metadata for templated Application.
    spec Property Map
    The application specification.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateMetadata, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateMetadataArgs

    Annotations Dictionary<string, string>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers List<string>
    List of finalizers to apply to the resulting Application.
    Labels Dictionary<string, string>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    Annotations map[string]string
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers []string
    List of finalizers to apply to the resulting Application.
    Labels map[string]string
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    annotations Map<String,String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String,String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application
    annotations {[key: string]: string}
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers string[]
    List of finalizers to apply to the resulting Application.
    labels {[key: string]: string}
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name string
    Name of the resulting Application
    namespace string
    Namespace of the resulting Application
    annotations Mapping[str, str]
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers Sequence[str]
    List of finalizers to apply to the resulting Application.
    labels Mapping[str, str]
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name str
    Name of the resulting Application
    namespace str
    Namespace of the resulting Application
    annotations Map<String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpec, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecArgs

    Destination Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSource>
    Location of the application's manifests or chart.
    SyncPolicy Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    Destination ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecIgnoreDifference
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecInfo
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSource
    Location of the application's manifests or chart.
    SyncPolicy ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Integer
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSource>
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecIgnoreDifference[]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecInfo[]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project string
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSource[]
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignore_differences Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecIgnoreDifference]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecInfo]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project str
    The project the application belongs to. Defaults to default.
    revision_history_limit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSource]
    Location of the application's manifests or chart.
    sync_policy ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination Property Map
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<Property Map>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<Property Map>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<Property Map>
    Location of the application's manifests or chart.
    syncPolicy Property Map
    Controls when and how a sync will be performed.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecDestination, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecDestinationArgs

    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name string
    Name of the target cluster. Can be used instead of server.
    namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name str
    Name of the target cluster. Can be used instead of server.
    namespace str
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server str
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecIgnoreDifference, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecIgnoreDifferenceArgs

    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions List<string>
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers List<string>
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers List<string>
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions []string
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers []string
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers []string
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    group string
    The Kubernetes resource Group to match for.
    jqPathExpressions string[]
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers string[]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind string
    The Kubernetes resource Kind to match for.
    managedFieldsManagers string[]
    List of external controller manager names whose changes to fields should be ignored.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    group str
    The Kubernetes resource Group to match for.
    jq_path_expressions Sequence[str]
    List of JQ path expression strings targeting the field(s) to ignore.
    json_pointers Sequence[str]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind str
    The Kubernetes resource Kind to match for.
    managed_fields_managers Sequence[str]
    List of external controller manager names whose changes to fields should be ignored.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecInfo, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecInfoArgs

    Name string
    Name of the information.
    Value string
    Value of the information.
    Name string
    Name of the information.
    Value string
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.
    name string
    Name of the information.
    value string
    Value of the information.
    name str
    Name of the information.
    value str
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSource, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceArgs

    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceHelm
    Helm specific options.
    Kustomize Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceHelm
    Helm specific options.
    Kustomize ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceKustomize
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceKustomize
    Kustomize specific options.
    path string
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart str
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceKustomize
    Kustomize specific options.
    path str
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref str
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repo_url str
    URL to the repository (Git or Helm) that contains the application manifests.
    target_revision str
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory Property Map
    Path/directory specific options.
    helm Property Map
    Helm specific options.
    kustomize Property Map
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin Property Map
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceDirectory, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryArgs

    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.
    exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse boolean
    Whether to scan a directory recursively for manifests.
    exclude str
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include str
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet Property Map
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnet, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnetArgs

    extVars List<Property Map>
    List of Jsonnet External Variables.
    libs List<String>
    Additional library search dirs.
    tlas List<Property Map>
    List of Jsonnet Top-level Arguments

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnetExtVar, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnetExtVarArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnetTla, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnetTlaArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceHelm, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceHelmArgs

    FileParameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles List<string>
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    FileParameters []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceHelmFileParameter
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceHelmParameter
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles []string
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceHelmFileParameter[]
    File parameters for the helm template.
    ignoreMissingValueFiles boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceHelmParameter[]
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName string
    Helm release name. If omitted it will use the application name.
    skipCrds boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles string[]
    List of Helm value files to use when generating a template.
    values string
    Helm values to be passed to 'helm template', typically defined as a block.
    version string
    The Helm version to use for templating. Accepts either v2 or v3
    file_parameters Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceHelmFileParameter]
    File parameters for the helm template.
    ignore_missing_value_files bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceHelmParameter]
    Helm parameters which are passed to the helm template command upon manifest generation.
    pass_credentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    release_name str
    Helm release name. If omitted it will use the application name.
    skip_crds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    value_files Sequence[str]
    List of Helm value files to use when generating a template.
    values str
    Helm values to be passed to 'helm template', typically defined as a block.
    version str
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<Property Map>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<Property Map>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceHelmFileParameter, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceHelmFileParameterArgs

    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.
    name string
    Name of the Helm parameter.
    path string
    Path to the file containing the values for the Helm parameter.
    name str
    Name of the Helm parameter.
    path str
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceHelmParameter, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceHelmParameterArgs

    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.
    forceString boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name string
    Name of the Helm parameter.
    value string
    Value of the Helm parameter.
    force_string bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name str
    Name of the Helm parameter.
    value str
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceKustomize, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceKustomizeArgs

    CommonAnnotations Dictionary<string, string>
    List of additional annotations to add to rendered manifests.
    CommonLabels Dictionary<string, string>
    List of additional labels to add to rendered manifests.
    Images List<string>
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    CommonAnnotations map[string]string
    List of additional annotations to add to rendered manifests.
    CommonLabels map[string]string
    List of additional labels to add to rendered manifests.
    Images []string
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatch
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String,String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String,String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.
    commonAnnotations {[key: string]: string}
    List of additional annotations to add to rendered manifests.
    commonLabels {[key: string]: string}
    List of additional labels to add to rendered manifests.
    images string[]
    List of Kustomize image override specifications.
    namePrefix string
    Prefix appended to resources for Kustomize apps.
    nameSuffix string
    Suffix appended to resources for Kustomize apps.
    patches ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatch[]
    A list of Kustomize patches to apply.
    version string
    Version of Kustomize to use for rendering manifests.
    common_annotations Mapping[str, str]
    List of additional annotations to add to rendered manifests.
    common_labels Mapping[str, str]
    List of additional labels to add to rendered manifests.
    images Sequence[str]
    List of Kustomize image override specifications.
    name_prefix str
    Prefix appended to resources for Kustomize apps.
    name_suffix str
    Suffix appended to resources for Kustomize apps.
    patches Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatch]
    A list of Kustomize patches to apply.
    version str
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<Property Map>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatch, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatchArgs

    Target Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options Dictionary<string, bool>
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    Target ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options map[string]bool
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Map<String,Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options {[key: string]: boolean}
    Additional options.
    patch string
    Inline Kustomize patch to apply.
    path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Mapping[str, bool]
    Additional options.
    patch str
    Inline Kustomize patch to apply.
    path str
    Path to a file containing the patch to apply.
    target Property Map
    Target(s) to patch
    options Map<Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatchTarget, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatchTargetArgs

    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.
    annotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    group string
    The Kubernetes resource Group to match for.
    kind string
    The Kubernetes resource Kind to match for.
    labelSelector string
    Label selector to use when matching the Kubernetes resource.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    version string
    The Kubernetes resource Version to match for.
    annotation_selector str
    Annotation selector to use when matching the Kubernetes resource.
    group str
    The Kubernetes resource Group to match for.
    kind str
    The Kubernetes resource Kind to match for.
    label_selector str
    Label selector to use when matching the Kubernetes resource.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    version str
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourcePlugin, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourcePluginArgs

    Envs List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    Envs []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourcePluginEnv
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourcePluginEnv[]
    Environment variables passed to the plugin.
    name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourcePluginEnv]
    Environment variables passed to the plugin.
    name str
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<Property Map>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourcePluginEnv, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSourcePluginEnvArgs

    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.
    name string
    Name of the environment variable.
    value string
    Value of the environment variable.
    name str
    Name of the environment variable.
    value str
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicy, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicyArgs

    Automated Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions List<string>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    Automated ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions []string
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions string[]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managed_namespace_metadata ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    sync_options Sequence[str]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated Property Map
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata Property Map
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry Property Map
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicyAutomated, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicyAutomatedArgs

    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty boolean
    Allows apps have zero live resources.
    prune boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allow_empty bool
    Allows apps have zero live resources.
    prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    self_heal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadata, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadataArgs

    Annotations Dictionary<string, string>
    Annotations to apply to the namespace.
    Labels Dictionary<string, string>
    Labels to apply to the namespace.
    Annotations map[string]string
    Annotations to apply to the namespace.
    Labels map[string]string
    Labels to apply to the namespace.
    annotations Map<String,String>
    Annotations to apply to the namespace.
    labels Map<String,String>
    Labels to apply to the namespace.
    annotations {[key: string]: string}
    Annotations to apply to the namespace.
    labels {[key: string]: string}
    Labels to apply to the namespace.
    annotations Mapping[str, str]
    Annotations to apply to the namespace.
    labels Mapping[str, str]
    Labels to apply to the namespace.
    annotations Map<String>
    Annotations to apply to the namespace.
    labels Map<String>
    Labels to apply to the namespace.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetry, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetryArgs

    Backoff Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    Backoff ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit str
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff Property Map
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetryBackoff, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetryBackoffArgs

    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor string
    Factor to multiply the base duration after each failed retry.
    maxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration str
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor str
    Factor to multiply the base duration after each failed retry.
    max_duration str
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequest, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestArgs

    BitbucketServer Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestBitbucketServer
    Fetch pull requests from a repo hosted on a Bitbucket Server.
    Filters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestFilter>
    Filters allow selecting which pull requests to generate for.
    Gitea Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGitea
    Specify the repository from which to fetch the Gitea Pull requests.
    Github Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGithub
    Specify the repository from which to fetch the GitHub Pull requests.
    Gitlab Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGitlab
    Specify the project from which to fetch the GitLab merge requests.
    RequeueAfterSeconds string
    How often to check for changes (in seconds). Default: 30min.
    Template Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplate
    Generator template. Used to override the values of the spec-level template.
    BitbucketServer ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestBitbucketServer
    Fetch pull requests from a repo hosted on a Bitbucket Server.
    Filters []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestFilter
    Filters allow selecting which pull requests to generate for.
    Gitea ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGitea
    Specify the repository from which to fetch the Gitea Pull requests.
    Github ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGithub
    Specify the repository from which to fetch the GitHub Pull requests.
    Gitlab ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGitlab
    Specify the project from which to fetch the GitLab merge requests.
    RequeueAfterSeconds string
    How often to check for changes (in seconds). Default: 30min.
    Template ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplate
    Generator template. Used to override the values of the spec-level template.
    bitbucketServer ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestBitbucketServer
    Fetch pull requests from a repo hosted on a Bitbucket Server.
    filters List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestFilter>
    Filters allow selecting which pull requests to generate for.
    gitea ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGitea
    Specify the repository from which to fetch the Gitea Pull requests.
    github ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGithub
    Specify the repository from which to fetch the GitHub Pull requests.
    gitlab ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGitlab
    Specify the project from which to fetch the GitLab merge requests.
    requeueAfterSeconds String
    How often to check for changes (in seconds). Default: 30min.
    template ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplate
    Generator template. Used to override the values of the spec-level template.
    bitbucketServer ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestBitbucketServer
    Fetch pull requests from a repo hosted on a Bitbucket Server.
    filters ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestFilter[]
    Filters allow selecting which pull requests to generate for.
    gitea ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGitea
    Specify the repository from which to fetch the Gitea Pull requests.
    github ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGithub
    Specify the repository from which to fetch the GitHub Pull requests.
    gitlab ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGitlab
    Specify the project from which to fetch the GitLab merge requests.
    requeueAfterSeconds string
    How often to check for changes (in seconds). Default: 30min.
    template ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplate
    Generator template. Used to override the values of the spec-level template.
    bitbucket_server ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestBitbucketServer
    Fetch pull requests from a repo hosted on a Bitbucket Server.
    filters Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestFilter]
    Filters allow selecting which pull requests to generate for.
    gitea ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGitea
    Specify the repository from which to fetch the Gitea Pull requests.
    github ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGithub
    Specify the repository from which to fetch the GitHub Pull requests.
    gitlab ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGitlab
    Specify the project from which to fetch the GitLab merge requests.
    requeue_after_seconds str
    How often to check for changes (in seconds). Default: 30min.
    template ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplate
    Generator template. Used to override the values of the spec-level template.
    bitbucketServer Property Map
    Fetch pull requests from a repo hosted on a Bitbucket Server.
    filters List<Property Map>
    Filters allow selecting which pull requests to generate for.
    gitea Property Map
    Specify the repository from which to fetch the Gitea Pull requests.
    github Property Map
    Specify the repository from which to fetch the GitHub Pull requests.
    gitlab Property Map
    Specify the project from which to fetch the GitLab merge requests.
    requeueAfterSeconds String
    How often to check for changes (in seconds). Default: 30min.
    template Property Map
    Generator template. Used to override the values of the spec-level template.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestBitbucketServer, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestBitbucketServerArgs

    Api string
    The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest.
    Project string
    Project to scan.
    Repo string
    Repo name to scan.
    BasicAuth Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestBitbucketServerBasicAuth
    Credentials for Basic auth.
    Api string
    The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest.
    Project string
    Project to scan.
    Repo string
    Repo name to scan.
    BasicAuth ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestBitbucketServerBasicAuth
    Credentials for Basic auth.
    api String
    The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest.
    project String
    Project to scan.
    repo String
    Repo name to scan.
    basicAuth ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestBitbucketServerBasicAuth
    Credentials for Basic auth.
    api string
    The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest.
    project string
    Project to scan.
    repo string
    Repo name to scan.
    basicAuth ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestBitbucketServerBasicAuth
    Credentials for Basic auth.
    api str
    The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest.
    project str
    Project to scan.
    repo str
    Repo name to scan.
    basic_auth ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestBitbucketServerBasicAuth
    Credentials for Basic auth.
    api String
    The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest.
    project String
    Project to scan.
    repo String
    Repo name to scan.
    basicAuth Property Map
    Credentials for Basic auth.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestBitbucketServerBasicAuth, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestBitbucketServerBasicAuthArgs

    passwordRef Property Map
    Password (or personal access token) reference.
    username String
    Username for Basic auth.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestBitbucketServerBasicAuthPasswordRef, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestBitbucketServerBasicAuthPasswordRefArgs

    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.
    key string
    Key containing information in Kubernetes Secret.
    secretName string
    Name of Kubernetes Secret.
    key str
    Key containing information in Kubernetes Secret.
    secret_name str
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestFilter, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestFilterArgs

    BranchMatch string
    A regex which must match the branch name.
    BranchMatch string
    A regex which must match the branch name.
    branchMatch String
    A regex which must match the branch name.
    branchMatch string
    A regex which must match the branch name.
    branch_match str
    A regex which must match the branch name.
    branchMatch String
    A regex which must match the branch name.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGitea, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGiteaArgs

    Api string
    The Gitea API URL to talk to.
    Owner string
    Gitea org or user to scan.
    Repo string
    Gitea repo name to scan.
    Insecure bool
    Allow insecure tls, for self-signed certificates; default: false.
    TokenRef Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGiteaTokenRef
    Authentication token reference.
    Api string
    The Gitea API URL to talk to.
    Owner string
    Gitea org or user to scan.
    Repo string
    Gitea repo name to scan.
    Insecure bool
    Allow insecure tls, for self-signed certificates; default: false.
    TokenRef ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGiteaTokenRef
    Authentication token reference.
    api String
    The Gitea API URL to talk to.
    owner String
    Gitea org or user to scan.
    repo String
    Gitea repo name to scan.
    insecure Boolean
    Allow insecure tls, for self-signed certificates; default: false.
    tokenRef ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGiteaTokenRef
    Authentication token reference.
    api string
    The Gitea API URL to talk to.
    owner string
    Gitea org or user to scan.
    repo string
    Gitea repo name to scan.
    insecure boolean
    Allow insecure tls, for self-signed certificates; default: false.
    tokenRef ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGiteaTokenRef
    Authentication token reference.
    api str
    The Gitea API URL to talk to.
    owner str
    Gitea org or user to scan.
    repo str
    Gitea repo name to scan.
    insecure bool
    Allow insecure tls, for self-signed certificates; default: false.
    token_ref ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGiteaTokenRef
    Authentication token reference.
    api String
    The Gitea API URL to talk to.
    owner String
    Gitea org or user to scan.
    repo String
    Gitea repo name to scan.
    insecure Boolean
    Allow insecure tls, for self-signed certificates; default: false.
    tokenRef Property Map
    Authentication token reference.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGiteaTokenRef, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGiteaTokenRefArgs

    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.
    key string
    Key containing information in Kubernetes Secret.
    secretName string
    Name of Kubernetes Secret.
    key str
    Key containing information in Kubernetes Secret.
    secret_name str
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGithub, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGithubArgs

    Owner string
    GitHub org or user to scan.
    Repo string
    GitHub repo name to scan.
    Api string
    The GitHub API URL to talk to. Default https://api.github.com/.
    AppSecretName string
    Reference to a GitHub App repo-creds secret with permission to access pull requests.
    Labels List<string>
    Labels is used to filter the PRs that you want to target.
    TokenRef Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGithubTokenRef
    Authentication token reference.
    Owner string
    GitHub org or user to scan.
    Repo string
    GitHub repo name to scan.
    Api string
    The GitHub API URL to talk to. Default https://api.github.com/.
    AppSecretName string
    Reference to a GitHub App repo-creds secret with permission to access pull requests.
    Labels []string
    Labels is used to filter the PRs that you want to target.
    TokenRef ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGithubTokenRef
    Authentication token reference.
    owner String
    GitHub org or user to scan.
    repo String
    GitHub repo name to scan.
    api String
    The GitHub API URL to talk to. Default https://api.github.com/.
    appSecretName String
    Reference to a GitHub App repo-creds secret with permission to access pull requests.
    labels List<String>
    Labels is used to filter the PRs that you want to target.
    tokenRef ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGithubTokenRef
    Authentication token reference.
    owner string
    GitHub org or user to scan.
    repo string
    GitHub repo name to scan.
    api string
    The GitHub API URL to talk to. Default https://api.github.com/.
    appSecretName string
    Reference to a GitHub App repo-creds secret with permission to access pull requests.
    labels string[]
    Labels is used to filter the PRs that you want to target.
    tokenRef ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGithubTokenRef
    Authentication token reference.
    owner str
    GitHub org or user to scan.
    repo str
    GitHub repo name to scan.
    api str
    The GitHub API URL to talk to. Default https://api.github.com/.
    app_secret_name str
    Reference to a GitHub App repo-creds secret with permission to access pull requests.
    labels Sequence[str]
    Labels is used to filter the PRs that you want to target.
    token_ref ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGithubTokenRef
    Authentication token reference.
    owner String
    GitHub org or user to scan.
    repo String
    GitHub repo name to scan.
    api String
    The GitHub API URL to talk to. Default https://api.github.com/.
    appSecretName String
    Reference to a GitHub App repo-creds secret with permission to access pull requests.
    labels List<String>
    Labels is used to filter the PRs that you want to target.
    tokenRef Property Map
    Authentication token reference.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGithubTokenRef, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGithubTokenRefArgs

    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.
    key string
    Key containing information in Kubernetes Secret.
    secretName string
    Name of Kubernetes Secret.
    key str
    Key containing information in Kubernetes Secret.
    secret_name str
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGitlab, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGitlabArgs

    Project string
    GitLab project to scan.
    Api string
    The GitLab API URL to talk to. If blank, uses https://gitlab.com/.
    Labels List<string>
    Labels is used to filter the PRs that you want to target.
    PullRequestState string
    additional MRs filter to get only those with a certain state. Default: "" (all states).
    TokenRef Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGitlabTokenRef
    Authentication token reference.
    Project string
    GitLab project to scan.
    Api string
    The GitLab API URL to talk to. If blank, uses https://gitlab.com/.
    Labels []string
    Labels is used to filter the PRs that you want to target.
    PullRequestState string
    additional MRs filter to get only those with a certain state. Default: "" (all states).
    TokenRef ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGitlabTokenRef
    Authentication token reference.
    project String
    GitLab project to scan.
    api String
    The GitLab API URL to talk to. If blank, uses https://gitlab.com/.
    labels List<String>
    Labels is used to filter the PRs that you want to target.
    pullRequestState String
    additional MRs filter to get only those with a certain state. Default: "" (all states).
    tokenRef ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGitlabTokenRef
    Authentication token reference.
    project string
    GitLab project to scan.
    api string
    The GitLab API URL to talk to. If blank, uses https://gitlab.com/.
    labels string[]
    Labels is used to filter the PRs that you want to target.
    pullRequestState string
    additional MRs filter to get only those with a certain state. Default: "" (all states).
    tokenRef ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGitlabTokenRef
    Authentication token reference.
    project str
    GitLab project to scan.
    api str
    The GitLab API URL to talk to. If blank, uses https://gitlab.com/.
    labels Sequence[str]
    Labels is used to filter the PRs that you want to target.
    pull_request_state str
    additional MRs filter to get only those with a certain state. Default: "" (all states).
    token_ref ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGitlabTokenRef
    Authentication token reference.
    project String
    GitLab project to scan.
    api String
    The GitLab API URL to talk to. If blank, uses https://gitlab.com/.
    labels List<String>
    Labels is used to filter the PRs that you want to target.
    pullRequestState String
    additional MRs filter to get only those with a certain state. Default: "" (all states).
    tokenRef Property Map
    Authentication token reference.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGitlabTokenRef, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestGitlabTokenRefArgs

    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.
    key string
    Key containing information in Kubernetes Secret.
    secretName string
    Name of Kubernetes Secret.
    key str
    Key containing information in Kubernetes Secret.
    secret_name str
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplate, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateArgs

    metadata Property Map
    Kubernetes object metadata for templated Application.
    spec Property Map
    The application specification.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateMetadata, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateMetadataArgs

    Annotations Dictionary<string, string>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers List<string>
    List of finalizers to apply to the resulting Application.
    Labels Dictionary<string, string>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    Annotations map[string]string
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers []string
    List of finalizers to apply to the resulting Application.
    Labels map[string]string
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    annotations Map<String,String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String,String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application
    annotations {[key: string]: string}
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers string[]
    List of finalizers to apply to the resulting Application.
    labels {[key: string]: string}
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name string
    Name of the resulting Application
    namespace string
    Namespace of the resulting Application
    annotations Mapping[str, str]
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers Sequence[str]
    List of finalizers to apply to the resulting Application.
    labels Mapping[str, str]
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name str
    Name of the resulting Application
    namespace str
    Namespace of the resulting Application
    annotations Map<String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpec, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecArgs

    Destination Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSource>
    Location of the application's manifests or chart.
    SyncPolicy Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    Destination ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecIgnoreDifference
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecInfo
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSource
    Location of the application's manifests or chart.
    SyncPolicy ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Integer
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSource>
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecIgnoreDifference[]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecInfo[]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project string
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSource[]
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignore_differences Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecIgnoreDifference]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecInfo]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project str
    The project the application belongs to. Defaults to default.
    revision_history_limit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSource]
    Location of the application's manifests or chart.
    sync_policy ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination Property Map
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<Property Map>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<Property Map>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<Property Map>
    Location of the application's manifests or chart.
    syncPolicy Property Map
    Controls when and how a sync will be performed.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecDestination, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecDestinationArgs

    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name string
    Name of the target cluster. Can be used instead of server.
    namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name str
    Name of the target cluster. Can be used instead of server.
    namespace str
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server str
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecIgnoreDifference, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecIgnoreDifferenceArgs

    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions List<string>
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers List<string>
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers List<string>
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions []string
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers []string
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers []string
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    group string
    The Kubernetes resource Group to match for.
    jqPathExpressions string[]
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers string[]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind string
    The Kubernetes resource Kind to match for.
    managedFieldsManagers string[]
    List of external controller manager names whose changes to fields should be ignored.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    group str
    The Kubernetes resource Group to match for.
    jq_path_expressions Sequence[str]
    List of JQ path expression strings targeting the field(s) to ignore.
    json_pointers Sequence[str]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind str
    The Kubernetes resource Kind to match for.
    managed_fields_managers Sequence[str]
    List of external controller manager names whose changes to fields should be ignored.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecInfo, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecInfoArgs

    Name string
    Name of the information.
    Value string
    Value of the information.
    Name string
    Name of the information.
    Value string
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.
    name string
    Name of the information.
    value string
    Value of the information.
    name str
    Name of the information.
    value str
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSource, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceArgs

    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelm
    Helm specific options.
    Kustomize Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelm
    Helm specific options.
    Kustomize ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomize
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomize
    Kustomize specific options.
    path string
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart str
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomize
    Kustomize specific options.
    path str
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref str
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repo_url str
    URL to the repository (Git or Helm) that contains the application manifests.
    target_revision str
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory Property Map
    Path/directory specific options.
    helm Property Map
    Helm specific options.
    kustomize Property Map
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin Property Map
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectory, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryArgs

    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.
    exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse boolean
    Whether to scan a directory recursively for manifests.
    exclude str
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include str
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet Property Map
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnet, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetArgs

    extVars List<Property Map>
    List of Jsonnet External Variables.
    libs List<String>
    Additional library search dirs.
    tlas List<Property Map>
    List of Jsonnet Top-level Arguments

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetExtVar, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetExtVarArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetTla, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetTlaArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelm, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmArgs

    FileParameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles List<string>
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    FileParameters []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmFileParameter
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmParameter
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles []string
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmFileParameter[]
    File parameters for the helm template.
    ignoreMissingValueFiles boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmParameter[]
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName string
    Helm release name. If omitted it will use the application name.
    skipCrds boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles string[]
    List of Helm value files to use when generating a template.
    values string
    Helm values to be passed to 'helm template', typically defined as a block.
    version string
    The Helm version to use for templating. Accepts either v2 or v3
    file_parameters Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmFileParameter]
    File parameters for the helm template.
    ignore_missing_value_files bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmParameter]
    Helm parameters which are passed to the helm template command upon manifest generation.
    pass_credentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    release_name str
    Helm release name. If omitted it will use the application name.
    skip_crds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    value_files Sequence[str]
    List of Helm value files to use when generating a template.
    values str
    Helm values to be passed to 'helm template', typically defined as a block.
    version str
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<Property Map>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<Property Map>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmFileParameter, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmFileParameterArgs

    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.
    name string
    Name of the Helm parameter.
    path string
    Path to the file containing the values for the Helm parameter.
    name str
    Name of the Helm parameter.
    path str
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmParameter, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmParameterArgs

    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.
    forceString boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name string
    Name of the Helm parameter.
    value string
    Value of the Helm parameter.
    force_string bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name str
    Name of the Helm parameter.
    value str
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomize, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizeArgs

    CommonAnnotations Dictionary<string, string>
    List of additional annotations to add to rendered manifests.
    CommonLabels Dictionary<string, string>
    List of additional labels to add to rendered manifests.
    Images List<string>
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    CommonAnnotations map[string]string
    List of additional annotations to add to rendered manifests.
    CommonLabels map[string]string
    List of additional labels to add to rendered manifests.
    Images []string
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatch
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String,String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String,String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.
    commonAnnotations {[key: string]: string}
    List of additional annotations to add to rendered manifests.
    commonLabels {[key: string]: string}
    List of additional labels to add to rendered manifests.
    images string[]
    List of Kustomize image override specifications.
    namePrefix string
    Prefix appended to resources for Kustomize apps.
    nameSuffix string
    Suffix appended to resources for Kustomize apps.
    patches ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatch[]
    A list of Kustomize patches to apply.
    version string
    Version of Kustomize to use for rendering manifests.
    common_annotations Mapping[str, str]
    List of additional annotations to add to rendered manifests.
    common_labels Mapping[str, str]
    List of additional labels to add to rendered manifests.
    images Sequence[str]
    List of Kustomize image override specifications.
    name_prefix str
    Prefix appended to resources for Kustomize apps.
    name_suffix str
    Suffix appended to resources for Kustomize apps.
    patches Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatch]
    A list of Kustomize patches to apply.
    version str
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<Property Map>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatch, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatchArgs

    Target Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options Dictionary<string, bool>
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    Target ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options map[string]bool
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Map<String,Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options {[key: string]: boolean}
    Additional options.
    patch string
    Inline Kustomize patch to apply.
    path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Mapping[str, bool]
    Additional options.
    patch str
    Inline Kustomize patch to apply.
    path str
    Path to a file containing the patch to apply.
    target Property Map
    Target(s) to patch
    options Map<Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatchTarget, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatchTargetArgs

    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.
    annotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    group string
    The Kubernetes resource Group to match for.
    kind string
    The Kubernetes resource Kind to match for.
    labelSelector string
    Label selector to use when matching the Kubernetes resource.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    version string
    The Kubernetes resource Version to match for.
    annotation_selector str
    Annotation selector to use when matching the Kubernetes resource.
    group str
    The Kubernetes resource Group to match for.
    kind str
    The Kubernetes resource Kind to match for.
    label_selector str
    Label selector to use when matching the Kubernetes resource.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    version str
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePlugin, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePluginArgs

    Envs List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    Envs []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePluginEnv
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePluginEnv[]
    Environment variables passed to the plugin.
    name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePluginEnv]
    Environment variables passed to the plugin.
    name str
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<Property Map>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePluginEnv, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePluginEnvArgs

    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.
    name string
    Name of the environment variable.
    value string
    Value of the environment variable.
    name str
    Name of the environment variable.
    value str
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicy, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyArgs

    Automated Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions List<string>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    Automated ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions []string
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions string[]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managed_namespace_metadata ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    sync_options Sequence[str]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated Property Map
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata Property Map
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry Property Map
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyAutomated, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyAutomatedArgs

    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty boolean
    Allows apps have zero live resources.
    prune boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allow_empty bool
    Allows apps have zero live resources.
    prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    self_heal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyManagedNamespaceMetadata, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyManagedNamespaceMetadataArgs

    Annotations Dictionary<string, string>
    Annotations to apply to the namespace.
    Labels Dictionary<string, string>
    Labels to apply to the namespace.
    Annotations map[string]string
    Annotations to apply to the namespace.
    Labels map[string]string
    Labels to apply to the namespace.
    annotations Map<String,String>
    Annotations to apply to the namespace.
    labels Map<String,String>
    Labels to apply to the namespace.
    annotations {[key: string]: string}
    Annotations to apply to the namespace.
    labels {[key: string]: string}
    Labels to apply to the namespace.
    annotations Mapping[str, str]
    Annotations to apply to the namespace.
    labels Mapping[str, str]
    Labels to apply to the namespace.
    annotations Map<String>
    Annotations to apply to the namespace.
    labels Map<String>
    Labels to apply to the namespace.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetry, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetryArgs

    Backoff Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    Backoff ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit str
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff Property Map
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetryBackoff, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetryBackoffArgs

    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor string
    Factor to multiply the base duration after each failed retry.
    maxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration str
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor str
    Factor to multiply the base duration after each failed retry.
    max_duration str
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProvider, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderArgs

    AzureDevops Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderAzureDevops
    Uses the Azure DevOps API to look up eligible repositories based on a team project within an Azure DevOps organization.
    BitbucketCloud Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderBitbucketCloud
    Uses the Bitbucket API V2 to scan a workspace in bitbucket.org.
    BitbucketServer Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderBitbucketServer
    Use the Bitbucket Server API (1.0) to scan repos in a project.
    CloneProtocol string
    Which protocol to use for the SCM URL. Default is provider-specific but ssh if possible. Not all providers necessarily support all protocols.
    Filters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderFilter>
    Filters for which repos should be considered.
    Gitea Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGitea
    Gitea mode uses the Gitea API to scan organizations in your instance.
    Github Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGithub
    Uses the GitHub API to scan an organization in either github.com or GitHub Enterprise.
    Gitlab Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGitlab
    Uses the GitLab API to scan and organization in either gitlab.com or self-hosted GitLab.
    RequeueAfterSeconds string
    How often to check for changes (in seconds). Default: 3min.
    Template Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplate
    Generator template. Used to override the values of the spec-level template.
    AzureDevops ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderAzureDevops
    Uses the Azure DevOps API to look up eligible repositories based on a team project within an Azure DevOps organization.
    BitbucketCloud ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderBitbucketCloud
    Uses the Bitbucket API V2 to scan a workspace in bitbucket.org.
    BitbucketServer ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderBitbucketServer
    Use the Bitbucket Server API (1.0) to scan repos in a project.
    CloneProtocol string
    Which protocol to use for the SCM URL. Default is provider-specific but ssh if possible. Not all providers necessarily support all protocols.
    Filters []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderFilter
    Filters for which repos should be considered.
    Gitea ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGitea
    Gitea mode uses the Gitea API to scan organizations in your instance.
    Github ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGithub
    Uses the GitHub API to scan an organization in either github.com or GitHub Enterprise.
    Gitlab ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGitlab
    Uses the GitLab API to scan and organization in either gitlab.com or self-hosted GitLab.
    RequeueAfterSeconds string
    How often to check for changes (in seconds). Default: 3min.
    Template ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplate
    Generator template. Used to override the values of the spec-level template.
    azureDevops ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderAzureDevops
    Uses the Azure DevOps API to look up eligible repositories based on a team project within an Azure DevOps organization.
    bitbucketCloud ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderBitbucketCloud
    Uses the Bitbucket API V2 to scan a workspace in bitbucket.org.
    bitbucketServer ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderBitbucketServer
    Use the Bitbucket Server API (1.0) to scan repos in a project.
    cloneProtocol String
    Which protocol to use for the SCM URL. Default is provider-specific but ssh if possible. Not all providers necessarily support all protocols.
    filters List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderFilter>
    Filters for which repos should be considered.
    gitea ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGitea
    Gitea mode uses the Gitea API to scan organizations in your instance.
    github ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGithub
    Uses the GitHub API to scan an organization in either github.com or GitHub Enterprise.
    gitlab ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGitlab
    Uses the GitLab API to scan and organization in either gitlab.com or self-hosted GitLab.
    requeueAfterSeconds String
    How often to check for changes (in seconds). Default: 3min.
    template ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplate
    Generator template. Used to override the values of the spec-level template.
    azureDevops ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderAzureDevops
    Uses the Azure DevOps API to look up eligible repositories based on a team project within an Azure DevOps organization.
    bitbucketCloud ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderBitbucketCloud
    Uses the Bitbucket API V2 to scan a workspace in bitbucket.org.
    bitbucketServer ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderBitbucketServer
    Use the Bitbucket Server API (1.0) to scan repos in a project.
    cloneProtocol string
    Which protocol to use for the SCM URL. Default is provider-specific but ssh if possible. Not all providers necessarily support all protocols.
    filters ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderFilter[]
    Filters for which repos should be considered.
    gitea ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGitea
    Gitea mode uses the Gitea API to scan organizations in your instance.
    github ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGithub
    Uses the GitHub API to scan an organization in either github.com or GitHub Enterprise.
    gitlab ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGitlab
    Uses the GitLab API to scan and organization in either gitlab.com or self-hosted GitLab.
    requeueAfterSeconds string
    How often to check for changes (in seconds). Default: 3min.
    template ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplate
    Generator template. Used to override the values of the spec-level template.
    azure_devops ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderAzureDevops
    Uses the Azure DevOps API to look up eligible repositories based on a team project within an Azure DevOps organization.
    bitbucket_cloud ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderBitbucketCloud
    Uses the Bitbucket API V2 to scan a workspace in bitbucket.org.
    bitbucket_server ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderBitbucketServer
    Use the Bitbucket Server API (1.0) to scan repos in a project.
    clone_protocol str
    Which protocol to use for the SCM URL. Default is provider-specific but ssh if possible. Not all providers necessarily support all protocols.
    filters Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderFilter]
    Filters for which repos should be considered.
    gitea ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGitea
    Gitea mode uses the Gitea API to scan organizations in your instance.
    github ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGithub
    Uses the GitHub API to scan an organization in either github.com or GitHub Enterprise.
    gitlab ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGitlab
    Uses the GitLab API to scan and organization in either gitlab.com or self-hosted GitLab.
    requeue_after_seconds str
    How often to check for changes (in seconds). Default: 3min.
    template ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplate
    Generator template. Used to override the values of the spec-level template.
    azureDevops Property Map
    Uses the Azure DevOps API to look up eligible repositories based on a team project within an Azure DevOps organization.
    bitbucketCloud Property Map
    Uses the Bitbucket API V2 to scan a workspace in bitbucket.org.
    bitbucketServer Property Map
    Use the Bitbucket Server API (1.0) to scan repos in a project.
    cloneProtocol String
    Which protocol to use for the SCM URL. Default is provider-specific but ssh if possible. Not all providers necessarily support all protocols.
    filters List<Property Map>
    Filters for which repos should be considered.
    gitea Property Map
    Gitea mode uses the Gitea API to scan organizations in your instance.
    github Property Map
    Uses the GitHub API to scan an organization in either github.com or GitHub Enterprise.
    gitlab Property Map
    Uses the GitLab API to scan and organization in either gitlab.com or self-hosted GitLab.
    requeueAfterSeconds String
    How often to check for changes (in seconds). Default: 3min.
    template Property Map
    Generator template. Used to override the values of the spec-level template.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderAzureDevops, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderAzureDevopsArgs

    Organization string
    Azure Devops organization. E.g. "my-organization".
    TeamProject string
    Azure Devops team project. E.g. "my-team".
    AccessTokenRef Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderAzureDevopsAccessTokenRef
    The Personal Access Token (PAT) to use when connecting.
    AllBranches bool
    Scan all branches instead of just the default branch.
    Api string
    The URL to Azure DevOps. Defaults to https://dev.azure.com.
    Organization string
    Azure Devops organization. E.g. "my-organization".
    TeamProject string
    Azure Devops team project. E.g. "my-team".
    AccessTokenRef ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderAzureDevopsAccessTokenRef
    The Personal Access Token (PAT) to use when connecting.
    AllBranches bool
    Scan all branches instead of just the default branch.
    Api string
    The URL to Azure DevOps. Defaults to https://dev.azure.com.
    organization String
    Azure Devops organization. E.g. "my-organization".
    teamProject String
    Azure Devops team project. E.g. "my-team".
    accessTokenRef ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderAzureDevopsAccessTokenRef
    The Personal Access Token (PAT) to use when connecting.
    allBranches Boolean
    Scan all branches instead of just the default branch.
    api String
    The URL to Azure DevOps. Defaults to https://dev.azure.com.
    organization string
    Azure Devops organization. E.g. "my-organization".
    teamProject string
    Azure Devops team project. E.g. "my-team".
    accessTokenRef ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderAzureDevopsAccessTokenRef
    The Personal Access Token (PAT) to use when connecting.
    allBranches boolean
    Scan all branches instead of just the default branch.
    api string
    The URL to Azure DevOps. Defaults to https://dev.azure.com.
    organization str
    Azure Devops organization. E.g. "my-organization".
    team_project str
    Azure Devops team project. E.g. "my-team".
    access_token_ref ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderAzureDevopsAccessTokenRef
    The Personal Access Token (PAT) to use when connecting.
    all_branches bool
    Scan all branches instead of just the default branch.
    api str
    The URL to Azure DevOps. Defaults to https://dev.azure.com.
    organization String
    Azure Devops organization. E.g. "my-organization".
    teamProject String
    Azure Devops team project. E.g. "my-team".
    accessTokenRef Property Map
    The Personal Access Token (PAT) to use when connecting.
    allBranches Boolean
    Scan all branches instead of just the default branch.
    api String
    The URL to Azure DevOps. Defaults to https://dev.azure.com.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderAzureDevopsAccessTokenRef, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderAzureDevopsAccessTokenRefArgs

    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.
    key string
    Key containing information in Kubernetes Secret.
    secretName string
    Name of Kubernetes Secret.
    key str
    Key containing information in Kubernetes Secret.
    secret_name str
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderBitbucketCloud, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderBitbucketCloudArgs

    Owner string
    Bitbucket workspace to scan.
    User string
    Bitbucket user to use when authenticating. Should have a "member" role to be able to read all repositories and branches.
    AllBranches bool
    Scan all branches instead of just the default branch.
    AppPasswordRef Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderBitbucketCloudAppPasswordRef
    The app password to use for the user. See: https://support.atlassian.com/bitbucket-cloud/docs/app-passwords/.
    Owner string
    Bitbucket workspace to scan.
    User string
    Bitbucket user to use when authenticating. Should have a "member" role to be able to read all repositories and branches.
    AllBranches bool
    Scan all branches instead of just the default branch.
    AppPasswordRef ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderBitbucketCloudAppPasswordRef
    The app password to use for the user. See: https://support.atlassian.com/bitbucket-cloud/docs/app-passwords/.
    owner String
    Bitbucket workspace to scan.
    user String
    Bitbucket user to use when authenticating. Should have a "member" role to be able to read all repositories and branches.
    allBranches Boolean
    Scan all branches instead of just the default branch.
    appPasswordRef ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderBitbucketCloudAppPasswordRef
    The app password to use for the user. See: https://support.atlassian.com/bitbucket-cloud/docs/app-passwords/.
    owner string
    Bitbucket workspace to scan.
    user string
    Bitbucket user to use when authenticating. Should have a "member" role to be able to read all repositories and branches.
    allBranches boolean
    Scan all branches instead of just the default branch.
    appPasswordRef ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderBitbucketCloudAppPasswordRef
    The app password to use for the user. See: https://support.atlassian.com/bitbucket-cloud/docs/app-passwords/.
    owner str
    Bitbucket workspace to scan.
    user str
    Bitbucket user to use when authenticating. Should have a "member" role to be able to read all repositories and branches.
    all_branches bool
    Scan all branches instead of just the default branch.
    app_password_ref ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderBitbucketCloudAppPasswordRef
    The app password to use for the user. See: https://support.atlassian.com/bitbucket-cloud/docs/app-passwords/.
    owner String
    Bitbucket workspace to scan.
    user String
    Bitbucket user to use when authenticating. Should have a "member" role to be able to read all repositories and branches.
    allBranches Boolean
    Scan all branches instead of just the default branch.
    appPasswordRef Property Map
    The app password to use for the user. See: https://support.atlassian.com/bitbucket-cloud/docs/app-passwords/.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderBitbucketCloudAppPasswordRef, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderBitbucketCloudAppPasswordRefArgs

    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.
    key string
    Key containing information in Kubernetes Secret.
    secretName string
    Name of Kubernetes Secret.
    key str
    Key containing information in Kubernetes Secret.
    secret_name str
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderBitbucketServer, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderBitbucketServerArgs

    Api string
    The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest.
    Project string
    Project to scan.
    AllBranches bool
    Scan all branches instead of just the default branch.
    BasicAuth Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderBitbucketServerBasicAuth
    Credentials for Basic auth.
    Api string
    The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest.
    Project string
    Project to scan.
    AllBranches bool
    Scan all branches instead of just the default branch.
    BasicAuth ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderBitbucketServerBasicAuth
    Credentials for Basic auth.
    api String
    The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest.
    project String
    Project to scan.
    allBranches Boolean
    Scan all branches instead of just the default branch.
    basicAuth ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderBitbucketServerBasicAuth
    Credentials for Basic auth.
    api string
    The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest.
    project string
    Project to scan.
    allBranches boolean
    Scan all branches instead of just the default branch.
    basicAuth ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderBitbucketServerBasicAuth
    Credentials for Basic auth.
    api str
    The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest.
    project str
    Project to scan.
    all_branches bool
    Scan all branches instead of just the default branch.
    basic_auth ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderBitbucketServerBasicAuth
    Credentials for Basic auth.
    api String
    The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest.
    project String
    Project to scan.
    allBranches Boolean
    Scan all branches instead of just the default branch.
    basicAuth Property Map
    Credentials for Basic auth.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderBitbucketServerBasicAuth, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderBitbucketServerBasicAuthArgs

    passwordRef Property Map
    Password (or personal access token) reference.
    username String
    Username for Basic auth.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderBitbucketServerBasicAuthPasswordRef, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderBitbucketServerBasicAuthPasswordRefArgs

    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.
    key string
    Key containing information in Kubernetes Secret.
    secretName string
    Name of Kubernetes Secret.
    key str
    Key containing information in Kubernetes Secret.
    secret_name str
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderFilter, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderFilterArgs

    BranchMatch string
    A regex which must match the branch name.
    LabelMatch string
    A regex which must match at least one label.
    PathsDoNotExists List<string>
    An array of paths, all of which must not exist.
    PathsExists List<string>
    An array of paths, all of which must exist.
    RepositoryMatch string
    A regex for repo names.
    BranchMatch string
    A regex which must match the branch name.
    LabelMatch string
    A regex which must match at least one label.
    PathsDoNotExists []string
    An array of paths, all of which must not exist.
    PathsExists []string
    An array of paths, all of which must exist.
    RepositoryMatch string
    A regex for repo names.
    branchMatch String
    A regex which must match the branch name.
    labelMatch String
    A regex which must match at least one label.
    pathsDoNotExists List<String>
    An array of paths, all of which must not exist.
    pathsExists List<String>
    An array of paths, all of which must exist.
    repositoryMatch String
    A regex for repo names.
    branchMatch string
    A regex which must match the branch name.
    labelMatch string
    A regex which must match at least one label.
    pathsDoNotExists string[]
    An array of paths, all of which must not exist.
    pathsExists string[]
    An array of paths, all of which must exist.
    repositoryMatch string
    A regex for repo names.
    branch_match str
    A regex which must match the branch name.
    label_match str
    A regex which must match at least one label.
    paths_do_not_exists Sequence[str]
    An array of paths, all of which must not exist.
    paths_exists Sequence[str]
    An array of paths, all of which must exist.
    repository_match str
    A regex for repo names.
    branchMatch String
    A regex which must match the branch name.
    labelMatch String
    A regex which must match at least one label.
    pathsDoNotExists List<String>
    An array of paths, all of which must not exist.
    pathsExists List<String>
    An array of paths, all of which must exist.
    repositoryMatch String
    A regex for repo names.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGitea, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGiteaArgs

    Owner string
    Gitea organization or user to scan.
    AllBranches bool
    Scan all branches instead of just the default branch.
    Api string
    The Gitea URL to talk to. For example https://gitea.mydomain.com/.
    Insecure bool
    Allow self-signed TLS / Certificates.
    TokenRef Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGiteaTokenRef
    Authentication token reference.
    Owner string
    Gitea organization or user to scan.
    AllBranches bool
    Scan all branches instead of just the default branch.
    Api string
    The Gitea URL to talk to. For example https://gitea.mydomain.com/.
    Insecure bool
    Allow self-signed TLS / Certificates.
    TokenRef ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGiteaTokenRef
    Authentication token reference.
    owner String
    Gitea organization or user to scan.
    allBranches Boolean
    Scan all branches instead of just the default branch.
    api String
    The Gitea URL to talk to. For example https://gitea.mydomain.com/.
    insecure Boolean
    Allow self-signed TLS / Certificates.
    tokenRef ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGiteaTokenRef
    Authentication token reference.
    owner string
    Gitea organization or user to scan.
    allBranches boolean
    Scan all branches instead of just the default branch.
    api string
    The Gitea URL to talk to. For example https://gitea.mydomain.com/.
    insecure boolean
    Allow self-signed TLS / Certificates.
    tokenRef ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGiteaTokenRef
    Authentication token reference.
    owner str
    Gitea organization or user to scan.
    all_branches bool
    Scan all branches instead of just the default branch.
    api str
    The Gitea URL to talk to. For example https://gitea.mydomain.com/.
    insecure bool
    Allow self-signed TLS / Certificates.
    token_ref ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGiteaTokenRef
    Authentication token reference.
    owner String
    Gitea organization or user to scan.
    allBranches Boolean
    Scan all branches instead of just the default branch.
    api String
    The Gitea URL to talk to. For example https://gitea.mydomain.com/.
    insecure Boolean
    Allow self-signed TLS / Certificates.
    tokenRef Property Map
    Authentication token reference.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGiteaTokenRef, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGiteaTokenRefArgs

    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.
    key string
    Key containing information in Kubernetes Secret.
    secretName string
    Name of Kubernetes Secret.
    key str
    Key containing information in Kubernetes Secret.
    secret_name str
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGithub, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGithubArgs

    Organization string
    GitHub org to scan.
    AllBranches bool
    If true, scan every branch of every repository. If false, scan only the default branch.
    Api string
    The GitHub API URL to talk to. Default https://api.github.com/.
    AppSecretName string
    Reference to a GitHub App repo-creds secret. Uses a GitHub App to access the API instead of a PAT.
    TokenRef Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGithubTokenRef
    Authentication token reference.
    Organization string
    GitHub org to scan.
    AllBranches bool
    If true, scan every branch of every repository. If false, scan only the default branch.
    Api string
    The GitHub API URL to talk to. Default https://api.github.com/.
    AppSecretName string
    Reference to a GitHub App repo-creds secret. Uses a GitHub App to access the API instead of a PAT.
    TokenRef ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGithubTokenRef
    Authentication token reference.
    organization String
    GitHub org to scan.
    allBranches Boolean
    If true, scan every branch of every repository. If false, scan only the default branch.
    api String
    The GitHub API URL to talk to. Default https://api.github.com/.
    appSecretName String
    Reference to a GitHub App repo-creds secret. Uses a GitHub App to access the API instead of a PAT.
    tokenRef ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGithubTokenRef
    Authentication token reference.
    organization string
    GitHub org to scan.
    allBranches boolean
    If true, scan every branch of every repository. If false, scan only the default branch.
    api string
    The GitHub API URL to talk to. Default https://api.github.com/.
    appSecretName string
    Reference to a GitHub App repo-creds secret. Uses a GitHub App to access the API instead of a PAT.
    tokenRef ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGithubTokenRef
    Authentication token reference.
    organization str
    GitHub org to scan.
    all_branches bool
    If true, scan every branch of every repository. If false, scan only the default branch.
    api str
    The GitHub API URL to talk to. Default https://api.github.com/.
    app_secret_name str
    Reference to a GitHub App repo-creds secret. Uses a GitHub App to access the API instead of a PAT.
    token_ref ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGithubTokenRef
    Authentication token reference.
    organization String
    GitHub org to scan.
    allBranches Boolean
    If true, scan every branch of every repository. If false, scan only the default branch.
    api String
    The GitHub API URL to talk to. Default https://api.github.com/.
    appSecretName String
    Reference to a GitHub App repo-creds secret. Uses a GitHub App to access the API instead of a PAT.
    tokenRef Property Map
    Authentication token reference.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGithubTokenRef, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGithubTokenRefArgs

    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.
    key string
    Key containing information in Kubernetes Secret.
    secretName string
    Name of Kubernetes Secret.
    key str
    Key containing information in Kubernetes Secret.
    secret_name str
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGitlab, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGitlabArgs

    Group string
    Gitlab group to scan. You can use either the project id (recommended) or the full namespaced path.
    AllBranches bool
    If true, scan every branch of every repository. If false, scan only the default branch.
    Api string
    The Gitlab API URL to talk to.
    IncludeSubgroups bool
    Recurse through subgroups (true) or scan only the base group (false). Defaults to false.
    TokenRef Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGitlabTokenRef
    Authentication token reference.
    Group string
    Gitlab group to scan. You can use either the project id (recommended) or the full namespaced path.
    AllBranches bool
    If true, scan every branch of every repository. If false, scan only the default branch.
    Api string
    The Gitlab API URL to talk to.
    IncludeSubgroups bool
    Recurse through subgroups (true) or scan only the base group (false). Defaults to false.
    TokenRef ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGitlabTokenRef
    Authentication token reference.
    group String
    Gitlab group to scan. You can use either the project id (recommended) or the full namespaced path.
    allBranches Boolean
    If true, scan every branch of every repository. If false, scan only the default branch.
    api String
    The Gitlab API URL to talk to.
    includeSubgroups Boolean
    Recurse through subgroups (true) or scan only the base group (false). Defaults to false.
    tokenRef ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGitlabTokenRef
    Authentication token reference.
    group string
    Gitlab group to scan. You can use either the project id (recommended) or the full namespaced path.
    allBranches boolean
    If true, scan every branch of every repository. If false, scan only the default branch.
    api string
    The Gitlab API URL to talk to.
    includeSubgroups boolean
    Recurse through subgroups (true) or scan only the base group (false). Defaults to false.
    tokenRef ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGitlabTokenRef
    Authentication token reference.
    group str
    Gitlab group to scan. You can use either the project id (recommended) or the full namespaced path.
    all_branches bool
    If true, scan every branch of every repository. If false, scan only the default branch.
    api str
    The Gitlab API URL to talk to.
    include_subgroups bool
    Recurse through subgroups (true) or scan only the base group (false). Defaults to false.
    token_ref ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGitlabTokenRef
    Authentication token reference.
    group String
    Gitlab group to scan. You can use either the project id (recommended) or the full namespaced path.
    allBranches Boolean
    If true, scan every branch of every repository. If false, scan only the default branch.
    api String
    The Gitlab API URL to talk to.
    includeSubgroups Boolean
    Recurse through subgroups (true) or scan only the base group (false). Defaults to false.
    tokenRef Property Map
    Authentication token reference.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGitlabTokenRef, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderGitlabTokenRefArgs

    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.
    key string
    Key containing information in Kubernetes Secret.
    secretName string
    Name of Kubernetes Secret.
    key str
    Key containing information in Kubernetes Secret.
    secret_name str
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplate, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateArgs

    metadata Property Map
    Kubernetes object metadata for templated Application.
    spec Property Map
    The application specification.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateMetadata, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateMetadataArgs

    Annotations Dictionary<string, string>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers List<string>
    List of finalizers to apply to the resulting Application.
    Labels Dictionary<string, string>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    Annotations map[string]string
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers []string
    List of finalizers to apply to the resulting Application.
    Labels map[string]string
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    annotations Map<String,String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String,String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application
    annotations {[key: string]: string}
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers string[]
    List of finalizers to apply to the resulting Application.
    labels {[key: string]: string}
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name string
    Name of the resulting Application
    namespace string
    Namespace of the resulting Application
    annotations Mapping[str, str]
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers Sequence[str]
    List of finalizers to apply to the resulting Application.
    labels Mapping[str, str]
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name str
    Name of the resulting Application
    namespace str
    Namespace of the resulting Application
    annotations Map<String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpec, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecArgs

    Destination Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSource>
    Location of the application's manifests or chart.
    SyncPolicy Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    Destination ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecIgnoreDifference
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecInfo
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSource
    Location of the application's manifests or chart.
    SyncPolicy ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Integer
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSource>
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecIgnoreDifference[]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecInfo[]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project string
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSource[]
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignore_differences Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecIgnoreDifference]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecInfo]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project str
    The project the application belongs to. Defaults to default.
    revision_history_limit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSource]
    Location of the application's manifests or chart.
    sync_policy ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination Property Map
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<Property Map>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<Property Map>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<Property Map>
    Location of the application's manifests or chart.
    syncPolicy Property Map
    Controls when and how a sync will be performed.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecDestination, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecDestinationArgs

    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name string
    Name of the target cluster. Can be used instead of server.
    namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name str
    Name of the target cluster. Can be used instead of server.
    namespace str
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server str
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecIgnoreDifference, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecIgnoreDifferenceArgs

    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions List<string>
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers List<string>
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers List<string>
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions []string
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers []string
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers []string
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    group string
    The Kubernetes resource Group to match for.
    jqPathExpressions string[]
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers string[]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind string
    The Kubernetes resource Kind to match for.
    managedFieldsManagers string[]
    List of external controller manager names whose changes to fields should be ignored.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    group str
    The Kubernetes resource Group to match for.
    jq_path_expressions Sequence[str]
    List of JQ path expression strings targeting the field(s) to ignore.
    json_pointers Sequence[str]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind str
    The Kubernetes resource Kind to match for.
    managed_fields_managers Sequence[str]
    List of external controller manager names whose changes to fields should be ignored.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecInfo, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecInfoArgs

    Name string
    Name of the information.
    Value string
    Value of the information.
    Name string
    Name of the information.
    Value string
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.
    name string
    Name of the information.
    value string
    Value of the information.
    name str
    Name of the information.
    value str
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSource, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceArgs

    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelm
    Helm specific options.
    Kustomize Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelm
    Helm specific options.
    Kustomize ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomize
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomize
    Kustomize specific options.
    path string
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart str
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomize
    Kustomize specific options.
    path str
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref str
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repo_url str
    URL to the repository (Git or Helm) that contains the application manifests.
    target_revision str
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory Property Map
    Path/directory specific options.
    helm Property Map
    Helm specific options.
    kustomize Property Map
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin Property Map
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectory, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryArgs

    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.
    exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse boolean
    Whether to scan a directory recursively for manifests.
    exclude str
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include str
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet Property Map
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnet, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetArgs

    extVars List<Property Map>
    List of Jsonnet External Variables.
    libs List<String>
    Additional library search dirs.
    tlas List<Property Map>
    List of Jsonnet Top-level Arguments

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetExtVar, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetExtVarArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetTla, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetTlaArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelm, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmArgs

    FileParameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles List<string>
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    FileParameters []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmFileParameter
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmParameter
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles []string
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmFileParameter[]
    File parameters for the helm template.
    ignoreMissingValueFiles boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmParameter[]
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName string
    Helm release name. If omitted it will use the application name.
    skipCrds boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles string[]
    List of Helm value files to use when generating a template.
    values string
    Helm values to be passed to 'helm template', typically defined as a block.
    version string
    The Helm version to use for templating. Accepts either v2 or v3
    file_parameters Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmFileParameter]
    File parameters for the helm template.
    ignore_missing_value_files bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmParameter]
    Helm parameters which are passed to the helm template command upon manifest generation.
    pass_credentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    release_name str
    Helm release name. If omitted it will use the application name.
    skip_crds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    value_files Sequence[str]
    List of Helm value files to use when generating a template.
    values str
    Helm values to be passed to 'helm template', typically defined as a block.
    version str
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<Property Map>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<Property Map>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmFileParameter, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmFileParameterArgs

    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.
    name string
    Name of the Helm parameter.
    path string
    Path to the file containing the values for the Helm parameter.
    name str
    Name of the Helm parameter.
    path str
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmParameter, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmParameterArgs

    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.
    forceString boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name string
    Name of the Helm parameter.
    value string
    Value of the Helm parameter.
    force_string bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name str
    Name of the Helm parameter.
    value str
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomize, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizeArgs

    CommonAnnotations Dictionary<string, string>
    List of additional annotations to add to rendered manifests.
    CommonLabels Dictionary<string, string>
    List of additional labels to add to rendered manifests.
    Images List<string>
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    CommonAnnotations map[string]string
    List of additional annotations to add to rendered manifests.
    CommonLabels map[string]string
    List of additional labels to add to rendered manifests.
    Images []string
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizePatch
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String,String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String,String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.
    commonAnnotations {[key: string]: string}
    List of additional annotations to add to rendered manifests.
    commonLabels {[key: string]: string}
    List of additional labels to add to rendered manifests.
    images string[]
    List of Kustomize image override specifications.
    namePrefix string
    Prefix appended to resources for Kustomize apps.
    nameSuffix string
    Suffix appended to resources for Kustomize apps.
    patches ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizePatch[]
    A list of Kustomize patches to apply.
    version string
    Version of Kustomize to use for rendering manifests.
    common_annotations Mapping[str, str]
    List of additional annotations to add to rendered manifests.
    common_labels Mapping[str, str]
    List of additional labels to add to rendered manifests.
    images Sequence[str]
    List of Kustomize image override specifications.
    name_prefix str
    Prefix appended to resources for Kustomize apps.
    name_suffix str
    Suffix appended to resources for Kustomize apps.
    patches Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizePatch]
    A list of Kustomize patches to apply.
    version str
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<Property Map>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizePatch, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizePatchArgs

    Target Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options Dictionary<string, bool>
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    Target ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options map[string]bool
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Map<String,Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options {[key: string]: boolean}
    Additional options.
    patch string
    Inline Kustomize patch to apply.
    path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Mapping[str, bool]
    Additional options.
    patch str
    Inline Kustomize patch to apply.
    path str
    Path to a file containing the patch to apply.
    target Property Map
    Target(s) to patch
    options Map<Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizePatchTarget, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizePatchTargetArgs

    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.
    annotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    group string
    The Kubernetes resource Group to match for.
    kind string
    The Kubernetes resource Kind to match for.
    labelSelector string
    Label selector to use when matching the Kubernetes resource.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    version string
    The Kubernetes resource Version to match for.
    annotation_selector str
    Annotation selector to use when matching the Kubernetes resource.
    group str
    The Kubernetes resource Group to match for.
    kind str
    The Kubernetes resource Kind to match for.
    label_selector str
    Label selector to use when matching the Kubernetes resource.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    version str
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourcePlugin, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourcePluginArgs

    Envs List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    Envs []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourcePluginEnv
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourcePluginEnv[]
    Environment variables passed to the plugin.
    name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourcePluginEnv]
    Environment variables passed to the plugin.
    name str
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<Property Map>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourcePluginEnv, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSourcePluginEnvArgs

    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.
    name string
    Name of the environment variable.
    value string
    Value of the environment variable.
    name str
    Name of the environment variable.
    value str
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicy, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyArgs

    Automated Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions List<string>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    Automated ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions []string
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions string[]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managed_namespace_metadata ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    sync_options Sequence[str]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated Property Map
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata Property Map
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry Property Map
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyAutomated, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyAutomatedArgs

    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty boolean
    Allows apps have zero live resources.
    prune boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allow_empty bool
    Allows apps have zero live resources.
    prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    self_heal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyManagedNamespaceMetadata, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyManagedNamespaceMetadataArgs

    Annotations Dictionary<string, string>
    Annotations to apply to the namespace.
    Labels Dictionary<string, string>
    Labels to apply to the namespace.
    Annotations map[string]string
    Annotations to apply to the namespace.
    Labels map[string]string
    Labels to apply to the namespace.
    annotations Map<String,String>
    Annotations to apply to the namespace.
    labels Map<String,String>
    Labels to apply to the namespace.
    annotations {[key: string]: string}
    Annotations to apply to the namespace.
    labels {[key: string]: string}
    Labels to apply to the namespace.
    annotations Mapping[str, str]
    Annotations to apply to the namespace.
    labels Mapping[str, str]
    Labels to apply to the namespace.
    annotations Map<String>
    Annotations to apply to the namespace.
    labels Map<String>
    Labels to apply to the namespace.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyRetry, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyRetryArgs

    Backoff Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    Backoff ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit str
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff Property Map
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyRetryBackoff, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyRetryBackoffArgs

    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor string
    Factor to multiply the base duration after each failed retry.
    maxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration str
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor str
    Factor to multiply the base duration after each failed retry.
    max_duration str
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorSelector, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorSelectorArgs

    MatchExpressions List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorSelectorMatchExpression>
    A list of label selector requirements. The requirements are ANDed.
    MatchLabels Dictionary<string, string>
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    MatchExpressions []ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorSelectorMatchExpression
    A list of label selector requirements. The requirements are ANDed.
    MatchLabels map[string]string
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    matchExpressions List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorSelectorMatchExpression>
    A list of label selector requirements. The requirements are ANDed.
    matchLabels Map<String,String>
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    matchExpressions ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorSelectorMatchExpression[]
    A list of label selector requirements. The requirements are ANDed.
    matchLabels {[key: string]: string}
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    match_expressions Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorSelectorMatchExpression]
    A list of label selector requirements. The requirements are ANDed.
    match_labels Mapping[str, str]
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    matchExpressions List<Property Map>
    A list of label selector requirements. The requirements are ANDed.
    matchLabels Map<String>
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorSelectorMatchExpression, ApplicationSetSpecGeneratorMatrixGeneratorMatrixGeneratorSelectorMatchExpressionArgs

    Key string
    The label key that the selector applies to.
    Operator string
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    Values List<string>
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    Key string
    The label key that the selector applies to.
    Operator string
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    Values []string
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key String
    The label key that the selector applies to.
    operator String
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values List<String>
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key string
    The label key that the selector applies to.
    operator string
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values string[]
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key str
    The label key that the selector applies to.
    operator str
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values Sequence[str]
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key String
    The label key that the selector applies to.
    operator String
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values List<String>
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplate, ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateArgs

    metadata Property Map
    Kubernetes object metadata for templated Application.
    spec Property Map
    The application specification.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateMetadata, ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateMetadataArgs

    Annotations Dictionary<string, string>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers List<string>
    List of finalizers to apply to the resulting Application.
    Labels Dictionary<string, string>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    Annotations map[string]string
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers []string
    List of finalizers to apply to the resulting Application.
    Labels map[string]string
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    annotations Map<String,String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String,String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application
    annotations {[key: string]: string}
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers string[]
    List of finalizers to apply to the resulting Application.
    labels {[key: string]: string}
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name string
    Name of the resulting Application
    namespace string
    Namespace of the resulting Application
    annotations Mapping[str, str]
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers Sequence[str]
    List of finalizers to apply to the resulting Application.
    labels Mapping[str, str]
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name str
    Name of the resulting Application
    namespace str
    Namespace of the resulting Application
    annotations Map<String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpec, ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecArgs

    Destination Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSource>
    Location of the application's manifests or chart.
    SyncPolicy Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    Destination ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences []ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecIgnoreDifference
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos []ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecInfo
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources []ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSource
    Location of the application's manifests or chart.
    SyncPolicy ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Integer
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSource>
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecIgnoreDifference[]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecInfo[]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project string
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSource[]
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignore_differences Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecIgnoreDifference]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecInfo]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project str
    The project the application belongs to. Defaults to default.
    revision_history_limit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSource]
    Location of the application's manifests or chart.
    sync_policy ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination Property Map
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<Property Map>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<Property Map>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<Property Map>
    Location of the application's manifests or chart.
    syncPolicy Property Map
    Controls when and how a sync will be performed.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecDestination, ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecDestinationArgs

    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name string
    Name of the target cluster. Can be used instead of server.
    namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name str
    Name of the target cluster. Can be used instead of server.
    namespace str
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server str
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecIgnoreDifference, ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecIgnoreDifferenceArgs

    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions List<string>
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers List<string>
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers List<string>
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions []string
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers []string
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers []string
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    group string
    The Kubernetes resource Group to match for.
    jqPathExpressions string[]
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers string[]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind string
    The Kubernetes resource Kind to match for.
    managedFieldsManagers string[]
    List of external controller manager names whose changes to fields should be ignored.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    group str
    The Kubernetes resource Group to match for.
    jq_path_expressions Sequence[str]
    List of JQ path expression strings targeting the field(s) to ignore.
    json_pointers Sequence[str]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind str
    The Kubernetes resource Kind to match for.
    managed_fields_managers Sequence[str]
    List of external controller manager names whose changes to fields should be ignored.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecInfo, ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecInfoArgs

    Name string
    Name of the information.
    Value string
    Value of the information.
    Name string
    Name of the information.
    Value string
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.
    name string
    Name of the information.
    value string
    Value of the information.
    name str
    Name of the information.
    value str
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSource, ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceArgs

    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceHelm
    Helm specific options.
    Kustomize Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceHelm
    Helm specific options.
    Kustomize ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceKustomize
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceKustomize
    Kustomize specific options.
    path string
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart str
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceKustomize
    Kustomize specific options.
    path str
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref str
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repo_url str
    URL to the repository (Git or Helm) that contains the application manifests.
    target_revision str
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory Property Map
    Path/directory specific options.
    helm Property Map
    Helm specific options.
    kustomize Property Map
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin Property Map
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceDirectory, ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceDirectoryArgs

    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.
    exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse boolean
    Whether to scan a directory recursively for manifests.
    exclude str
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include str
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet Property Map
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceDirectoryJsonnet, ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceDirectoryJsonnetArgs

    extVars List<Property Map>
    List of Jsonnet External Variables.
    libs List<String>
    Additional library search dirs.
    tlas List<Property Map>
    List of Jsonnet Top-level Arguments

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceDirectoryJsonnetExtVar, ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceDirectoryJsonnetExtVarArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceDirectoryJsonnetTla, ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceDirectoryJsonnetTlaArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceHelm, ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceHelmArgs

    FileParameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles List<string>
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    FileParameters []ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceHelmFileParameter
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters []ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceHelmParameter
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles []string
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceHelmFileParameter[]
    File parameters for the helm template.
    ignoreMissingValueFiles boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceHelmParameter[]
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName string
    Helm release name. If omitted it will use the application name.
    skipCrds boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles string[]
    List of Helm value files to use when generating a template.
    values string
    Helm values to be passed to 'helm template', typically defined as a block.
    version string
    The Helm version to use for templating. Accepts either v2 or v3
    file_parameters Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceHelmFileParameter]
    File parameters for the helm template.
    ignore_missing_value_files bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceHelmParameter]
    Helm parameters which are passed to the helm template command upon manifest generation.
    pass_credentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    release_name str
    Helm release name. If omitted it will use the application name.
    skip_crds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    value_files Sequence[str]
    List of Helm value files to use when generating a template.
    values str
    Helm values to be passed to 'helm template', typically defined as a block.
    version str
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<Property Map>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<Property Map>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceHelmFileParameter, ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceHelmFileParameterArgs

    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.
    name string
    Name of the Helm parameter.
    path string
    Path to the file containing the values for the Helm parameter.
    name str
    Name of the Helm parameter.
    path str
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceHelmParameter, ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceHelmParameterArgs

    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.
    forceString boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name string
    Name of the Helm parameter.
    value string
    Value of the Helm parameter.
    force_string bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name str
    Name of the Helm parameter.
    value str
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceKustomize, ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceKustomizeArgs

    CommonAnnotations Dictionary<string, string>
    List of additional annotations to add to rendered manifests.
    CommonLabels Dictionary<string, string>
    List of additional labels to add to rendered manifests.
    Images List<string>
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    CommonAnnotations map[string]string
    List of additional annotations to add to rendered manifests.
    CommonLabels map[string]string
    List of additional labels to add to rendered manifests.
    Images []string
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches []ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceKustomizePatch
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String,String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String,String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.
    commonAnnotations {[key: string]: string}
    List of additional annotations to add to rendered manifests.
    commonLabels {[key: string]: string}
    List of additional labels to add to rendered manifests.
    images string[]
    List of Kustomize image override specifications.
    namePrefix string
    Prefix appended to resources for Kustomize apps.
    nameSuffix string
    Suffix appended to resources for Kustomize apps.
    patches ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceKustomizePatch[]
    A list of Kustomize patches to apply.
    version string
    Version of Kustomize to use for rendering manifests.
    common_annotations Mapping[str, str]
    List of additional annotations to add to rendered manifests.
    common_labels Mapping[str, str]
    List of additional labels to add to rendered manifests.
    images Sequence[str]
    List of Kustomize image override specifications.
    name_prefix str
    Prefix appended to resources for Kustomize apps.
    name_suffix str
    Suffix appended to resources for Kustomize apps.
    patches Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceKustomizePatch]
    A list of Kustomize patches to apply.
    version str
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<Property Map>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceKustomizePatch, ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceKustomizePatchArgs

    Target Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options Dictionary<string, bool>
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    Target ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options map[string]bool
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Map<String,Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options {[key: string]: boolean}
    Additional options.
    patch string
    Inline Kustomize patch to apply.
    path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Mapping[str, bool]
    Additional options.
    patch str
    Inline Kustomize patch to apply.
    path str
    Path to a file containing the patch to apply.
    target Property Map
    Target(s) to patch
    options Map<Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceKustomizePatchTarget, ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourceKustomizePatchTargetArgs

    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.
    annotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    group string
    The Kubernetes resource Group to match for.
    kind string
    The Kubernetes resource Kind to match for.
    labelSelector string
    Label selector to use when matching the Kubernetes resource.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    version string
    The Kubernetes resource Version to match for.
    annotation_selector str
    Annotation selector to use when matching the Kubernetes resource.
    group str
    The Kubernetes resource Group to match for.
    kind str
    The Kubernetes resource Kind to match for.
    label_selector str
    Label selector to use when matching the Kubernetes resource.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    version str
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourcePlugin, ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourcePluginArgs

    Envs List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    Envs []ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourcePluginEnv
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourcePluginEnv[]
    Environment variables passed to the plugin.
    name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourcePluginEnv]
    Environment variables passed to the plugin.
    name str
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<Property Map>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourcePluginEnv, ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSourcePluginEnvArgs

    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.
    name string
    Name of the environment variable.
    value string
    Value of the environment variable.
    name str
    Name of the environment variable.
    value str
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicy, ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicyArgs

    Automated Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions List<string>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    Automated ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions []string
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions string[]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managed_namespace_metadata ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    sync_options Sequence[str]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated Property Map
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata Property Map
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry Property Map
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicyAutomated, ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicyAutomatedArgs

    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty boolean
    Allows apps have zero live resources.
    prune boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allow_empty bool
    Allows apps have zero live resources.
    prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    self_heal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicyManagedNamespaceMetadata, ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicyManagedNamespaceMetadataArgs

    Annotations Dictionary<string, string>
    Annotations to apply to the namespace.
    Labels Dictionary<string, string>
    Labels to apply to the namespace.
    Annotations map[string]string
    Annotations to apply to the namespace.
    Labels map[string]string
    Labels to apply to the namespace.
    annotations Map<String,String>
    Annotations to apply to the namespace.
    labels Map<String,String>
    Labels to apply to the namespace.
    annotations {[key: string]: string}
    Annotations to apply to the namespace.
    labels {[key: string]: string}
    Labels to apply to the namespace.
    annotations Mapping[str, str]
    Annotations to apply to the namespace.
    labels Mapping[str, str]
    Labels to apply to the namespace.
    annotations Map<String>
    Annotations to apply to the namespace.
    labels Map<String>
    Labels to apply to the namespace.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicyRetry, ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicyRetryArgs

    Backoff Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    Backoff ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit str
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff Property Map
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.

    ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicyRetryBackoff, ApplicationSetSpecGeneratorMatrixGeneratorMatrixTemplateSpecSyncPolicyRetryBackoffArgs

    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor string
    Factor to multiply the base duration after each failed retry.
    maxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration str
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor str
    Factor to multiply the base duration after each failed retry.
    max_duration str
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.

    ApplicationSetSpecGeneratorMatrixGeneratorMerge, ApplicationSetSpecGeneratorMatrixGeneratorMergeArgs

    Generators List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGenerator>
    Child generator. Generators are responsible for generating parameters, which are then combined by the parent merge generator.
    MergeKeys List<string>
    Keys to merge into resulting parameter set.
    Template Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplate
    Generator template. Used to override the values of the spec-level template.
    Generators []ApplicationSetSpecGeneratorMatrixGeneratorMergeGenerator
    Child generator. Generators are responsible for generating parameters, which are then combined by the parent merge generator.
    MergeKeys []string
    Keys to merge into resulting parameter set.
    Template ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplate
    Generator template. Used to override the values of the spec-level template.
    generators List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGenerator>
    Child generator. Generators are responsible for generating parameters, which are then combined by the parent merge generator.
    mergeKeys List<String>
    Keys to merge into resulting parameter set.
    template ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplate
    Generator template. Used to override the values of the spec-level template.
    generators ApplicationSetSpecGeneratorMatrixGeneratorMergeGenerator[]
    Child generator. Generators are responsible for generating parameters, which are then combined by the parent merge generator.
    mergeKeys string[]
    Keys to merge into resulting parameter set.
    template ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplate
    Generator template. Used to override the values of the spec-level template.
    generators Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGenerator]
    Child generator. Generators are responsible for generating parameters, which are then combined by the parent merge generator.
    merge_keys Sequence[str]
    Keys to merge into resulting parameter set.
    template ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplate
    Generator template. Used to override the values of the spec-level template.
    generators List<Property Map>
    Child generator. Generators are responsible for generating parameters, which are then combined by the parent merge generator.
    mergeKeys List<String>
    Keys to merge into resulting parameter set.
    template Property Map
    Generator template. Used to override the values of the spec-level template.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGenerator, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorArgs

    ClusterDecisionResources List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResource>
    The cluster decision resource generates a list of Argo CD clusters.
    Clusters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorCluster>
    The cluster generator produces parameters based on the list of items found within the cluster secret.
    Gits List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGit>
    Git generators generates parameters using either the directory structure of a specified Git repository (directory generator), or, using the contents of JSON/YAML files found within a specified repository (file generator).
    Lists List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorList>
    List generators generate parameters based on an arbitrary list of key/value pairs (as long as the values are string values).
    PullRequests List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequest>
    Pull Request generators uses the API of an SCMaaS provider to automatically discover open pull requests within a repository.
    ScmProviders List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProvider>
    SCM Provider generators uses the API of an SCMaaS provider to automatically discover repositories within an organization.
    Selector Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorSelector
    The Selector allows to post-filter based on generated values using the kubernetes common labelSelector format.
    ClusterDecisionResources []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResource
    The cluster decision resource generates a list of Argo CD clusters.
    Clusters []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorCluster
    The cluster generator produces parameters based on the list of items found within the cluster secret.
    Gits []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGit
    Git generators generates parameters using either the directory structure of a specified Git repository (directory generator), or, using the contents of JSON/YAML files found within a specified repository (file generator).
    Lists []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorList
    List generators generate parameters based on an arbitrary list of key/value pairs (as long as the values are string values).
    PullRequests []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequest
    Pull Request generators uses the API of an SCMaaS provider to automatically discover open pull requests within a repository.
    ScmProviders []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProvider
    SCM Provider generators uses the API of an SCMaaS provider to automatically discover repositories within an organization.
    Selector ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorSelector
    The Selector allows to post-filter based on generated values using the kubernetes common labelSelector format.
    clusterDecisionResources List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResource>
    The cluster decision resource generates a list of Argo CD clusters.
    clusters List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorCluster>
    The cluster generator produces parameters based on the list of items found within the cluster secret.
    gits List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGit>
    Git generators generates parameters using either the directory structure of a specified Git repository (directory generator), or, using the contents of JSON/YAML files found within a specified repository (file generator).
    lists List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorList>
    List generators generate parameters based on an arbitrary list of key/value pairs (as long as the values are string values).
    pullRequests List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequest>
    Pull Request generators uses the API of an SCMaaS provider to automatically discover open pull requests within a repository.
    scmProviders List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProvider>
    SCM Provider generators uses the API of an SCMaaS provider to automatically discover repositories within an organization.
    selector ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorSelector
    The Selector allows to post-filter based on generated values using the kubernetes common labelSelector format.
    clusterDecisionResources ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResource[]
    The cluster decision resource generates a list of Argo CD clusters.
    clusters ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorCluster[]
    The cluster generator produces parameters based on the list of items found within the cluster secret.
    gits ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGit[]
    Git generators generates parameters using either the directory structure of a specified Git repository (directory generator), or, using the contents of JSON/YAML files found within a specified repository (file generator).
    lists ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorList[]
    List generators generate parameters based on an arbitrary list of key/value pairs (as long as the values are string values).
    pullRequests ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequest[]
    Pull Request generators uses the API of an SCMaaS provider to automatically discover open pull requests within a repository.
    scmProviders ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProvider[]
    SCM Provider generators uses the API of an SCMaaS provider to automatically discover repositories within an organization.
    selector ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorSelector
    The Selector allows to post-filter based on generated values using the kubernetes common labelSelector format.
    cluster_decision_resources Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResource]
    The cluster decision resource generates a list of Argo CD clusters.
    clusters Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorCluster]
    The cluster generator produces parameters based on the list of items found within the cluster secret.
    gits Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGit]
    Git generators generates parameters using either the directory structure of a specified Git repository (directory generator), or, using the contents of JSON/YAML files found within a specified repository (file generator).
    lists Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorList]
    List generators generate parameters based on an arbitrary list of key/value pairs (as long as the values are string values).
    pull_requests Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequest]
    Pull Request generators uses the API of an SCMaaS provider to automatically discover open pull requests within a repository.
    scm_providers Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProvider]
    SCM Provider generators uses the API of an SCMaaS provider to automatically discover repositories within an organization.
    selector ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorSelector
    The Selector allows to post-filter based on generated values using the kubernetes common labelSelector format.
    clusterDecisionResources List<Property Map>
    The cluster decision resource generates a list of Argo CD clusters.
    clusters List<Property Map>
    The cluster generator produces parameters based on the list of items found within the cluster secret.
    gits List<Property Map>
    Git generators generates parameters using either the directory structure of a specified Git repository (directory generator), or, using the contents of JSON/YAML files found within a specified repository (file generator).
    lists List<Property Map>
    List generators generate parameters based on an arbitrary list of key/value pairs (as long as the values are string values).
    pullRequests List<Property Map>
    Pull Request generators uses the API of an SCMaaS provider to automatically discover open pull requests within a repository.
    scmProviders List<Property Map>
    SCM Provider generators uses the API of an SCMaaS provider to automatically discover repositories within an organization.
    selector Property Map
    The Selector allows to post-filter based on generated values using the kubernetes common labelSelector format.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorCluster, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterArgs

    Enabled bool
    Boolean value defaulting to true to indicate that this block has been added thereby allowing all other attributes to be optional.
    Selector Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterSelector
    Label selector used to narrow the scope of targeted clusters.
    Template Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplate
    Generator template. Used to override the values of the spec-level template.
    Values Dictionary<string, string>
    Arbitrary string key-value pairs to pass to the template via the values field of the cluster generator.
    Enabled bool
    Boolean value defaulting to true to indicate that this block has been added thereby allowing all other attributes to be optional.
    Selector ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterSelector
    Label selector used to narrow the scope of targeted clusters.
    Template ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplate
    Generator template. Used to override the values of the spec-level template.
    Values map[string]string
    Arbitrary string key-value pairs to pass to the template via the values field of the cluster generator.
    enabled Boolean
    Boolean value defaulting to true to indicate that this block has been added thereby allowing all other attributes to be optional.
    selector ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterSelector
    Label selector used to narrow the scope of targeted clusters.
    template ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplate
    Generator template. Used to override the values of the spec-level template.
    values Map<String,String>
    Arbitrary string key-value pairs to pass to the template via the values field of the cluster generator.
    enabled boolean
    Boolean value defaulting to true to indicate that this block has been added thereby allowing all other attributes to be optional.
    selector ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterSelector
    Label selector used to narrow the scope of targeted clusters.
    template ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplate
    Generator template. Used to override the values of the spec-level template.
    values {[key: string]: string}
    Arbitrary string key-value pairs to pass to the template via the values field of the cluster generator.
    enabled bool
    Boolean value defaulting to true to indicate that this block has been added thereby allowing all other attributes to be optional.
    selector ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterSelector
    Label selector used to narrow the scope of targeted clusters.
    template ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplate
    Generator template. Used to override the values of the spec-level template.
    values Mapping[str, str]
    Arbitrary string key-value pairs to pass to the template via the values field of the cluster generator.
    enabled Boolean
    Boolean value defaulting to true to indicate that this block has been added thereby allowing all other attributes to be optional.
    selector Property Map
    Label selector used to narrow the scope of targeted clusters.
    template Property Map
    Generator template. Used to override the values of the spec-level template.
    values Map<String>
    Arbitrary string key-value pairs to pass to the template via the values field of the cluster generator.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResource, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceArgs

    ConfigMapRef string
    ConfigMap with the duck type definitions needed to retrieve the data this includes apiVersion(group/version), kind, matchKey and validation settings.
    LabelSelector Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceLabelSelector
    Label selector used to find the resource defined in the config_map_ref. Alternative to name.
    Name string
    Resource name of the kind, group and version, defined in the config_map_ref.
    RequeueAfterSeconds string
    How often to check for changes (in seconds). Default: 3min.
    Template Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplate
    Generator template. Used to override the values of the spec-level template.
    Values Dictionary<string, string>
    Arbitrary string key-value pairs which are passed directly as parameters to the template.
    ConfigMapRef string
    ConfigMap with the duck type definitions needed to retrieve the data this includes apiVersion(group/version), kind, matchKey and validation settings.
    LabelSelector ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceLabelSelector
    Label selector used to find the resource defined in the config_map_ref. Alternative to name.
    Name string
    Resource name of the kind, group and version, defined in the config_map_ref.
    RequeueAfterSeconds string
    How often to check for changes (in seconds). Default: 3min.
    Template ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplate
    Generator template. Used to override the values of the spec-level template.
    Values map[string]string
    Arbitrary string key-value pairs which are passed directly as parameters to the template.
    configMapRef String
    ConfigMap with the duck type definitions needed to retrieve the data this includes apiVersion(group/version), kind, matchKey and validation settings.
    labelSelector ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceLabelSelector
    Label selector used to find the resource defined in the config_map_ref. Alternative to name.
    name String
    Resource name of the kind, group and version, defined in the config_map_ref.
    requeueAfterSeconds String
    How often to check for changes (in seconds). Default: 3min.
    template ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplate
    Generator template. Used to override the values of the spec-level template.
    values Map<String,String>
    Arbitrary string key-value pairs which are passed directly as parameters to the template.
    configMapRef string
    ConfigMap with the duck type definitions needed to retrieve the data this includes apiVersion(group/version), kind, matchKey and validation settings.
    labelSelector ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceLabelSelector
    Label selector used to find the resource defined in the config_map_ref. Alternative to name.
    name string
    Resource name of the kind, group and version, defined in the config_map_ref.
    requeueAfterSeconds string
    How often to check for changes (in seconds). Default: 3min.
    template ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplate
    Generator template. Used to override the values of the spec-level template.
    values {[key: string]: string}
    Arbitrary string key-value pairs which are passed directly as parameters to the template.
    config_map_ref str
    ConfigMap with the duck type definitions needed to retrieve the data this includes apiVersion(group/version), kind, matchKey and validation settings.
    label_selector ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceLabelSelector
    Label selector used to find the resource defined in the config_map_ref. Alternative to name.
    name str
    Resource name of the kind, group and version, defined in the config_map_ref.
    requeue_after_seconds str
    How often to check for changes (in seconds). Default: 3min.
    template ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplate
    Generator template. Used to override the values of the spec-level template.
    values Mapping[str, str]
    Arbitrary string key-value pairs which are passed directly as parameters to the template.
    configMapRef String
    ConfigMap with the duck type definitions needed to retrieve the data this includes apiVersion(group/version), kind, matchKey and validation settings.
    labelSelector Property Map
    Label selector used to find the resource defined in the config_map_ref. Alternative to name.
    name String
    Resource name of the kind, group and version, defined in the config_map_ref.
    requeueAfterSeconds String
    How often to check for changes (in seconds). Default: 3min.
    template Property Map
    Generator template. Used to override the values of the spec-level template.
    values Map<String>
    Arbitrary string key-value pairs which are passed directly as parameters to the template.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceLabelSelector, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceLabelSelectorArgs

    MatchExpressions List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceLabelSelectorMatchExpression>
    A list of label selector requirements. The requirements are ANDed.
    MatchLabels Dictionary<string, string>
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    MatchExpressions []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceLabelSelectorMatchExpression
    A list of label selector requirements. The requirements are ANDed.
    MatchLabels map[string]string
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    matchExpressions List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceLabelSelectorMatchExpression>
    A list of label selector requirements. The requirements are ANDed.
    matchLabels Map<String,String>
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    matchExpressions ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceLabelSelectorMatchExpression[]
    A list of label selector requirements. The requirements are ANDed.
    matchLabels {[key: string]: string}
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    match_expressions Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceLabelSelectorMatchExpression]
    A list of label selector requirements. The requirements are ANDed.
    match_labels Mapping[str, str]
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    matchExpressions List<Property Map>
    A list of label selector requirements. The requirements are ANDed.
    matchLabels Map<String>
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceLabelSelectorMatchExpression, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceLabelSelectorMatchExpressionArgs

    Key string
    The label key that the selector applies to.
    Operator string
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    Values List<string>
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    Key string
    The label key that the selector applies to.
    Operator string
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    Values []string
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key String
    The label key that the selector applies to.
    operator String
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values List<String>
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key string
    The label key that the selector applies to.
    operator string
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values string[]
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key str
    The label key that the selector applies to.
    operator str
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values Sequence[str]
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key String
    The label key that the selector applies to.
    operator String
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values List<String>
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplate, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateArgs

    metadata Property Map
    Kubernetes object metadata for templated Application.
    spec Property Map
    The application specification.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateMetadata, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateMetadataArgs

    Annotations Dictionary<string, string>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers List<string>
    List of finalizers to apply to the resulting Application.
    Labels Dictionary<string, string>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    Annotations map[string]string
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers []string
    List of finalizers to apply to the resulting Application.
    Labels map[string]string
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    annotations Map<String,String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String,String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application
    annotations {[key: string]: string}
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers string[]
    List of finalizers to apply to the resulting Application.
    labels {[key: string]: string}
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name string
    Name of the resulting Application
    namespace string
    Namespace of the resulting Application
    annotations Mapping[str, str]
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers Sequence[str]
    List of finalizers to apply to the resulting Application.
    labels Mapping[str, str]
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name str
    Name of the resulting Application
    namespace str
    Namespace of the resulting Application
    annotations Map<String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpec, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecArgs

    Destination Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSource>
    Location of the application's manifests or chart.
    SyncPolicy Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    Destination ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecIgnoreDifference
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecInfo
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSource
    Location of the application's manifests or chart.
    SyncPolicy ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Integer
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSource>
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecIgnoreDifference[]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecInfo[]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project string
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSource[]
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignore_differences Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecIgnoreDifference]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecInfo]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project str
    The project the application belongs to. Defaults to default.
    revision_history_limit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSource]
    Location of the application's manifests or chart.
    sync_policy ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination Property Map
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<Property Map>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<Property Map>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<Property Map>
    Location of the application's manifests or chart.
    syncPolicy Property Map
    Controls when and how a sync will be performed.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecDestination, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecDestinationArgs

    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name string
    Name of the target cluster. Can be used instead of server.
    namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name str
    Name of the target cluster. Can be used instead of server.
    namespace str
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server str
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecIgnoreDifference, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecIgnoreDifferenceArgs

    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions List<string>
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers List<string>
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers List<string>
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions []string
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers []string
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers []string
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    group string
    The Kubernetes resource Group to match for.
    jqPathExpressions string[]
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers string[]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind string
    The Kubernetes resource Kind to match for.
    managedFieldsManagers string[]
    List of external controller manager names whose changes to fields should be ignored.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    group str
    The Kubernetes resource Group to match for.
    jq_path_expressions Sequence[str]
    List of JQ path expression strings targeting the field(s) to ignore.
    json_pointers Sequence[str]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind str
    The Kubernetes resource Kind to match for.
    managed_fields_managers Sequence[str]
    List of external controller manager names whose changes to fields should be ignored.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecInfo, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecInfoArgs

    Name string
    Name of the information.
    Value string
    Value of the information.
    Name string
    Name of the information.
    Value string
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.
    name string
    Name of the information.
    value string
    Value of the information.
    name str
    Name of the information.
    value str
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSource, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceArgs

    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelm
    Helm specific options.
    Kustomize Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelm
    Helm specific options.
    Kustomize ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomize
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomize
    Kustomize specific options.
    path string
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart str
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomize
    Kustomize specific options.
    path str
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref str
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repo_url str
    URL to the repository (Git or Helm) that contains the application manifests.
    target_revision str
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory Property Map
    Path/directory specific options.
    helm Property Map
    Helm specific options.
    kustomize Property Map
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin Property Map
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectory, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryArgs

    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.
    exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse boolean
    Whether to scan a directory recursively for manifests.
    exclude str
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include str
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet Property Map
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnet, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetArgs

    extVars List<Property Map>
    List of Jsonnet External Variables.
    libs List<String>
    Additional library search dirs.
    tlas List<Property Map>
    List of Jsonnet Top-level Arguments

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetExtVar, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetExtVarArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetTla, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetTlaArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelm, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmArgs

    FileParameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles List<string>
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    FileParameters []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameter
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles []string
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter[]
    File parameters for the helm template.
    ignoreMissingValueFiles boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameter[]
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName string
    Helm release name. If omitted it will use the application name.
    skipCrds boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles string[]
    List of Helm value files to use when generating a template.
    values string
    Helm values to be passed to 'helm template', typically defined as a block.
    version string
    The Helm version to use for templating. Accepts either v2 or v3
    file_parameters Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter]
    File parameters for the helm template.
    ignore_missing_value_files bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameter]
    Helm parameters which are passed to the helm template command upon manifest generation.
    pass_credentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    release_name str
    Helm release name. If omitted it will use the application name.
    skip_crds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    value_files Sequence[str]
    List of Helm value files to use when generating a template.
    values str
    Helm values to be passed to 'helm template', typically defined as a block.
    version str
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<Property Map>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<Property Map>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameterArgs

    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.
    name string
    Name of the Helm parameter.
    path string
    Path to the file containing the values for the Helm parameter.
    name str
    Name of the Helm parameter.
    path str
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameter, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameterArgs

    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.
    forceString boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name string
    Name of the Helm parameter.
    value string
    Value of the Helm parameter.
    force_string bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name str
    Name of the Helm parameter.
    value str
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomize, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizeArgs

    CommonAnnotations Dictionary<string, string>
    List of additional annotations to add to rendered manifests.
    CommonLabels Dictionary<string, string>
    List of additional labels to add to rendered manifests.
    Images List<string>
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    CommonAnnotations map[string]string
    List of additional annotations to add to rendered manifests.
    CommonLabels map[string]string
    List of additional labels to add to rendered manifests.
    Images []string
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatch
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String,String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String,String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.
    commonAnnotations {[key: string]: string}
    List of additional annotations to add to rendered manifests.
    commonLabels {[key: string]: string}
    List of additional labels to add to rendered manifests.
    images string[]
    List of Kustomize image override specifications.
    namePrefix string
    Prefix appended to resources for Kustomize apps.
    nameSuffix string
    Suffix appended to resources for Kustomize apps.
    patches ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatch[]
    A list of Kustomize patches to apply.
    version string
    Version of Kustomize to use for rendering manifests.
    common_annotations Mapping[str, str]
    List of additional annotations to add to rendered manifests.
    common_labels Mapping[str, str]
    List of additional labels to add to rendered manifests.
    images Sequence[str]
    List of Kustomize image override specifications.
    name_prefix str
    Prefix appended to resources for Kustomize apps.
    name_suffix str
    Suffix appended to resources for Kustomize apps.
    patches Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatch]
    A list of Kustomize patches to apply.
    version str
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<Property Map>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatch, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchArgs

    Target Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options Dictionary<string, bool>
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    Target ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options map[string]bool
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Map<String,Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options {[key: string]: boolean}
    Additional options.
    patch string
    Inline Kustomize patch to apply.
    path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Mapping[str, bool]
    Additional options.
    patch str
    Inline Kustomize patch to apply.
    path str
    Path to a file containing the patch to apply.
    target Property Map
    Target(s) to patch
    options Map<Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTarget, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTargetArgs

    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.
    annotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    group string
    The Kubernetes resource Group to match for.
    kind string
    The Kubernetes resource Kind to match for.
    labelSelector string
    Label selector to use when matching the Kubernetes resource.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    version string
    The Kubernetes resource Version to match for.
    annotation_selector str
    Annotation selector to use when matching the Kubernetes resource.
    group str
    The Kubernetes resource Group to match for.
    kind str
    The Kubernetes resource Kind to match for.
    label_selector str
    Label selector to use when matching the Kubernetes resource.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    version str
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourcePlugin, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourcePluginArgs

    Envs List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    Envs []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnv
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnv[]
    Environment variables passed to the plugin.
    name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnv]
    Environment variables passed to the plugin.
    name str
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<Property Map>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnv, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnvArgs

    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.
    name string
    Name of the environment variable.
    value string
    Value of the environment variable.
    name str
    Name of the environment variable.
    value str
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicy, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyArgs

    Automated ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions []string
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions string[]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managed_namespace_metadata ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    sync_options Sequence[str]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated Property Map
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata Property Map
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry Property Map
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomated, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomatedArgs

    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty boolean
    Allows apps have zero live resources.
    prune boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allow_empty bool
    Allows apps have zero live resources.
    prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    self_heal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadata, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadataArgs

    Annotations Dictionary<string, string>
    Annotations to apply to the namespace.
    Labels Dictionary<string, string>
    Labels to apply to the namespace.
    Annotations map[string]string
    Annotations to apply to the namespace.
    Labels map[string]string
    Labels to apply to the namespace.
    annotations Map<String,String>
    Annotations to apply to the namespace.
    labels Map<String,String>
    Labels to apply to the namespace.
    annotations {[key: string]: string}
    Annotations to apply to the namespace.
    labels {[key: string]: string}
    Labels to apply to the namespace.
    annotations Mapping[str, str]
    Annotations to apply to the namespace.
    labels Mapping[str, str]
    Labels to apply to the namespace.
    annotations Map<String>
    Annotations to apply to the namespace.
    labels Map<String>
    Labels to apply to the namespace.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetry, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryArgs

    Backoff Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    Backoff ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit str
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff Property Map
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoff, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoffArgs

    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor string
    Factor to multiply the base duration after each failed retry.
    maxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration str
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor str
    Factor to multiply the base duration after each failed retry.
    max_duration str
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterSelector, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterSelectorArgs

    MatchExpressions List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterSelectorMatchExpression>
    A list of label selector requirements. The requirements are ANDed.
    MatchLabels Dictionary<string, string>
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    MatchExpressions []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterSelectorMatchExpression
    A list of label selector requirements. The requirements are ANDed.
    MatchLabels map[string]string
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    matchExpressions List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterSelectorMatchExpression>
    A list of label selector requirements. The requirements are ANDed.
    matchLabels Map<String,String>
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    matchExpressions ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterSelectorMatchExpression[]
    A list of label selector requirements. The requirements are ANDed.
    matchLabels {[key: string]: string}
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    match_expressions Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterSelectorMatchExpression]
    A list of label selector requirements. The requirements are ANDed.
    match_labels Mapping[str, str]
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    matchExpressions List<Property Map>
    A list of label selector requirements. The requirements are ANDed.
    matchLabels Map<String>
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterSelectorMatchExpression, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterSelectorMatchExpressionArgs

    Key string
    The label key that the selector applies to.
    Operator string
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    Values List<string>
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    Key string
    The label key that the selector applies to.
    Operator string
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    Values []string
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key String
    The label key that the selector applies to.
    operator String
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values List<String>
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key string
    The label key that the selector applies to.
    operator string
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values string[]
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key str
    The label key that the selector applies to.
    operator str
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values Sequence[str]
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key String
    The label key that the selector applies to.
    operator String
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values List<String>
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplate, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateArgs

    metadata Property Map
    Kubernetes object metadata for templated Application.
    spec Property Map
    The application specification.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateMetadata, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateMetadataArgs

    Annotations Dictionary<string, string>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers List<string>
    List of finalizers to apply to the resulting Application.
    Labels Dictionary<string, string>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    Annotations map[string]string
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers []string
    List of finalizers to apply to the resulting Application.
    Labels map[string]string
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    annotations Map<String,String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String,String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application
    annotations {[key: string]: string}
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers string[]
    List of finalizers to apply to the resulting Application.
    labels {[key: string]: string}
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name string
    Name of the resulting Application
    namespace string
    Namespace of the resulting Application
    annotations Mapping[str, str]
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers Sequence[str]
    List of finalizers to apply to the resulting Application.
    labels Mapping[str, str]
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name str
    Name of the resulting Application
    namespace str
    Namespace of the resulting Application
    annotations Map<String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpec, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecArgs

    Destination Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSource>
    Location of the application's manifests or chart.
    SyncPolicy Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    Destination ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecIgnoreDifference
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecInfo
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSource
    Location of the application's manifests or chart.
    SyncPolicy ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Integer
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSource>
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecIgnoreDifference[]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecInfo[]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project string
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSource[]
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignore_differences Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecIgnoreDifference]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecInfo]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project str
    The project the application belongs to. Defaults to default.
    revision_history_limit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSource]
    Location of the application's manifests or chart.
    sync_policy ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination Property Map
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<Property Map>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<Property Map>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<Property Map>
    Location of the application's manifests or chart.
    syncPolicy Property Map
    Controls when and how a sync will be performed.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecDestination, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecDestinationArgs

    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name string
    Name of the target cluster. Can be used instead of server.
    namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name str
    Name of the target cluster. Can be used instead of server.
    namespace str
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server str
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecIgnoreDifference, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecIgnoreDifferenceArgs

    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions List<string>
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers List<string>
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers List<string>
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions []string
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers []string
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers []string
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    group string
    The Kubernetes resource Group to match for.
    jqPathExpressions string[]
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers string[]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind string
    The Kubernetes resource Kind to match for.
    managedFieldsManagers string[]
    List of external controller manager names whose changes to fields should be ignored.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    group str
    The Kubernetes resource Group to match for.
    jq_path_expressions Sequence[str]
    List of JQ path expression strings targeting the field(s) to ignore.
    json_pointers Sequence[str]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind str
    The Kubernetes resource Kind to match for.
    managed_fields_managers Sequence[str]
    List of external controller manager names whose changes to fields should be ignored.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecInfo, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecInfoArgs

    Name string
    Name of the information.
    Value string
    Value of the information.
    Name string
    Name of the information.
    Value string
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.
    name string
    Name of the information.
    value string
    Value of the information.
    name str
    Name of the information.
    value str
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSource, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceArgs

    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceHelm
    Helm specific options.
    Kustomize Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceHelm
    Helm specific options.
    Kustomize ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceKustomize
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceKustomize
    Kustomize specific options.
    path string
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart str
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceKustomize
    Kustomize specific options.
    path str
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref str
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repo_url str
    URL to the repository (Git or Helm) that contains the application manifests.
    target_revision str
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory Property Map
    Path/directory specific options.
    helm Property Map
    Helm specific options.
    kustomize Property Map
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin Property Map
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceDirectory, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryArgs

    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.
    exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse boolean
    Whether to scan a directory recursively for manifests.
    exclude str
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include str
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet Property Map
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnet, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnetArgs

    extVars List<Property Map>
    List of Jsonnet External Variables.
    libs List<String>
    Additional library search dirs.
    tlas List<Property Map>
    List of Jsonnet Top-level Arguments

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnetExtVar, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnetExtVarArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnetTla, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnetTlaArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceHelm, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceHelmArgs

    FileParameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles List<string>
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    FileParameters []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceHelmFileParameter
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceHelmParameter
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles []string
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceHelmFileParameter[]
    File parameters for the helm template.
    ignoreMissingValueFiles boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceHelmParameter[]
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName string
    Helm release name. If omitted it will use the application name.
    skipCrds boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles string[]
    List of Helm value files to use when generating a template.
    values string
    Helm values to be passed to 'helm template', typically defined as a block.
    version string
    The Helm version to use for templating. Accepts either v2 or v3
    file_parameters Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceHelmFileParameter]
    File parameters for the helm template.
    ignore_missing_value_files bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceHelmParameter]
    Helm parameters which are passed to the helm template command upon manifest generation.
    pass_credentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    release_name str
    Helm release name. If omitted it will use the application name.
    skip_crds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    value_files Sequence[str]
    List of Helm value files to use when generating a template.
    values str
    Helm values to be passed to 'helm template', typically defined as a block.
    version str
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<Property Map>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<Property Map>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceHelmFileParameter, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceHelmFileParameterArgs

    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.
    name string
    Name of the Helm parameter.
    path string
    Path to the file containing the values for the Helm parameter.
    name str
    Name of the Helm parameter.
    path str
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceHelmParameter, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceHelmParameterArgs

    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.
    forceString boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name string
    Name of the Helm parameter.
    value string
    Value of the Helm parameter.
    force_string bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name str
    Name of the Helm parameter.
    value str
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceKustomize, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizeArgs

    CommonAnnotations Dictionary<string, string>
    List of additional annotations to add to rendered manifests.
    CommonLabels Dictionary<string, string>
    List of additional labels to add to rendered manifests.
    Images List<string>
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    CommonAnnotations map[string]string
    List of additional annotations to add to rendered manifests.
    CommonLabels map[string]string
    List of additional labels to add to rendered manifests.
    Images []string
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizePatch
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String,String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String,String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.
    commonAnnotations {[key: string]: string}
    List of additional annotations to add to rendered manifests.
    commonLabels {[key: string]: string}
    List of additional labels to add to rendered manifests.
    images string[]
    List of Kustomize image override specifications.
    namePrefix string
    Prefix appended to resources for Kustomize apps.
    nameSuffix string
    Suffix appended to resources for Kustomize apps.
    patches ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizePatch[]
    A list of Kustomize patches to apply.
    version string
    Version of Kustomize to use for rendering manifests.
    common_annotations Mapping[str, str]
    List of additional annotations to add to rendered manifests.
    common_labels Mapping[str, str]
    List of additional labels to add to rendered manifests.
    images Sequence[str]
    List of Kustomize image override specifications.
    name_prefix str
    Prefix appended to resources for Kustomize apps.
    name_suffix str
    Suffix appended to resources for Kustomize apps.
    patches Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizePatch]
    A list of Kustomize patches to apply.
    version str
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<Property Map>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizePatch, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizePatchArgs

    Target Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options Dictionary<string, bool>
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    Target ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options map[string]bool
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Map<String,Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options {[key: string]: boolean}
    Additional options.
    patch string
    Inline Kustomize patch to apply.
    path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Mapping[str, bool]
    Additional options.
    patch str
    Inline Kustomize patch to apply.
    path str
    Path to a file containing the patch to apply.
    target Property Map
    Target(s) to patch
    options Map<Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizePatchTarget, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizePatchTargetArgs

    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.
    annotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    group string
    The Kubernetes resource Group to match for.
    kind string
    The Kubernetes resource Kind to match for.
    labelSelector string
    Label selector to use when matching the Kubernetes resource.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    version string
    The Kubernetes resource Version to match for.
    annotation_selector str
    Annotation selector to use when matching the Kubernetes resource.
    group str
    The Kubernetes resource Group to match for.
    kind str
    The Kubernetes resource Kind to match for.
    label_selector str
    Label selector to use when matching the Kubernetes resource.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    version str
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourcePlugin, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourcePluginArgs

    Envs List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    Envs []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourcePluginEnv
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourcePluginEnv[]
    Environment variables passed to the plugin.
    name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourcePluginEnv]
    Environment variables passed to the plugin.
    name str
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<Property Map>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourcePluginEnv, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSourcePluginEnvArgs

    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.
    name string
    Name of the environment variable.
    value string
    Value of the environment variable.
    name str
    Name of the environment variable.
    value str
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicy, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyArgs

    Automated Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions List<string>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    Automated ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions []string
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions string[]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managed_namespace_metadata ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    sync_options Sequence[str]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated Property Map
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata Property Map
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry Property Map
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyAutomated, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyAutomatedArgs

    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty boolean
    Allows apps have zero live resources.
    prune boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allow_empty bool
    Allows apps have zero live resources.
    prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    self_heal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadata, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadataArgs

    Annotations Dictionary<string, string>
    Annotations to apply to the namespace.
    Labels Dictionary<string, string>
    Labels to apply to the namespace.
    Annotations map[string]string
    Annotations to apply to the namespace.
    Labels map[string]string
    Labels to apply to the namespace.
    annotations Map<String,String>
    Annotations to apply to the namespace.
    labels Map<String,String>
    Labels to apply to the namespace.
    annotations {[key: string]: string}
    Annotations to apply to the namespace.
    labels {[key: string]: string}
    Labels to apply to the namespace.
    annotations Mapping[str, str]
    Annotations to apply to the namespace.
    labels Mapping[str, str]
    Labels to apply to the namespace.
    annotations Map<String>
    Annotations to apply to the namespace.
    labels Map<String>
    Labels to apply to the namespace.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyRetry, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyRetryArgs

    Backoff Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    Backoff ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit str
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff Property Map
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyRetryBackoff, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyRetryBackoffArgs

    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor string
    Factor to multiply the base duration after each failed retry.
    maxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration str
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor str
    Factor to multiply the base duration after each failed retry.
    max_duration str
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGit, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitArgs

    RepoUrl string
    URL to the repository to use.
    Directories List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitDirectory>
    List of directories in the source repository to use when template the Application..
    Files List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitFile>
    List of files in the source repository to use when template the Application.
    PathParamPrefix string
    Prefix for all path-related parameter names.
    Revision string
    Revision of the source repository to use.
    Template Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplate
    Generator template. Used to override the values of the spec-level template.
    Values Dictionary<string, string>
    Arbitrary string key-value pairs to pass to the template via the values field of the git generator.
    RepoUrl string
    URL to the repository to use.
    Directories []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitDirectory
    List of directories in the source repository to use when template the Application..
    Files []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitFile
    List of files in the source repository to use when template the Application.
    PathParamPrefix string
    Prefix for all path-related parameter names.
    Revision string
    Revision of the source repository to use.
    Template ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplate
    Generator template. Used to override the values of the spec-level template.
    Values map[string]string
    Arbitrary string key-value pairs to pass to the template via the values field of the git generator.
    repoUrl String
    URL to the repository to use.
    directories List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitDirectory>
    List of directories in the source repository to use when template the Application..
    files List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitFile>
    List of files in the source repository to use when template the Application.
    pathParamPrefix String
    Prefix for all path-related parameter names.
    revision String
    Revision of the source repository to use.
    template ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplate
    Generator template. Used to override the values of the spec-level template.
    values Map<String,String>
    Arbitrary string key-value pairs to pass to the template via the values field of the git generator.
    repoUrl string
    URL to the repository to use.
    directories ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitDirectory[]
    List of directories in the source repository to use when template the Application..
    files ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitFile[]
    List of files in the source repository to use when template the Application.
    pathParamPrefix string
    Prefix for all path-related parameter names.
    revision string
    Revision of the source repository to use.
    template ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplate
    Generator template. Used to override the values of the spec-level template.
    values {[key: string]: string}
    Arbitrary string key-value pairs to pass to the template via the values field of the git generator.
    repo_url str
    URL to the repository to use.
    directories Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitDirectory]
    List of directories in the source repository to use when template the Application..
    files Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitFile]
    List of files in the source repository to use when template the Application.
    path_param_prefix str
    Prefix for all path-related parameter names.
    revision str
    Revision of the source repository to use.
    template ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplate
    Generator template. Used to override the values of the spec-level template.
    values Mapping[str, str]
    Arbitrary string key-value pairs to pass to the template via the values field of the git generator.
    repoUrl String
    URL to the repository to use.
    directories List<Property Map>
    List of directories in the source repository to use when template the Application..
    files List<Property Map>
    List of files in the source repository to use when template the Application.
    pathParamPrefix String
    Prefix for all path-related parameter names.
    revision String
    Revision of the source repository to use.
    template Property Map
    Generator template. Used to override the values of the spec-level template.
    values Map<String>
    Arbitrary string key-value pairs to pass to the template via the values field of the git generator.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitDirectory, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitDirectoryArgs

    Path string
    Path in the repository.
    Exclude bool
    Flag indicating whether or not the directory should be excluded when templating.
    Path string
    Path in the repository.
    Exclude bool
    Flag indicating whether or not the directory should be excluded when templating.
    path String
    Path in the repository.
    exclude Boolean
    Flag indicating whether or not the directory should be excluded when templating.
    path string
    Path in the repository.
    exclude boolean
    Flag indicating whether or not the directory should be excluded when templating.
    path str
    Path in the repository.
    exclude bool
    Flag indicating whether or not the directory should be excluded when templating.
    path String
    Path in the repository.
    exclude Boolean
    Flag indicating whether or not the directory should be excluded when templating.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitFile, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitFileArgs

    Path string
    Path to the file in the repository.
    Path string
    Path to the file in the repository.
    path String
    Path to the file in the repository.
    path string
    Path to the file in the repository.
    path str
    Path to the file in the repository.
    path String
    Path to the file in the repository.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplate, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateArgs

    metadata Property Map
    Kubernetes object metadata for templated Application.
    spec Property Map
    The application specification.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateMetadata, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateMetadataArgs

    Annotations Dictionary<string, string>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers List<string>
    List of finalizers to apply to the resulting Application.
    Labels Dictionary<string, string>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    Annotations map[string]string
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers []string
    List of finalizers to apply to the resulting Application.
    Labels map[string]string
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    annotations Map<String,String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String,String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application
    annotations {[key: string]: string}
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers string[]
    List of finalizers to apply to the resulting Application.
    labels {[key: string]: string}
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name string
    Name of the resulting Application
    namespace string
    Namespace of the resulting Application
    annotations Mapping[str, str]
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers Sequence[str]
    List of finalizers to apply to the resulting Application.
    labels Mapping[str, str]
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name str
    Name of the resulting Application
    namespace str
    Namespace of the resulting Application
    annotations Map<String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpec, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecArgs

    Destination Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSource>
    Location of the application's manifests or chart.
    SyncPolicy Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    Destination ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecIgnoreDifference
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecInfo
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSource
    Location of the application's manifests or chart.
    SyncPolicy ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Integer
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSource>
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecIgnoreDifference[]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecInfo[]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project string
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSource[]
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignore_differences Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecIgnoreDifference]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecInfo]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project str
    The project the application belongs to. Defaults to default.
    revision_history_limit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSource]
    Location of the application's manifests or chart.
    sync_policy ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination Property Map
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<Property Map>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<Property Map>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<Property Map>
    Location of the application's manifests or chart.
    syncPolicy Property Map
    Controls when and how a sync will be performed.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecDestination, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecDestinationArgs

    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name string
    Name of the target cluster. Can be used instead of server.
    namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name str
    Name of the target cluster. Can be used instead of server.
    namespace str
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server str
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecIgnoreDifference, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecIgnoreDifferenceArgs

    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions List<string>
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers List<string>
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers List<string>
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions []string
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers []string
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers []string
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    group string
    The Kubernetes resource Group to match for.
    jqPathExpressions string[]
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers string[]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind string
    The Kubernetes resource Kind to match for.
    managedFieldsManagers string[]
    List of external controller manager names whose changes to fields should be ignored.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    group str
    The Kubernetes resource Group to match for.
    jq_path_expressions Sequence[str]
    List of JQ path expression strings targeting the field(s) to ignore.
    json_pointers Sequence[str]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind str
    The Kubernetes resource Kind to match for.
    managed_fields_managers Sequence[str]
    List of external controller manager names whose changes to fields should be ignored.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecInfo, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecInfoArgs

    Name string
    Name of the information.
    Value string
    Value of the information.
    Name string
    Name of the information.
    Value string
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.
    name string
    Name of the information.
    value string
    Value of the information.
    name str
    Name of the information.
    value str
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSource, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceArgs

    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceHelm
    Helm specific options.
    Kustomize Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceHelm
    Helm specific options.
    Kustomize ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceKustomize
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceKustomize
    Kustomize specific options.
    path string
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart str
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceKustomize
    Kustomize specific options.
    path str
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref str
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repo_url str
    URL to the repository (Git or Helm) that contains the application manifests.
    target_revision str
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory Property Map
    Path/directory specific options.
    helm Property Map
    Helm specific options.
    kustomize Property Map
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin Property Map
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceDirectory, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryArgs

    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.
    exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse boolean
    Whether to scan a directory recursively for manifests.
    exclude str
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include str
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet Property Map
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnet, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnetArgs

    extVars List<Property Map>
    List of Jsonnet External Variables.
    libs List<String>
    Additional library search dirs.
    tlas List<Property Map>
    List of Jsonnet Top-level Arguments

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnetExtVar, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnetExtVarArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnetTla, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnetTlaArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceHelm, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceHelmArgs

    FileParameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles List<string>
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    FileParameters []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceHelmFileParameter
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceHelmParameter
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles []string
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceHelmFileParameter[]
    File parameters for the helm template.
    ignoreMissingValueFiles boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceHelmParameter[]
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName string
    Helm release name. If omitted it will use the application name.
    skipCrds boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles string[]
    List of Helm value files to use when generating a template.
    values string
    Helm values to be passed to 'helm template', typically defined as a block.
    version string
    The Helm version to use for templating. Accepts either v2 or v3
    file_parameters Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceHelmFileParameter]
    File parameters for the helm template.
    ignore_missing_value_files bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceHelmParameter]
    Helm parameters which are passed to the helm template command upon manifest generation.
    pass_credentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    release_name str
    Helm release name. If omitted it will use the application name.
    skip_crds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    value_files Sequence[str]
    List of Helm value files to use when generating a template.
    values str
    Helm values to be passed to 'helm template', typically defined as a block.
    version str
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<Property Map>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<Property Map>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceHelmFileParameter, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceHelmFileParameterArgs

    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.
    name string
    Name of the Helm parameter.
    path string
    Path to the file containing the values for the Helm parameter.
    name str
    Name of the Helm parameter.
    path str
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceHelmParameter, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceHelmParameterArgs

    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.
    forceString boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name string
    Name of the Helm parameter.
    value string
    Value of the Helm parameter.
    force_string bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name str
    Name of the Helm parameter.
    value str
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceKustomize, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceKustomizeArgs

    CommonAnnotations Dictionary<string, string>
    List of additional annotations to add to rendered manifests.
    CommonLabels Dictionary<string, string>
    List of additional labels to add to rendered manifests.
    Images List<string>
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    CommonAnnotations map[string]string
    List of additional annotations to add to rendered manifests.
    CommonLabels map[string]string
    List of additional labels to add to rendered manifests.
    Images []string
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceKustomizePatch
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String,String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String,String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.
    commonAnnotations {[key: string]: string}
    List of additional annotations to add to rendered manifests.
    commonLabels {[key: string]: string}
    List of additional labels to add to rendered manifests.
    images string[]
    List of Kustomize image override specifications.
    namePrefix string
    Prefix appended to resources for Kustomize apps.
    nameSuffix string
    Suffix appended to resources for Kustomize apps.
    patches ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceKustomizePatch[]
    A list of Kustomize patches to apply.
    version string
    Version of Kustomize to use for rendering manifests.
    common_annotations Mapping[str, str]
    List of additional annotations to add to rendered manifests.
    common_labels Mapping[str, str]
    List of additional labels to add to rendered manifests.
    images Sequence[str]
    List of Kustomize image override specifications.
    name_prefix str
    Prefix appended to resources for Kustomize apps.
    name_suffix str
    Suffix appended to resources for Kustomize apps.
    patches Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceKustomizePatch]
    A list of Kustomize patches to apply.
    version str
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<Property Map>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceKustomizePatch, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceKustomizePatchArgs

    Target Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options Dictionary<string, bool>
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    Target ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options map[string]bool
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Map<String,Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options {[key: string]: boolean}
    Additional options.
    patch string
    Inline Kustomize patch to apply.
    path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Mapping[str, bool]
    Additional options.
    patch str
    Inline Kustomize patch to apply.
    path str
    Path to a file containing the patch to apply.
    target Property Map
    Target(s) to patch
    options Map<Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceKustomizePatchTarget, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourceKustomizePatchTargetArgs

    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.
    annotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    group string
    The Kubernetes resource Group to match for.
    kind string
    The Kubernetes resource Kind to match for.
    labelSelector string
    Label selector to use when matching the Kubernetes resource.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    version string
    The Kubernetes resource Version to match for.
    annotation_selector str
    Annotation selector to use when matching the Kubernetes resource.
    group str
    The Kubernetes resource Group to match for.
    kind str
    The Kubernetes resource Kind to match for.
    label_selector str
    Label selector to use when matching the Kubernetes resource.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    version str
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourcePlugin, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourcePluginArgs

    Envs List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    Envs []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourcePluginEnv
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourcePluginEnv[]
    Environment variables passed to the plugin.
    name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourcePluginEnv]
    Environment variables passed to the plugin.
    name str
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<Property Map>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourcePluginEnv, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSourcePluginEnvArgs

    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.
    name string
    Name of the environment variable.
    value string
    Value of the environment variable.
    name str
    Name of the environment variable.
    value str
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicy, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicyArgs

    Automated Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions List<string>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    Automated ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions []string
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions string[]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managed_namespace_metadata ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    sync_options Sequence[str]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated Property Map
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata Property Map
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry Property Map
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicyAutomated, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicyAutomatedArgs

    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty boolean
    Allows apps have zero live resources.
    prune boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allow_empty bool
    Allows apps have zero live resources.
    prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    self_heal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadata, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadataArgs

    Annotations Dictionary<string, string>
    Annotations to apply to the namespace.
    Labels Dictionary<string, string>
    Labels to apply to the namespace.
    Annotations map[string]string
    Annotations to apply to the namespace.
    Labels map[string]string
    Labels to apply to the namespace.
    annotations Map<String,String>
    Annotations to apply to the namespace.
    labels Map<String,String>
    Labels to apply to the namespace.
    annotations {[key: string]: string}
    Annotations to apply to the namespace.
    labels {[key: string]: string}
    Labels to apply to the namespace.
    annotations Mapping[str, str]
    Annotations to apply to the namespace.
    labels Mapping[str, str]
    Labels to apply to the namespace.
    annotations Map<String>
    Annotations to apply to the namespace.
    labels Map<String>
    Labels to apply to the namespace.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicyRetry, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicyRetryArgs

    Backoff Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    Backoff ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit str
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff Property Map
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicyRetryBackoff, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorGitTemplateSpecSyncPolicyRetryBackoffArgs

    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor string
    Factor to multiply the base duration after each failed retry.
    maxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration str
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor str
    Factor to multiply the base duration after each failed retry.
    max_duration str
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorList, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListArgs

    Elements List<ImmutableDictionary<string, string>>
    List of key/value pairs to pass as parameters into the template
    Template Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplate
    Generator template. Used to override the values of the spec-level template.
    Elements []map[string]string
    List of key/value pairs to pass as parameters into the template
    Template ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplate
    Generator template. Used to override the values of the spec-level template.
    elements List<Map<String,String>>
    List of key/value pairs to pass as parameters into the template
    template ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplate
    Generator template. Used to override the values of the spec-level template.
    elements {[key: string]: string}[]
    List of key/value pairs to pass as parameters into the template
    template ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplate
    Generator template. Used to override the values of the spec-level template.
    elements Sequence[Mapping[str, str]]
    List of key/value pairs to pass as parameters into the template
    template ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplate
    Generator template. Used to override the values of the spec-level template.
    elements List<Map<String>>
    List of key/value pairs to pass as parameters into the template
    template Property Map
    Generator template. Used to override the values of the spec-level template.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplate, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateArgs

    metadata Property Map
    Kubernetes object metadata for templated Application.
    spec Property Map
    The application specification.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateMetadata, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateMetadataArgs

    Annotations Dictionary<string, string>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers List<string>
    List of finalizers to apply to the resulting Application.
    Labels Dictionary<string, string>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    Annotations map[string]string
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers []string
    List of finalizers to apply to the resulting Application.
    Labels map[string]string
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    annotations Map<String,String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String,String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application
    annotations {[key: string]: string}
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers string[]
    List of finalizers to apply to the resulting Application.
    labels {[key: string]: string}
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name string
    Name of the resulting Application
    namespace string
    Namespace of the resulting Application
    annotations Mapping[str, str]
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers Sequence[str]
    List of finalizers to apply to the resulting Application.
    labels Mapping[str, str]
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name str
    Name of the resulting Application
    namespace str
    Namespace of the resulting Application
    annotations Map<String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpec, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecArgs

    Destination Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSource>
    Location of the application's manifests or chart.
    SyncPolicy Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    Destination ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecIgnoreDifference
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecInfo
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSource
    Location of the application's manifests or chart.
    SyncPolicy ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Integer
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSource>
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecIgnoreDifference[]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecInfo[]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project string
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSource[]
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignore_differences Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecIgnoreDifference]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecInfo]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project str
    The project the application belongs to. Defaults to default.
    revision_history_limit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSource]
    Location of the application's manifests or chart.
    sync_policy ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination Property Map
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<Property Map>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<Property Map>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<Property Map>
    Location of the application's manifests or chart.
    syncPolicy Property Map
    Controls when and how a sync will be performed.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecDestination, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecDestinationArgs

    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name string
    Name of the target cluster. Can be used instead of server.
    namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name str
    Name of the target cluster. Can be used instead of server.
    namespace str
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server str
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecIgnoreDifference, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecIgnoreDifferenceArgs

    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions List<string>
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers List<string>
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers List<string>
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions []string
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers []string
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers []string
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    group string
    The Kubernetes resource Group to match for.
    jqPathExpressions string[]
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers string[]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind string
    The Kubernetes resource Kind to match for.
    managedFieldsManagers string[]
    List of external controller manager names whose changes to fields should be ignored.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    group str
    The Kubernetes resource Group to match for.
    jq_path_expressions Sequence[str]
    List of JQ path expression strings targeting the field(s) to ignore.
    json_pointers Sequence[str]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind str
    The Kubernetes resource Kind to match for.
    managed_fields_managers Sequence[str]
    List of external controller manager names whose changes to fields should be ignored.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecInfo, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecInfoArgs

    Name string
    Name of the information.
    Value string
    Value of the information.
    Name string
    Name of the information.
    Value string
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.
    name string
    Name of the information.
    value string
    Value of the information.
    name str
    Name of the information.
    value str
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSource, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceArgs

    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceHelm
    Helm specific options.
    Kustomize Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceHelm
    Helm specific options.
    Kustomize ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceKustomize
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceKustomize
    Kustomize specific options.
    path string
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart str
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceKustomize
    Kustomize specific options.
    path str
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref str
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repo_url str
    URL to the repository (Git or Helm) that contains the application manifests.
    target_revision str
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory Property Map
    Path/directory specific options.
    helm Property Map
    Helm specific options.
    kustomize Property Map
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin Property Map
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceDirectory, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceDirectoryArgs

    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.
    exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse boolean
    Whether to scan a directory recursively for manifests.
    exclude str
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include str
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet Property Map
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnet, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnetArgs

    extVars List<Property Map>
    List of Jsonnet External Variables.
    libs List<String>
    Additional library search dirs.
    tlas List<Property Map>
    List of Jsonnet Top-level Arguments

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnetExtVar, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnetExtVarArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnetTla, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnetTlaArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceHelm, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceHelmArgs

    FileParameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles List<string>
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    FileParameters []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceHelmFileParameter
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceHelmParameter
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles []string
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceHelmFileParameter[]
    File parameters for the helm template.
    ignoreMissingValueFiles boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceHelmParameter[]
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName string
    Helm release name. If omitted it will use the application name.
    skipCrds boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles string[]
    List of Helm value files to use when generating a template.
    values string
    Helm values to be passed to 'helm template', typically defined as a block.
    version string
    The Helm version to use for templating. Accepts either v2 or v3
    file_parameters Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceHelmFileParameter]
    File parameters for the helm template.
    ignore_missing_value_files bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceHelmParameter]
    Helm parameters which are passed to the helm template command upon manifest generation.
    pass_credentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    release_name str
    Helm release name. If omitted it will use the application name.
    skip_crds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    value_files Sequence[str]
    List of Helm value files to use when generating a template.
    values str
    Helm values to be passed to 'helm template', typically defined as a block.
    version str
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<Property Map>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<Property Map>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceHelmFileParameter, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceHelmFileParameterArgs

    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.
    name string
    Name of the Helm parameter.
    path string
    Path to the file containing the values for the Helm parameter.
    name str
    Name of the Helm parameter.
    path str
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceHelmParameter, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceHelmParameterArgs

    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.
    forceString boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name string
    Name of the Helm parameter.
    value string
    Value of the Helm parameter.
    force_string bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name str
    Name of the Helm parameter.
    value str
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceKustomize, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceKustomizeArgs

    CommonAnnotations Dictionary<string, string>
    List of additional annotations to add to rendered manifests.
    CommonLabels Dictionary<string, string>
    List of additional labels to add to rendered manifests.
    Images List<string>
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    CommonAnnotations map[string]string
    List of additional annotations to add to rendered manifests.
    CommonLabels map[string]string
    List of additional labels to add to rendered manifests.
    Images []string
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceKustomizePatch
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String,String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String,String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.
    commonAnnotations {[key: string]: string}
    List of additional annotations to add to rendered manifests.
    commonLabels {[key: string]: string}
    List of additional labels to add to rendered manifests.
    images string[]
    List of Kustomize image override specifications.
    namePrefix string
    Prefix appended to resources for Kustomize apps.
    nameSuffix string
    Suffix appended to resources for Kustomize apps.
    patches ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceKustomizePatch[]
    A list of Kustomize patches to apply.
    version string
    Version of Kustomize to use for rendering manifests.
    common_annotations Mapping[str, str]
    List of additional annotations to add to rendered manifests.
    common_labels Mapping[str, str]
    List of additional labels to add to rendered manifests.
    images Sequence[str]
    List of Kustomize image override specifications.
    name_prefix str
    Prefix appended to resources for Kustomize apps.
    name_suffix str
    Suffix appended to resources for Kustomize apps.
    patches Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceKustomizePatch]
    A list of Kustomize patches to apply.
    version str
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<Property Map>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceKustomizePatch, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceKustomizePatchArgs

    Target Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options Dictionary<string, bool>
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    Target ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options map[string]bool
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Map<String,Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options {[key: string]: boolean}
    Additional options.
    patch string
    Inline Kustomize patch to apply.
    path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Mapping[str, bool]
    Additional options.
    patch str
    Inline Kustomize patch to apply.
    path str
    Path to a file containing the patch to apply.
    target Property Map
    Target(s) to patch
    options Map<Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceKustomizePatchTarget, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourceKustomizePatchTargetArgs

    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.
    annotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    group string
    The Kubernetes resource Group to match for.
    kind string
    The Kubernetes resource Kind to match for.
    labelSelector string
    Label selector to use when matching the Kubernetes resource.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    version string
    The Kubernetes resource Version to match for.
    annotation_selector str
    Annotation selector to use when matching the Kubernetes resource.
    group str
    The Kubernetes resource Group to match for.
    kind str
    The Kubernetes resource Kind to match for.
    label_selector str
    Label selector to use when matching the Kubernetes resource.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    version str
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourcePlugin, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourcePluginArgs

    Envs List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    Envs []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourcePluginEnv
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourcePluginEnv[]
    Environment variables passed to the plugin.
    name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourcePluginEnv]
    Environment variables passed to the plugin.
    name str
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<Property Map>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourcePluginEnv, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSourcePluginEnvArgs

    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.
    name string
    Name of the environment variable.
    value string
    Value of the environment variable.
    name str
    Name of the environment variable.
    value str
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicy, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicyArgs

    Automated Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions List<string>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    Automated ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions []string
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions string[]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managed_namespace_metadata ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    sync_options Sequence[str]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated Property Map
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata Property Map
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry Property Map
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicyAutomated, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicyAutomatedArgs

    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty boolean
    Allows apps have zero live resources.
    prune boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allow_empty bool
    Allows apps have zero live resources.
    prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    self_heal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadata, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadataArgs

    Annotations Dictionary<string, string>
    Annotations to apply to the namespace.
    Labels Dictionary<string, string>
    Labels to apply to the namespace.
    Annotations map[string]string
    Annotations to apply to the namespace.
    Labels map[string]string
    Labels to apply to the namespace.
    annotations Map<String,String>
    Annotations to apply to the namespace.
    labels Map<String,String>
    Labels to apply to the namespace.
    annotations {[key: string]: string}
    Annotations to apply to the namespace.
    labels {[key: string]: string}
    Labels to apply to the namespace.
    annotations Mapping[str, str]
    Annotations to apply to the namespace.
    labels Mapping[str, str]
    Labels to apply to the namespace.
    annotations Map<String>
    Annotations to apply to the namespace.
    labels Map<String>
    Labels to apply to the namespace.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicyRetry, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicyRetryArgs

    Backoff Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    Backoff ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit str
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff Property Map
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicyRetryBackoff, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorListTemplateSpecSyncPolicyRetryBackoffArgs

    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor string
    Factor to multiply the base duration after each failed retry.
    maxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration str
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor str
    Factor to multiply the base duration after each failed retry.
    max_duration str
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequest, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestArgs

    BitbucketServer Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestBitbucketServer
    Fetch pull requests from a repo hosted on a Bitbucket Server.
    Filters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestFilter>
    Filters allow selecting which pull requests to generate for.
    Gitea Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGitea
    Specify the repository from which to fetch the Gitea Pull requests.
    Github Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGithub
    Specify the repository from which to fetch the GitHub Pull requests.
    Gitlab Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGitlab
    Specify the project from which to fetch the GitLab merge requests.
    RequeueAfterSeconds string
    How often to check for changes (in seconds). Default: 30min.
    Template Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplate
    Generator template. Used to override the values of the spec-level template.
    BitbucketServer ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestBitbucketServer
    Fetch pull requests from a repo hosted on a Bitbucket Server.
    Filters []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestFilter
    Filters allow selecting which pull requests to generate for.
    Gitea ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGitea
    Specify the repository from which to fetch the Gitea Pull requests.
    Github ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGithub
    Specify the repository from which to fetch the GitHub Pull requests.
    Gitlab ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGitlab
    Specify the project from which to fetch the GitLab merge requests.
    RequeueAfterSeconds string
    How often to check for changes (in seconds). Default: 30min.
    Template ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplate
    Generator template. Used to override the values of the spec-level template.
    bitbucketServer ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestBitbucketServer
    Fetch pull requests from a repo hosted on a Bitbucket Server.
    filters List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestFilter>
    Filters allow selecting which pull requests to generate for.
    gitea ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGitea
    Specify the repository from which to fetch the Gitea Pull requests.
    github ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGithub
    Specify the repository from which to fetch the GitHub Pull requests.
    gitlab ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGitlab
    Specify the project from which to fetch the GitLab merge requests.
    requeueAfterSeconds String
    How often to check for changes (in seconds). Default: 30min.
    template ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplate
    Generator template. Used to override the values of the spec-level template.
    bitbucketServer ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestBitbucketServer
    Fetch pull requests from a repo hosted on a Bitbucket Server.
    filters ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestFilter[]
    Filters allow selecting which pull requests to generate for.
    gitea ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGitea
    Specify the repository from which to fetch the Gitea Pull requests.
    github ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGithub
    Specify the repository from which to fetch the GitHub Pull requests.
    gitlab ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGitlab
    Specify the project from which to fetch the GitLab merge requests.
    requeueAfterSeconds string
    How often to check for changes (in seconds). Default: 30min.
    template ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplate
    Generator template. Used to override the values of the spec-level template.
    bitbucket_server ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestBitbucketServer
    Fetch pull requests from a repo hosted on a Bitbucket Server.
    filters Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestFilter]
    Filters allow selecting which pull requests to generate for.
    gitea ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGitea
    Specify the repository from which to fetch the Gitea Pull requests.
    github ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGithub
    Specify the repository from which to fetch the GitHub Pull requests.
    gitlab ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGitlab
    Specify the project from which to fetch the GitLab merge requests.
    requeue_after_seconds str
    How often to check for changes (in seconds). Default: 30min.
    template ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplate
    Generator template. Used to override the values of the spec-level template.
    bitbucketServer Property Map
    Fetch pull requests from a repo hosted on a Bitbucket Server.
    filters List<Property Map>
    Filters allow selecting which pull requests to generate for.
    gitea Property Map
    Specify the repository from which to fetch the Gitea Pull requests.
    github Property Map
    Specify the repository from which to fetch the GitHub Pull requests.
    gitlab Property Map
    Specify the project from which to fetch the GitLab merge requests.
    requeueAfterSeconds String
    How often to check for changes (in seconds). Default: 30min.
    template Property Map
    Generator template. Used to override the values of the spec-level template.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestBitbucketServer, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestBitbucketServerArgs

    Api string
    The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest.
    Project string
    Project to scan.
    Repo string
    Repo name to scan.
    BasicAuth Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestBitbucketServerBasicAuth
    Credentials for Basic auth.
    Api string
    The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest.
    Project string
    Project to scan.
    Repo string
    Repo name to scan.
    BasicAuth ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestBitbucketServerBasicAuth
    Credentials for Basic auth.
    api String
    The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest.
    project String
    Project to scan.
    repo String
    Repo name to scan.
    basicAuth ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestBitbucketServerBasicAuth
    Credentials for Basic auth.
    api string
    The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest.
    project string
    Project to scan.
    repo string
    Repo name to scan.
    basicAuth ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestBitbucketServerBasicAuth
    Credentials for Basic auth.
    api str
    The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest.
    project str
    Project to scan.
    repo str
    Repo name to scan.
    basic_auth ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestBitbucketServerBasicAuth
    Credentials for Basic auth.
    api String
    The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest.
    project String
    Project to scan.
    repo String
    Repo name to scan.
    basicAuth Property Map
    Credentials for Basic auth.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestBitbucketServerBasicAuth, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestBitbucketServerBasicAuthArgs

    passwordRef Property Map
    Password (or personal access token) reference.
    username String
    Username for Basic auth.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestBitbucketServerBasicAuthPasswordRef, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestBitbucketServerBasicAuthPasswordRefArgs

    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.
    key string
    Key containing information in Kubernetes Secret.
    secretName string
    Name of Kubernetes Secret.
    key str
    Key containing information in Kubernetes Secret.
    secret_name str
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestFilter, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestFilterArgs

    BranchMatch string
    A regex which must match the branch name.
    BranchMatch string
    A regex which must match the branch name.
    branchMatch String
    A regex which must match the branch name.
    branchMatch string
    A regex which must match the branch name.
    branch_match str
    A regex which must match the branch name.
    branchMatch String
    A regex which must match the branch name.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGitea, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGiteaArgs

    Api string
    The Gitea API URL to talk to.
    Owner string
    Gitea org or user to scan.
    Repo string
    Gitea repo name to scan.
    Insecure bool
    Allow insecure tls, for self-signed certificates; default: false.
    TokenRef Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGiteaTokenRef
    Authentication token reference.
    Api string
    The Gitea API URL to talk to.
    Owner string
    Gitea org or user to scan.
    Repo string
    Gitea repo name to scan.
    Insecure bool
    Allow insecure tls, for self-signed certificates; default: false.
    TokenRef ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGiteaTokenRef
    Authentication token reference.
    api String
    The Gitea API URL to talk to.
    owner String
    Gitea org or user to scan.
    repo String
    Gitea repo name to scan.
    insecure Boolean
    Allow insecure tls, for self-signed certificates; default: false.
    tokenRef ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGiteaTokenRef
    Authentication token reference.
    api string
    The Gitea API URL to talk to.
    owner string
    Gitea org or user to scan.
    repo string
    Gitea repo name to scan.
    insecure boolean
    Allow insecure tls, for self-signed certificates; default: false.
    tokenRef ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGiteaTokenRef
    Authentication token reference.
    api str
    The Gitea API URL to talk to.
    owner str
    Gitea org or user to scan.
    repo str
    Gitea repo name to scan.
    insecure bool
    Allow insecure tls, for self-signed certificates; default: false.
    token_ref ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGiteaTokenRef
    Authentication token reference.
    api String
    The Gitea API URL to talk to.
    owner String
    Gitea org or user to scan.
    repo String
    Gitea repo name to scan.
    insecure Boolean
    Allow insecure tls, for self-signed certificates; default: false.
    tokenRef Property Map
    Authentication token reference.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGiteaTokenRef, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGiteaTokenRefArgs

    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.
    key string
    Key containing information in Kubernetes Secret.
    secretName string
    Name of Kubernetes Secret.
    key str
    Key containing information in Kubernetes Secret.
    secret_name str
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGithub, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGithubArgs

    Owner string
    GitHub org or user to scan.
    Repo string
    GitHub repo name to scan.
    Api string
    The GitHub API URL to talk to. Default https://api.github.com/.
    AppSecretName string
    Reference to a GitHub App repo-creds secret with permission to access pull requests.
    Labels List<string>
    Labels is used to filter the PRs that you want to target.
    TokenRef Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGithubTokenRef
    Authentication token reference.
    Owner string
    GitHub org or user to scan.
    Repo string
    GitHub repo name to scan.
    Api string
    The GitHub API URL to talk to. Default https://api.github.com/.
    AppSecretName string
    Reference to a GitHub App repo-creds secret with permission to access pull requests.
    Labels []string
    Labels is used to filter the PRs that you want to target.
    TokenRef ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGithubTokenRef
    Authentication token reference.
    owner String
    GitHub org or user to scan.
    repo String
    GitHub repo name to scan.
    api String
    The GitHub API URL to talk to. Default https://api.github.com/.
    appSecretName String
    Reference to a GitHub App repo-creds secret with permission to access pull requests.
    labels List<String>
    Labels is used to filter the PRs that you want to target.
    tokenRef ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGithubTokenRef
    Authentication token reference.
    owner string
    GitHub org or user to scan.
    repo string
    GitHub repo name to scan.
    api string
    The GitHub API URL to talk to. Default https://api.github.com/.
    appSecretName string
    Reference to a GitHub App repo-creds secret with permission to access pull requests.
    labels string[]
    Labels is used to filter the PRs that you want to target.
    tokenRef ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGithubTokenRef
    Authentication token reference.
    owner str
    GitHub org or user to scan.
    repo str
    GitHub repo name to scan.
    api str
    The GitHub API URL to talk to. Default https://api.github.com/.
    app_secret_name str
    Reference to a GitHub App repo-creds secret with permission to access pull requests.
    labels Sequence[str]
    Labels is used to filter the PRs that you want to target.
    token_ref ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGithubTokenRef
    Authentication token reference.
    owner String
    GitHub org or user to scan.
    repo String
    GitHub repo name to scan.
    api String
    The GitHub API URL to talk to. Default https://api.github.com/.
    appSecretName String
    Reference to a GitHub App repo-creds secret with permission to access pull requests.
    labels List<String>
    Labels is used to filter the PRs that you want to target.
    tokenRef Property Map
    Authentication token reference.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGithubTokenRef, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGithubTokenRefArgs

    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.
    key string
    Key containing information in Kubernetes Secret.
    secretName string
    Name of Kubernetes Secret.
    key str
    Key containing information in Kubernetes Secret.
    secret_name str
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGitlab, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGitlabArgs

    Project string
    GitLab project to scan.
    Api string
    The GitLab API URL to talk to. If blank, uses https://gitlab.com/.
    Labels List<string>
    Labels is used to filter the PRs that you want to target.
    PullRequestState string
    additional MRs filter to get only those with a certain state. Default: "" (all states).
    TokenRef Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGitlabTokenRef
    Authentication token reference.
    Project string
    GitLab project to scan.
    Api string
    The GitLab API URL to talk to. If blank, uses https://gitlab.com/.
    Labels []string
    Labels is used to filter the PRs that you want to target.
    PullRequestState string
    additional MRs filter to get only those with a certain state. Default: "" (all states).
    TokenRef ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGitlabTokenRef
    Authentication token reference.
    project String
    GitLab project to scan.
    api String
    The GitLab API URL to talk to. If blank, uses https://gitlab.com/.
    labels List<String>
    Labels is used to filter the PRs that you want to target.
    pullRequestState String
    additional MRs filter to get only those with a certain state. Default: "" (all states).
    tokenRef ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGitlabTokenRef
    Authentication token reference.
    project string
    GitLab project to scan.
    api string
    The GitLab API URL to talk to. If blank, uses https://gitlab.com/.
    labels string[]
    Labels is used to filter the PRs that you want to target.
    pullRequestState string
    additional MRs filter to get only those with a certain state. Default: "" (all states).
    tokenRef ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGitlabTokenRef
    Authentication token reference.
    project str
    GitLab project to scan.
    api str
    The GitLab API URL to talk to. If blank, uses https://gitlab.com/.
    labels Sequence[str]
    Labels is used to filter the PRs that you want to target.
    pull_request_state str
    additional MRs filter to get only those with a certain state. Default: "" (all states).
    token_ref ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGitlabTokenRef
    Authentication token reference.
    project String
    GitLab project to scan.
    api String
    The GitLab API URL to talk to. If blank, uses https://gitlab.com/.
    labels List<String>
    Labels is used to filter the PRs that you want to target.
    pullRequestState String
    additional MRs filter to get only those with a certain state. Default: "" (all states).
    tokenRef Property Map
    Authentication token reference.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGitlabTokenRef, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestGitlabTokenRefArgs

    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.
    key string
    Key containing information in Kubernetes Secret.
    secretName string
    Name of Kubernetes Secret.
    key str
    Key containing information in Kubernetes Secret.
    secret_name str
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplate, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateArgs

    metadata Property Map
    Kubernetes object metadata for templated Application.
    spec Property Map
    The application specification.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateMetadata, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateMetadataArgs

    Annotations Dictionary<string, string>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers List<string>
    List of finalizers to apply to the resulting Application.
    Labels Dictionary<string, string>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    Annotations map[string]string
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers []string
    List of finalizers to apply to the resulting Application.
    Labels map[string]string
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    annotations Map<String,String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String,String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application
    annotations {[key: string]: string}
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers string[]
    List of finalizers to apply to the resulting Application.
    labels {[key: string]: string}
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name string
    Name of the resulting Application
    namespace string
    Namespace of the resulting Application
    annotations Mapping[str, str]
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers Sequence[str]
    List of finalizers to apply to the resulting Application.
    labels Mapping[str, str]
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name str
    Name of the resulting Application
    namespace str
    Namespace of the resulting Application
    annotations Map<String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpec, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecArgs

    Destination Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSource>
    Location of the application's manifests or chart.
    SyncPolicy Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    Destination ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecIgnoreDifference
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecInfo
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSource
    Location of the application's manifests or chart.
    SyncPolicy ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Integer
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSource>
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecIgnoreDifference[]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecInfo[]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project string
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSource[]
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignore_differences Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecIgnoreDifference]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecInfo]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project str
    The project the application belongs to. Defaults to default.
    revision_history_limit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSource]
    Location of the application's manifests or chart.
    sync_policy ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination Property Map
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<Property Map>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<Property Map>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<Property Map>
    Location of the application's manifests or chart.
    syncPolicy Property Map
    Controls when and how a sync will be performed.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecDestination, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecDestinationArgs

    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name string
    Name of the target cluster. Can be used instead of server.
    namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name str
    Name of the target cluster. Can be used instead of server.
    namespace str
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server str
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecIgnoreDifference, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecIgnoreDifferenceArgs

    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions List<string>
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers List<string>
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers List<string>
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions []string
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers []string
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers []string
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    group string
    The Kubernetes resource Group to match for.
    jqPathExpressions string[]
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers string[]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind string
    The Kubernetes resource Kind to match for.
    managedFieldsManagers string[]
    List of external controller manager names whose changes to fields should be ignored.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    group str
    The Kubernetes resource Group to match for.
    jq_path_expressions Sequence[str]
    List of JQ path expression strings targeting the field(s) to ignore.
    json_pointers Sequence[str]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind str
    The Kubernetes resource Kind to match for.
    managed_fields_managers Sequence[str]
    List of external controller manager names whose changes to fields should be ignored.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecInfo, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecInfoArgs

    Name string
    Name of the information.
    Value string
    Value of the information.
    Name string
    Name of the information.
    Value string
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.
    name string
    Name of the information.
    value string
    Value of the information.
    name str
    Name of the information.
    value str
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSource, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceArgs

    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelm
    Helm specific options.
    Kustomize Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelm
    Helm specific options.
    Kustomize ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomize
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomize
    Kustomize specific options.
    path string
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart str
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomize
    Kustomize specific options.
    path str
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref str
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repo_url str
    URL to the repository (Git or Helm) that contains the application manifests.
    target_revision str
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory Property Map
    Path/directory specific options.
    helm Property Map
    Helm specific options.
    kustomize Property Map
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin Property Map
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectory, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryArgs

    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.
    exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse boolean
    Whether to scan a directory recursively for manifests.
    exclude str
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include str
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet Property Map
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryJsonnet, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetArgs

    extVars List<Property Map>
    List of Jsonnet External Variables.
    libs List<String>
    Additional library search dirs.
    tlas List<Property Map>
    List of Jsonnet Top-level Arguments

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetExtVar, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetExtVarArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetTla, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetTlaArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelm, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmArgs

    FileParameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles List<string>
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    FileParameters []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmFileParameter
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmParameter
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles []string
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmFileParameter[]
    File parameters for the helm template.
    ignoreMissingValueFiles boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmParameter[]
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName string
    Helm release name. If omitted it will use the application name.
    skipCrds boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles string[]
    List of Helm value files to use when generating a template.
    values string
    Helm values to be passed to 'helm template', typically defined as a block.
    version string
    The Helm version to use for templating. Accepts either v2 or v3
    file_parameters Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmFileParameter]
    File parameters for the helm template.
    ignore_missing_value_files bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmParameter]
    Helm parameters which are passed to the helm template command upon manifest generation.
    pass_credentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    release_name str
    Helm release name. If omitted it will use the application name.
    skip_crds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    value_files Sequence[str]
    List of Helm value files to use when generating a template.
    values str
    Helm values to be passed to 'helm template', typically defined as a block.
    version str
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<Property Map>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<Property Map>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmFileParameter, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmFileParameterArgs

    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.
    name string
    Name of the Helm parameter.
    path string
    Path to the file containing the values for the Helm parameter.
    name str
    Name of the Helm parameter.
    path str
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmParameter, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceHelmParameterArgs

    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.
    forceString boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name string
    Name of the Helm parameter.
    value string
    Value of the Helm parameter.
    force_string bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name str
    Name of the Helm parameter.
    value str
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomize, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomizeArgs

    CommonAnnotations Dictionary<string, string>
    List of additional annotations to add to rendered manifests.
    CommonLabels Dictionary<string, string>
    List of additional labels to add to rendered manifests.
    Images List<string>
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    CommonAnnotations map[string]string
    List of additional annotations to add to rendered manifests.
    CommonLabels map[string]string
    List of additional labels to add to rendered manifests.
    Images []string
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomizePatch
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String,String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String,String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.
    commonAnnotations {[key: string]: string}
    List of additional annotations to add to rendered manifests.
    commonLabels {[key: string]: string}
    List of additional labels to add to rendered manifests.
    images string[]
    List of Kustomize image override specifications.
    namePrefix string
    Prefix appended to resources for Kustomize apps.
    nameSuffix string
    Suffix appended to resources for Kustomize apps.
    patches ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomizePatch[]
    A list of Kustomize patches to apply.
    version string
    Version of Kustomize to use for rendering manifests.
    common_annotations Mapping[str, str]
    List of additional annotations to add to rendered manifests.
    common_labels Mapping[str, str]
    List of additional labels to add to rendered manifests.
    images Sequence[str]
    List of Kustomize image override specifications.
    name_prefix str
    Prefix appended to resources for Kustomize apps.
    name_suffix str
    Suffix appended to resources for Kustomize apps.
    patches Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomizePatch]
    A list of Kustomize patches to apply.
    version str
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<Property Map>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomizePatch, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomizePatchArgs

    Target Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options Dictionary<string, bool>
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    Target ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options map[string]bool
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Map<String,Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options {[key: string]: boolean}
    Additional options.
    patch string
    Inline Kustomize patch to apply.
    path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Mapping[str, bool]
    Additional options.
    patch str
    Inline Kustomize patch to apply.
    path str
    Path to a file containing the patch to apply.
    target Property Map
    Target(s) to patch
    options Map<Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomizePatchTarget, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourceKustomizePatchTargetArgs

    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.
    annotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    group string
    The Kubernetes resource Group to match for.
    kind string
    The Kubernetes resource Kind to match for.
    labelSelector string
    Label selector to use when matching the Kubernetes resource.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    version string
    The Kubernetes resource Version to match for.
    annotation_selector str
    Annotation selector to use when matching the Kubernetes resource.
    group str
    The Kubernetes resource Group to match for.
    kind str
    The Kubernetes resource Kind to match for.
    label_selector str
    Label selector to use when matching the Kubernetes resource.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    version str
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourcePlugin, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourcePluginArgs

    Envs List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    Envs []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourcePluginEnv
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourcePluginEnv[]
    Environment variables passed to the plugin.
    name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourcePluginEnv]
    Environment variables passed to the plugin.
    name str
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<Property Map>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourcePluginEnv, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSourcePluginEnvArgs

    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.
    name string
    Name of the environment variable.
    value string
    Value of the environment variable.
    name str
    Name of the environment variable.
    value str
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicy, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyArgs

    Automated Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions List<string>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    Automated ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions []string
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions string[]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managed_namespace_metadata ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    sync_options Sequence[str]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated Property Map
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata Property Map
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry Property Map
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyAutomated, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyAutomatedArgs

    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty boolean
    Allows apps have zero live resources.
    prune boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allow_empty bool
    Allows apps have zero live resources.
    prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    self_heal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyManagedNamespaceMetadata, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyManagedNamespaceMetadataArgs

    Annotations Dictionary<string, string>
    Annotations to apply to the namespace.
    Labels Dictionary<string, string>
    Labels to apply to the namespace.
    Annotations map[string]string
    Annotations to apply to the namespace.
    Labels map[string]string
    Labels to apply to the namespace.
    annotations Map<String,String>
    Annotations to apply to the namespace.
    labels Map<String,String>
    Labels to apply to the namespace.
    annotations {[key: string]: string}
    Annotations to apply to the namespace.
    labels {[key: string]: string}
    Labels to apply to the namespace.
    annotations Mapping[str, str]
    Annotations to apply to the namespace.
    labels Mapping[str, str]
    Labels to apply to the namespace.
    annotations Map<String>
    Annotations to apply to the namespace.
    labels Map<String>
    Labels to apply to the namespace.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyRetry, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyRetryArgs

    Backoff Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    Backoff ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit str
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff Property Map
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyRetryBackoff, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorPullRequestTemplateSpecSyncPolicyRetryBackoffArgs

    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor string
    Factor to multiply the base duration after each failed retry.
    maxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration str
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor str
    Factor to multiply the base duration after each failed retry.
    max_duration str
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProvider, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderArgs

    AzureDevops Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderAzureDevops
    Uses the Azure DevOps API to look up eligible repositories based on a team project within an Azure DevOps organization.
    BitbucketCloud Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderBitbucketCloud
    Uses the Bitbucket API V2 to scan a workspace in bitbucket.org.
    BitbucketServer Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderBitbucketServer
    Use the Bitbucket Server API (1.0) to scan repos in a project.
    CloneProtocol string
    Which protocol to use for the SCM URL. Default is provider-specific but ssh if possible. Not all providers necessarily support all protocols.
    Filters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderFilter>
    Filters for which repos should be considered.
    Gitea Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGitea
    Gitea mode uses the Gitea API to scan organizations in your instance.
    Github Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGithub
    Uses the GitHub API to scan an organization in either github.com or GitHub Enterprise.
    Gitlab Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGitlab
    Uses the GitLab API to scan and organization in either gitlab.com or self-hosted GitLab.
    RequeueAfterSeconds string
    How often to check for changes (in seconds). Default: 3min.
    Template Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplate
    Generator template. Used to override the values of the spec-level template.
    AzureDevops ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderAzureDevops
    Uses the Azure DevOps API to look up eligible repositories based on a team project within an Azure DevOps organization.
    BitbucketCloud ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderBitbucketCloud
    Uses the Bitbucket API V2 to scan a workspace in bitbucket.org.
    BitbucketServer ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderBitbucketServer
    Use the Bitbucket Server API (1.0) to scan repos in a project.
    CloneProtocol string
    Which protocol to use for the SCM URL. Default is provider-specific but ssh if possible. Not all providers necessarily support all protocols.
    Filters []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderFilter
    Filters for which repos should be considered.
    Gitea ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGitea
    Gitea mode uses the Gitea API to scan organizations in your instance.
    Github ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGithub
    Uses the GitHub API to scan an organization in either github.com or GitHub Enterprise.
    Gitlab ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGitlab
    Uses the GitLab API to scan and organization in either gitlab.com or self-hosted GitLab.
    RequeueAfterSeconds string
    How often to check for changes (in seconds). Default: 3min.
    Template ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplate
    Generator template. Used to override the values of the spec-level template.
    azureDevops ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderAzureDevops
    Uses the Azure DevOps API to look up eligible repositories based on a team project within an Azure DevOps organization.
    bitbucketCloud ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderBitbucketCloud
    Uses the Bitbucket API V2 to scan a workspace in bitbucket.org.
    bitbucketServer ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderBitbucketServer
    Use the Bitbucket Server API (1.0) to scan repos in a project.
    cloneProtocol String
    Which protocol to use for the SCM URL. Default is provider-specific but ssh if possible. Not all providers necessarily support all protocols.
    filters List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderFilter>
    Filters for which repos should be considered.
    gitea ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGitea
    Gitea mode uses the Gitea API to scan organizations in your instance.
    github ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGithub
    Uses the GitHub API to scan an organization in either github.com or GitHub Enterprise.
    gitlab ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGitlab
    Uses the GitLab API to scan and organization in either gitlab.com or self-hosted GitLab.
    requeueAfterSeconds String
    How often to check for changes (in seconds). Default: 3min.
    template ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplate
    Generator template. Used to override the values of the spec-level template.
    azureDevops ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderAzureDevops
    Uses the Azure DevOps API to look up eligible repositories based on a team project within an Azure DevOps organization.
    bitbucketCloud ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderBitbucketCloud
    Uses the Bitbucket API V2 to scan a workspace in bitbucket.org.
    bitbucketServer ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderBitbucketServer
    Use the Bitbucket Server API (1.0) to scan repos in a project.
    cloneProtocol string
    Which protocol to use for the SCM URL. Default is provider-specific but ssh if possible. Not all providers necessarily support all protocols.
    filters ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderFilter[]
    Filters for which repos should be considered.
    gitea ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGitea
    Gitea mode uses the Gitea API to scan organizations in your instance.
    github ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGithub
    Uses the GitHub API to scan an organization in either github.com or GitHub Enterprise.
    gitlab ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGitlab
    Uses the GitLab API to scan and organization in either gitlab.com or self-hosted GitLab.
    requeueAfterSeconds string
    How often to check for changes (in seconds). Default: 3min.
    template ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplate
    Generator template. Used to override the values of the spec-level template.
    azure_devops ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderAzureDevops
    Uses the Azure DevOps API to look up eligible repositories based on a team project within an Azure DevOps organization.
    bitbucket_cloud ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderBitbucketCloud
    Uses the Bitbucket API V2 to scan a workspace in bitbucket.org.
    bitbucket_server ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderBitbucketServer
    Use the Bitbucket Server API (1.0) to scan repos in a project.
    clone_protocol str
    Which protocol to use for the SCM URL. Default is provider-specific but ssh if possible. Not all providers necessarily support all protocols.
    filters Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderFilter]
    Filters for which repos should be considered.
    gitea ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGitea
    Gitea mode uses the Gitea API to scan organizations in your instance.
    github ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGithub
    Uses the GitHub API to scan an organization in either github.com or GitHub Enterprise.
    gitlab ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGitlab
    Uses the GitLab API to scan and organization in either gitlab.com or self-hosted GitLab.
    requeue_after_seconds str
    How often to check for changes (in seconds). Default: 3min.
    template ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplate
    Generator template. Used to override the values of the spec-level template.
    azureDevops Property Map
    Uses the Azure DevOps API to look up eligible repositories based on a team project within an Azure DevOps organization.
    bitbucketCloud Property Map
    Uses the Bitbucket API V2 to scan a workspace in bitbucket.org.
    bitbucketServer Property Map
    Use the Bitbucket Server API (1.0) to scan repos in a project.
    cloneProtocol String
    Which protocol to use for the SCM URL. Default is provider-specific but ssh if possible. Not all providers necessarily support all protocols.
    filters List<Property Map>
    Filters for which repos should be considered.
    gitea Property Map
    Gitea mode uses the Gitea API to scan organizations in your instance.
    github Property Map
    Uses the GitHub API to scan an organization in either github.com or GitHub Enterprise.
    gitlab Property Map
    Uses the GitLab API to scan and organization in either gitlab.com or self-hosted GitLab.
    requeueAfterSeconds String
    How often to check for changes (in seconds). Default: 3min.
    template Property Map
    Generator template. Used to override the values of the spec-level template.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderAzureDevops, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderAzureDevopsArgs

    Organization string
    Azure Devops organization. E.g. "my-organization".
    TeamProject string
    Azure Devops team project. E.g. "my-team".
    AccessTokenRef Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderAzureDevopsAccessTokenRef
    The Personal Access Token (PAT) to use when connecting.
    AllBranches bool
    Scan all branches instead of just the default branch.
    Api string
    The URL to Azure DevOps. Defaults to https://dev.azure.com.
    Organization string
    Azure Devops organization. E.g. "my-organization".
    TeamProject string
    Azure Devops team project. E.g. "my-team".
    AccessTokenRef ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderAzureDevopsAccessTokenRef
    The Personal Access Token (PAT) to use when connecting.
    AllBranches bool
    Scan all branches instead of just the default branch.
    Api string
    The URL to Azure DevOps. Defaults to https://dev.azure.com.
    organization String
    Azure Devops organization. E.g. "my-organization".
    teamProject String
    Azure Devops team project. E.g. "my-team".
    accessTokenRef ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderAzureDevopsAccessTokenRef
    The Personal Access Token (PAT) to use when connecting.
    allBranches Boolean
    Scan all branches instead of just the default branch.
    api String
    The URL to Azure DevOps. Defaults to https://dev.azure.com.
    organization string
    Azure Devops organization. E.g. "my-organization".
    teamProject string
    Azure Devops team project. E.g. "my-team".
    accessTokenRef ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderAzureDevopsAccessTokenRef
    The Personal Access Token (PAT) to use when connecting.
    allBranches boolean
    Scan all branches instead of just the default branch.
    api string
    The URL to Azure DevOps. Defaults to https://dev.azure.com.
    organization str
    Azure Devops organization. E.g. "my-organization".
    team_project str
    Azure Devops team project. E.g. "my-team".
    access_token_ref ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderAzureDevopsAccessTokenRef
    The Personal Access Token (PAT) to use when connecting.
    all_branches bool
    Scan all branches instead of just the default branch.
    api str
    The URL to Azure DevOps. Defaults to https://dev.azure.com.
    organization String
    Azure Devops organization. E.g. "my-organization".
    teamProject String
    Azure Devops team project. E.g. "my-team".
    accessTokenRef Property Map
    The Personal Access Token (PAT) to use when connecting.
    allBranches Boolean
    Scan all branches instead of just the default branch.
    api String
    The URL to Azure DevOps. Defaults to https://dev.azure.com.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderAzureDevopsAccessTokenRef, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderAzureDevopsAccessTokenRefArgs

    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.
    key string
    Key containing information in Kubernetes Secret.
    secretName string
    Name of Kubernetes Secret.
    key str
    Key containing information in Kubernetes Secret.
    secret_name str
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderBitbucketCloud, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderBitbucketCloudArgs

    Owner string
    Bitbucket workspace to scan.
    User string
    Bitbucket user to use when authenticating. Should have a "member" role to be able to read all repositories and branches.
    AllBranches bool
    Scan all branches instead of just the default branch.
    AppPasswordRef Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderBitbucketCloudAppPasswordRef
    The app password to use for the user. See: https://support.atlassian.com/bitbucket-cloud/docs/app-passwords/.
    Owner string
    Bitbucket workspace to scan.
    User string
    Bitbucket user to use when authenticating. Should have a "member" role to be able to read all repositories and branches.
    AllBranches bool
    Scan all branches instead of just the default branch.
    AppPasswordRef ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderBitbucketCloudAppPasswordRef
    The app password to use for the user. See: https://support.atlassian.com/bitbucket-cloud/docs/app-passwords/.
    owner String
    Bitbucket workspace to scan.
    user String
    Bitbucket user to use when authenticating. Should have a "member" role to be able to read all repositories and branches.
    allBranches Boolean
    Scan all branches instead of just the default branch.
    appPasswordRef ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderBitbucketCloudAppPasswordRef
    The app password to use for the user. See: https://support.atlassian.com/bitbucket-cloud/docs/app-passwords/.
    owner string
    Bitbucket workspace to scan.
    user string
    Bitbucket user to use when authenticating. Should have a "member" role to be able to read all repositories and branches.
    allBranches boolean
    Scan all branches instead of just the default branch.
    appPasswordRef ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderBitbucketCloudAppPasswordRef
    The app password to use for the user. See: https://support.atlassian.com/bitbucket-cloud/docs/app-passwords/.
    owner str
    Bitbucket workspace to scan.
    user str
    Bitbucket user to use when authenticating. Should have a "member" role to be able to read all repositories and branches.
    all_branches bool
    Scan all branches instead of just the default branch.
    app_password_ref ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderBitbucketCloudAppPasswordRef
    The app password to use for the user. See: https://support.atlassian.com/bitbucket-cloud/docs/app-passwords/.
    owner String
    Bitbucket workspace to scan.
    user String
    Bitbucket user to use when authenticating. Should have a "member" role to be able to read all repositories and branches.
    allBranches Boolean
    Scan all branches instead of just the default branch.
    appPasswordRef Property Map
    The app password to use for the user. See: https://support.atlassian.com/bitbucket-cloud/docs/app-passwords/.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderBitbucketCloudAppPasswordRef, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderBitbucketCloudAppPasswordRefArgs

    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.
    key string
    Key containing information in Kubernetes Secret.
    secretName string
    Name of Kubernetes Secret.
    key str
    Key containing information in Kubernetes Secret.
    secret_name str
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderBitbucketServer, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderBitbucketServerArgs

    Api string
    The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest.
    Project string
    Project to scan.
    AllBranches bool
    Scan all branches instead of just the default branch.
    BasicAuth Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderBitbucketServerBasicAuth
    Credentials for Basic auth.
    Api string
    The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest.
    Project string
    Project to scan.
    AllBranches bool
    Scan all branches instead of just the default branch.
    BasicAuth ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderBitbucketServerBasicAuth
    Credentials for Basic auth.
    api String
    The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest.
    project String
    Project to scan.
    allBranches Boolean
    Scan all branches instead of just the default branch.
    basicAuth ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderBitbucketServerBasicAuth
    Credentials for Basic auth.
    api string
    The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest.
    project string
    Project to scan.
    allBranches boolean
    Scan all branches instead of just the default branch.
    basicAuth ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderBitbucketServerBasicAuth
    Credentials for Basic auth.
    api str
    The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest.
    project str
    Project to scan.
    all_branches bool
    Scan all branches instead of just the default branch.
    basic_auth ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderBitbucketServerBasicAuth
    Credentials for Basic auth.
    api String
    The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest.
    project String
    Project to scan.
    allBranches Boolean
    Scan all branches instead of just the default branch.
    basicAuth Property Map
    Credentials for Basic auth.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderBitbucketServerBasicAuth, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderBitbucketServerBasicAuthArgs

    passwordRef Property Map
    Password (or personal access token) reference.
    username String
    Username for Basic auth.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderBitbucketServerBasicAuthPasswordRef, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderBitbucketServerBasicAuthPasswordRefArgs

    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.
    key string
    Key containing information in Kubernetes Secret.
    secretName string
    Name of Kubernetes Secret.
    key str
    Key containing information in Kubernetes Secret.
    secret_name str
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderFilter, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderFilterArgs

    BranchMatch string
    A regex which must match the branch name.
    LabelMatch string
    A regex which must match at least one label.
    PathsDoNotExists List<string>
    An array of paths, all of which must not exist.
    PathsExists List<string>
    An array of paths, all of which must exist.
    RepositoryMatch string
    A regex for repo names.
    BranchMatch string
    A regex which must match the branch name.
    LabelMatch string
    A regex which must match at least one label.
    PathsDoNotExists []string
    An array of paths, all of which must not exist.
    PathsExists []string
    An array of paths, all of which must exist.
    RepositoryMatch string
    A regex for repo names.
    branchMatch String
    A regex which must match the branch name.
    labelMatch String
    A regex which must match at least one label.
    pathsDoNotExists List<String>
    An array of paths, all of which must not exist.
    pathsExists List<String>
    An array of paths, all of which must exist.
    repositoryMatch String
    A regex for repo names.
    branchMatch string
    A regex which must match the branch name.
    labelMatch string
    A regex which must match at least one label.
    pathsDoNotExists string[]
    An array of paths, all of which must not exist.
    pathsExists string[]
    An array of paths, all of which must exist.
    repositoryMatch string
    A regex for repo names.
    branch_match str
    A regex which must match the branch name.
    label_match str
    A regex which must match at least one label.
    paths_do_not_exists Sequence[str]
    An array of paths, all of which must not exist.
    paths_exists Sequence[str]
    An array of paths, all of which must exist.
    repository_match str
    A regex for repo names.
    branchMatch String
    A regex which must match the branch name.
    labelMatch String
    A regex which must match at least one label.
    pathsDoNotExists List<String>
    An array of paths, all of which must not exist.
    pathsExists List<String>
    An array of paths, all of which must exist.
    repositoryMatch String
    A regex for repo names.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGitea, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGiteaArgs

    Owner string
    Gitea organization or user to scan.
    AllBranches bool
    Scan all branches instead of just the default branch.
    Api string
    The Gitea URL to talk to. For example https://gitea.mydomain.com/.
    Insecure bool
    Allow self-signed TLS / Certificates.
    TokenRef Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGiteaTokenRef
    Authentication token reference.
    Owner string
    Gitea organization or user to scan.
    AllBranches bool
    Scan all branches instead of just the default branch.
    Api string
    The Gitea URL to talk to. For example https://gitea.mydomain.com/.
    Insecure bool
    Allow self-signed TLS / Certificates.
    TokenRef ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGiteaTokenRef
    Authentication token reference.
    owner String
    Gitea organization or user to scan.
    allBranches Boolean
    Scan all branches instead of just the default branch.
    api String
    The Gitea URL to talk to. For example https://gitea.mydomain.com/.
    insecure Boolean
    Allow self-signed TLS / Certificates.
    tokenRef ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGiteaTokenRef
    Authentication token reference.
    owner string
    Gitea organization or user to scan.
    allBranches boolean
    Scan all branches instead of just the default branch.
    api string
    The Gitea URL to talk to. For example https://gitea.mydomain.com/.
    insecure boolean
    Allow self-signed TLS / Certificates.
    tokenRef ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGiteaTokenRef
    Authentication token reference.
    owner str
    Gitea organization or user to scan.
    all_branches bool
    Scan all branches instead of just the default branch.
    api str
    The Gitea URL to talk to. For example https://gitea.mydomain.com/.
    insecure bool
    Allow self-signed TLS / Certificates.
    token_ref ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGiteaTokenRef
    Authentication token reference.
    owner String
    Gitea organization or user to scan.
    allBranches Boolean
    Scan all branches instead of just the default branch.
    api String
    The Gitea URL to talk to. For example https://gitea.mydomain.com/.
    insecure Boolean
    Allow self-signed TLS / Certificates.
    tokenRef Property Map
    Authentication token reference.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGiteaTokenRef, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGiteaTokenRefArgs

    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.
    key string
    Key containing information in Kubernetes Secret.
    secretName string
    Name of Kubernetes Secret.
    key str
    Key containing information in Kubernetes Secret.
    secret_name str
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGithub, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGithubArgs

    Organization string
    GitHub org to scan.
    AllBranches bool
    If true, scan every branch of every repository. If false, scan only the default branch.
    Api string
    The GitHub API URL to talk to. Default https://api.github.com/.
    AppSecretName string
    Reference to a GitHub App repo-creds secret. Uses a GitHub App to access the API instead of a PAT.
    TokenRef Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGithubTokenRef
    Authentication token reference.
    Organization string
    GitHub org to scan.
    AllBranches bool
    If true, scan every branch of every repository. If false, scan only the default branch.
    Api string
    The GitHub API URL to talk to. Default https://api.github.com/.
    AppSecretName string
    Reference to a GitHub App repo-creds secret. Uses a GitHub App to access the API instead of a PAT.
    TokenRef ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGithubTokenRef
    Authentication token reference.
    organization String
    GitHub org to scan.
    allBranches Boolean
    If true, scan every branch of every repository. If false, scan only the default branch.
    api String
    The GitHub API URL to talk to. Default https://api.github.com/.
    appSecretName String
    Reference to a GitHub App repo-creds secret. Uses a GitHub App to access the API instead of a PAT.
    tokenRef ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGithubTokenRef
    Authentication token reference.
    organization string
    GitHub org to scan.
    allBranches boolean
    If true, scan every branch of every repository. If false, scan only the default branch.
    api string
    The GitHub API URL to talk to. Default https://api.github.com/.
    appSecretName string
    Reference to a GitHub App repo-creds secret. Uses a GitHub App to access the API instead of a PAT.
    tokenRef ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGithubTokenRef
    Authentication token reference.
    organization str
    GitHub org to scan.
    all_branches bool
    If true, scan every branch of every repository. If false, scan only the default branch.
    api str
    The GitHub API URL to talk to. Default https://api.github.com/.
    app_secret_name str
    Reference to a GitHub App repo-creds secret. Uses a GitHub App to access the API instead of a PAT.
    token_ref ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGithubTokenRef
    Authentication token reference.
    organization String
    GitHub org to scan.
    allBranches Boolean
    If true, scan every branch of every repository. If false, scan only the default branch.
    api String
    The GitHub API URL to talk to. Default https://api.github.com/.
    appSecretName String
    Reference to a GitHub App repo-creds secret. Uses a GitHub App to access the API instead of a PAT.
    tokenRef Property Map
    Authentication token reference.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGithubTokenRef, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGithubTokenRefArgs

    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.
    key string
    Key containing information in Kubernetes Secret.
    secretName string
    Name of Kubernetes Secret.
    key str
    Key containing information in Kubernetes Secret.
    secret_name str
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGitlab, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGitlabArgs

    Group string
    Gitlab group to scan. You can use either the project id (recommended) or the full namespaced path.
    AllBranches bool
    If true, scan every branch of every repository. If false, scan only the default branch.
    Api string
    The Gitlab API URL to talk to.
    IncludeSubgroups bool
    Recurse through subgroups (true) or scan only the base group (false). Defaults to false.
    TokenRef Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGitlabTokenRef
    Authentication token reference.
    Group string
    Gitlab group to scan. You can use either the project id (recommended) or the full namespaced path.
    AllBranches bool
    If true, scan every branch of every repository. If false, scan only the default branch.
    Api string
    The Gitlab API URL to talk to.
    IncludeSubgroups bool
    Recurse through subgroups (true) or scan only the base group (false). Defaults to false.
    TokenRef ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGitlabTokenRef
    Authentication token reference.
    group String
    Gitlab group to scan. You can use either the project id (recommended) or the full namespaced path.
    allBranches Boolean
    If true, scan every branch of every repository. If false, scan only the default branch.
    api String
    The Gitlab API URL to talk to.
    includeSubgroups Boolean
    Recurse through subgroups (true) or scan only the base group (false). Defaults to false.
    tokenRef ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGitlabTokenRef
    Authentication token reference.
    group string
    Gitlab group to scan. You can use either the project id (recommended) or the full namespaced path.
    allBranches boolean
    If true, scan every branch of every repository. If false, scan only the default branch.
    api string
    The Gitlab API URL to talk to.
    includeSubgroups boolean
    Recurse through subgroups (true) or scan only the base group (false). Defaults to false.
    tokenRef ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGitlabTokenRef
    Authentication token reference.
    group str
    Gitlab group to scan. You can use either the project id (recommended) or the full namespaced path.
    all_branches bool
    If true, scan every branch of every repository. If false, scan only the default branch.
    api str
    The Gitlab API URL to talk to.
    include_subgroups bool
    Recurse through subgroups (true) or scan only the base group (false). Defaults to false.
    token_ref ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGitlabTokenRef
    Authentication token reference.
    group String
    Gitlab group to scan. You can use either the project id (recommended) or the full namespaced path.
    allBranches Boolean
    If true, scan every branch of every repository. If false, scan only the default branch.
    api String
    The Gitlab API URL to talk to.
    includeSubgroups Boolean
    Recurse through subgroups (true) or scan only the base group (false). Defaults to false.
    tokenRef Property Map
    Authentication token reference.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGitlabTokenRef, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderGitlabTokenRefArgs

    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.
    key string
    Key containing information in Kubernetes Secret.
    secretName string
    Name of Kubernetes Secret.
    key str
    Key containing information in Kubernetes Secret.
    secret_name str
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplate, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateArgs

    metadata Property Map
    Kubernetes object metadata for templated Application.
    spec Property Map
    The application specification.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateMetadata, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateMetadataArgs

    Annotations Dictionary<string, string>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers List<string>
    List of finalizers to apply to the resulting Application.
    Labels Dictionary<string, string>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    Annotations map[string]string
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers []string
    List of finalizers to apply to the resulting Application.
    Labels map[string]string
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    annotations Map<String,String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String,String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application
    annotations {[key: string]: string}
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers string[]
    List of finalizers to apply to the resulting Application.
    labels {[key: string]: string}
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name string
    Name of the resulting Application
    namespace string
    Namespace of the resulting Application
    annotations Mapping[str, str]
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers Sequence[str]
    List of finalizers to apply to the resulting Application.
    labels Mapping[str, str]
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name str
    Name of the resulting Application
    namespace str
    Namespace of the resulting Application
    annotations Map<String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpec, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecArgs

    Destination Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSource>
    Location of the application's manifests or chart.
    SyncPolicy Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    Destination ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecIgnoreDifference
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecInfo
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSource
    Location of the application's manifests or chart.
    SyncPolicy ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Integer
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSource>
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecIgnoreDifference[]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecInfo[]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project string
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSource[]
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignore_differences Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecIgnoreDifference]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecInfo]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project str
    The project the application belongs to. Defaults to default.
    revision_history_limit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSource]
    Location of the application's manifests or chart.
    sync_policy ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination Property Map
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<Property Map>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<Property Map>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<Property Map>
    Location of the application's manifests or chart.
    syncPolicy Property Map
    Controls when and how a sync will be performed.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecDestination, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecDestinationArgs

    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name string
    Name of the target cluster. Can be used instead of server.
    namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name str
    Name of the target cluster. Can be used instead of server.
    namespace str
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server str
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecIgnoreDifference, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecIgnoreDifferenceArgs

    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions List<string>
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers List<string>
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers List<string>
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions []string
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers []string
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers []string
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    group string
    The Kubernetes resource Group to match for.
    jqPathExpressions string[]
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers string[]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind string
    The Kubernetes resource Kind to match for.
    managedFieldsManagers string[]
    List of external controller manager names whose changes to fields should be ignored.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    group str
    The Kubernetes resource Group to match for.
    jq_path_expressions Sequence[str]
    List of JQ path expression strings targeting the field(s) to ignore.
    json_pointers Sequence[str]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind str
    The Kubernetes resource Kind to match for.
    managed_fields_managers Sequence[str]
    List of external controller manager names whose changes to fields should be ignored.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecInfo, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecInfoArgs

    Name string
    Name of the information.
    Value string
    Value of the information.
    Name string
    Name of the information.
    Value string
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.
    name string
    Name of the information.
    value string
    Value of the information.
    name str
    Name of the information.
    value str
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSource, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceArgs

    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelm
    Helm specific options.
    Kustomize Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelm
    Helm specific options.
    Kustomize ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomize
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomize
    Kustomize specific options.
    path string
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart str
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomize
    Kustomize specific options.
    path str
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref str
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repo_url str
    URL to the repository (Git or Helm) that contains the application manifests.
    target_revision str
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory Property Map
    Path/directory specific options.
    helm Property Map
    Helm specific options.
    kustomize Property Map
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin Property Map
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectory, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryArgs

    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.
    exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse boolean
    Whether to scan a directory recursively for manifests.
    exclude str
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include str
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet Property Map
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryJsonnet, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetArgs

    extVars List<Property Map>
    List of Jsonnet External Variables.
    libs List<String>
    Additional library search dirs.
    tlas List<Property Map>
    List of Jsonnet Top-level Arguments

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetExtVar, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetExtVarArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetTla, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetTlaArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelm, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmArgs

    FileParameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles List<string>
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    FileParameters []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmFileParameter
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmParameter
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles []string
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmFileParameter[]
    File parameters for the helm template.
    ignoreMissingValueFiles boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmParameter[]
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName string
    Helm release name. If omitted it will use the application name.
    skipCrds boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles string[]
    List of Helm value files to use when generating a template.
    values string
    Helm values to be passed to 'helm template', typically defined as a block.
    version string
    The Helm version to use for templating. Accepts either v2 or v3
    file_parameters Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmFileParameter]
    File parameters for the helm template.
    ignore_missing_value_files bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmParameter]
    Helm parameters which are passed to the helm template command upon manifest generation.
    pass_credentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    release_name str
    Helm release name. If omitted it will use the application name.
    skip_crds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    value_files Sequence[str]
    List of Helm value files to use when generating a template.
    values str
    Helm values to be passed to 'helm template', typically defined as a block.
    version str
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<Property Map>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<Property Map>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmFileParameter, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmFileParameterArgs

    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.
    name string
    Name of the Helm parameter.
    path string
    Path to the file containing the values for the Helm parameter.
    name str
    Name of the Helm parameter.
    path str
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmParameter, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceHelmParameterArgs

    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.
    forceString boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name string
    Name of the Helm parameter.
    value string
    Value of the Helm parameter.
    force_string bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name str
    Name of the Helm parameter.
    value str
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomize, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomizeArgs

    CommonAnnotations Dictionary<string, string>
    List of additional annotations to add to rendered manifests.
    CommonLabels Dictionary<string, string>
    List of additional labels to add to rendered manifests.
    Images List<string>
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    CommonAnnotations map[string]string
    List of additional annotations to add to rendered manifests.
    CommonLabels map[string]string
    List of additional labels to add to rendered manifests.
    Images []string
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomizePatch
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String,String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String,String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.
    commonAnnotations {[key: string]: string}
    List of additional annotations to add to rendered manifests.
    commonLabels {[key: string]: string}
    List of additional labels to add to rendered manifests.
    images string[]
    List of Kustomize image override specifications.
    namePrefix string
    Prefix appended to resources for Kustomize apps.
    nameSuffix string
    Suffix appended to resources for Kustomize apps.
    patches ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomizePatch[]
    A list of Kustomize patches to apply.
    version string
    Version of Kustomize to use for rendering manifests.
    common_annotations Mapping[str, str]
    List of additional annotations to add to rendered manifests.
    common_labels Mapping[str, str]
    List of additional labels to add to rendered manifests.
    images Sequence[str]
    List of Kustomize image override specifications.
    name_prefix str
    Prefix appended to resources for Kustomize apps.
    name_suffix str
    Suffix appended to resources for Kustomize apps.
    patches Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomizePatch]
    A list of Kustomize patches to apply.
    version str
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<Property Map>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomizePatch, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomizePatchArgs

    Target Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options Dictionary<string, bool>
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    Target ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options map[string]bool
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Map<String,Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options {[key: string]: boolean}
    Additional options.
    patch string
    Inline Kustomize patch to apply.
    path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Mapping[str, bool]
    Additional options.
    patch str
    Inline Kustomize patch to apply.
    path str
    Path to a file containing the patch to apply.
    target Property Map
    Target(s) to patch
    options Map<Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomizePatchTarget, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourceKustomizePatchTargetArgs

    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.
    annotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    group string
    The Kubernetes resource Group to match for.
    kind string
    The Kubernetes resource Kind to match for.
    labelSelector string
    Label selector to use when matching the Kubernetes resource.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    version string
    The Kubernetes resource Version to match for.
    annotation_selector str
    Annotation selector to use when matching the Kubernetes resource.
    group str
    The Kubernetes resource Group to match for.
    kind str
    The Kubernetes resource Kind to match for.
    label_selector str
    Label selector to use when matching the Kubernetes resource.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    version str
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourcePlugin, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourcePluginArgs

    Envs List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    Envs []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourcePluginEnv
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourcePluginEnv[]
    Environment variables passed to the plugin.
    name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourcePluginEnv]
    Environment variables passed to the plugin.
    name str
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<Property Map>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourcePluginEnv, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSourcePluginEnvArgs

    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.
    name string
    Name of the environment variable.
    value string
    Value of the environment variable.
    name str
    Name of the environment variable.
    value str
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicy, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyArgs

    Automated Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions List<string>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    Automated ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions []string
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions string[]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managed_namespace_metadata ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    sync_options Sequence[str]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated Property Map
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata Property Map
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry Property Map
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyAutomated, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyAutomatedArgs

    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty boolean
    Allows apps have zero live resources.
    prune boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allow_empty bool
    Allows apps have zero live resources.
    prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    self_heal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyManagedNamespaceMetadata, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyManagedNamespaceMetadataArgs

    Annotations Dictionary<string, string>
    Annotations to apply to the namespace.
    Labels Dictionary<string, string>
    Labels to apply to the namespace.
    Annotations map[string]string
    Annotations to apply to the namespace.
    Labels map[string]string
    Labels to apply to the namespace.
    annotations Map<String,String>
    Annotations to apply to the namespace.
    labels Map<String,String>
    Labels to apply to the namespace.
    annotations {[key: string]: string}
    Annotations to apply to the namespace.
    labels {[key: string]: string}
    Labels to apply to the namespace.
    annotations Mapping[str, str]
    Annotations to apply to the namespace.
    labels Mapping[str, str]
    Labels to apply to the namespace.
    annotations Map<String>
    Annotations to apply to the namespace.
    labels Map<String>
    Labels to apply to the namespace.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyRetry, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyRetryArgs

    Backoff Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    Backoff ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit str
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff Property Map
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyRetryBackoff, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorScmProviderTemplateSpecSyncPolicyRetryBackoffArgs

    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor string
    Factor to multiply the base duration after each failed retry.
    maxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration str
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor str
    Factor to multiply the base duration after each failed retry.
    max_duration str
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorSelector, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorSelectorArgs

    MatchExpressions List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorSelectorMatchExpression>
    A list of label selector requirements. The requirements are ANDed.
    MatchLabels Dictionary<string, string>
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    MatchExpressions []ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorSelectorMatchExpression
    A list of label selector requirements. The requirements are ANDed.
    MatchLabels map[string]string
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    matchExpressions List<ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorSelectorMatchExpression>
    A list of label selector requirements. The requirements are ANDed.
    matchLabels Map<String,String>
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    matchExpressions ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorSelectorMatchExpression[]
    A list of label selector requirements. The requirements are ANDed.
    matchLabels {[key: string]: string}
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    match_expressions Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorSelectorMatchExpression]
    A list of label selector requirements. The requirements are ANDed.
    match_labels Mapping[str, str]
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    matchExpressions List<Property Map>
    A list of label selector requirements. The requirements are ANDed.
    matchLabels Map<String>
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorSelectorMatchExpression, ApplicationSetSpecGeneratorMatrixGeneratorMergeGeneratorSelectorMatchExpressionArgs

    Key string
    The label key that the selector applies to.
    Operator string
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    Values List<string>
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    Key string
    The label key that the selector applies to.
    Operator string
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    Values []string
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key String
    The label key that the selector applies to.
    operator String
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values List<String>
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key string
    The label key that the selector applies to.
    operator string
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values string[]
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key str
    The label key that the selector applies to.
    operator str
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values Sequence[str]
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key String
    The label key that the selector applies to.
    operator String
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values List<String>
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplate, ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateArgs

    metadata Property Map
    Kubernetes object metadata for templated Application.
    spec Property Map
    The application specification.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateMetadata, ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateMetadataArgs

    Annotations Dictionary<string, string>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers List<string>
    List of finalizers to apply to the resulting Application.
    Labels Dictionary<string, string>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    Annotations map[string]string
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers []string
    List of finalizers to apply to the resulting Application.
    Labels map[string]string
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    annotations Map<String,String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String,String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application
    annotations {[key: string]: string}
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers string[]
    List of finalizers to apply to the resulting Application.
    labels {[key: string]: string}
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name string
    Name of the resulting Application
    namespace string
    Namespace of the resulting Application
    annotations Mapping[str, str]
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers Sequence[str]
    List of finalizers to apply to the resulting Application.
    labels Mapping[str, str]
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name str
    Name of the resulting Application
    namespace str
    Namespace of the resulting Application
    annotations Map<String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application

    ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpec, ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecArgs

    Destination Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSource>
    Location of the application's manifests or chart.
    SyncPolicy Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    Destination ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences []ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecIgnoreDifference
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos []ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecInfo
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources []ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSource
    Location of the application's manifests or chart.
    SyncPolicy ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Integer
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSource>
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecIgnoreDifference[]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecInfo[]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project string
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSource[]
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignore_differences Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecIgnoreDifference]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecInfo]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project str
    The project the application belongs to. Defaults to default.
    revision_history_limit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSource]
    Location of the application's manifests or chart.
    sync_policy ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination Property Map
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<Property Map>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<Property Map>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<Property Map>
    Location of the application's manifests or chart.
    syncPolicy Property Map
    Controls when and how a sync will be performed.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecDestination, ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecDestinationArgs

    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name string
    Name of the target cluster. Can be used instead of server.
    namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name str
    Name of the target cluster. Can be used instead of server.
    namespace str
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server str
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecIgnoreDifference, ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecIgnoreDifferenceArgs

    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions List<string>
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers List<string>
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers List<string>
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions []string
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers []string
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers []string
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    group string
    The Kubernetes resource Group to match for.
    jqPathExpressions string[]
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers string[]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind string
    The Kubernetes resource Kind to match for.
    managedFieldsManagers string[]
    List of external controller manager names whose changes to fields should be ignored.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    group str
    The Kubernetes resource Group to match for.
    jq_path_expressions Sequence[str]
    List of JQ path expression strings targeting the field(s) to ignore.
    json_pointers Sequence[str]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind str
    The Kubernetes resource Kind to match for.
    managed_fields_managers Sequence[str]
    List of external controller manager names whose changes to fields should be ignored.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecInfo, ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecInfoArgs

    Name string
    Name of the information.
    Value string
    Value of the information.
    Name string
    Name of the information.
    Value string
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.
    name string
    Name of the information.
    value string
    Value of the information.
    name str
    Name of the information.
    value str
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSource, ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceArgs

    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceHelm
    Helm specific options.
    Kustomize Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceHelm
    Helm specific options.
    Kustomize ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceKustomize
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceKustomize
    Kustomize specific options.
    path string
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart str
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceKustomize
    Kustomize specific options.
    path str
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref str
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repo_url str
    URL to the repository (Git or Helm) that contains the application manifests.
    target_revision str
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory Property Map
    Path/directory specific options.
    helm Property Map
    Helm specific options.
    kustomize Property Map
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin Property Map
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceDirectory, ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceDirectoryArgs

    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.
    exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse boolean
    Whether to scan a directory recursively for manifests.
    exclude str
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include str
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet Property Map
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceDirectoryJsonnet, ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceDirectoryJsonnetArgs

    extVars List<Property Map>
    List of Jsonnet External Variables.
    libs List<String>
    Additional library search dirs.
    tlas List<Property Map>
    List of Jsonnet Top-level Arguments

    ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceDirectoryJsonnetExtVar, ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceDirectoryJsonnetExtVarArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceDirectoryJsonnetTla, ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceDirectoryJsonnetTlaArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceHelm, ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceHelmArgs

    FileParameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles List<string>
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    FileParameters []ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceHelmFileParameter
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters []ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceHelmParameter
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles []string
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceHelmFileParameter[]
    File parameters for the helm template.
    ignoreMissingValueFiles boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceHelmParameter[]
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName string
    Helm release name. If omitted it will use the application name.
    skipCrds boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles string[]
    List of Helm value files to use when generating a template.
    values string
    Helm values to be passed to 'helm template', typically defined as a block.
    version string
    The Helm version to use for templating. Accepts either v2 or v3
    file_parameters Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceHelmFileParameter]
    File parameters for the helm template.
    ignore_missing_value_files bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceHelmParameter]
    Helm parameters which are passed to the helm template command upon manifest generation.
    pass_credentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    release_name str
    Helm release name. If omitted it will use the application name.
    skip_crds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    value_files Sequence[str]
    List of Helm value files to use when generating a template.
    values str
    Helm values to be passed to 'helm template', typically defined as a block.
    version str
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<Property Map>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<Property Map>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3

    ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceHelmFileParameter, ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceHelmFileParameterArgs

    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.
    name string
    Name of the Helm parameter.
    path string
    Path to the file containing the values for the Helm parameter.
    name str
    Name of the Helm parameter.
    path str
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceHelmParameter, ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceHelmParameterArgs

    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.
    forceString boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name string
    Name of the Helm parameter.
    value string
    Value of the Helm parameter.
    force_string bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name str
    Name of the Helm parameter.
    value str
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceKustomize, ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceKustomizeArgs

    CommonAnnotations Dictionary<string, string>
    List of additional annotations to add to rendered manifests.
    CommonLabels Dictionary<string, string>
    List of additional labels to add to rendered manifests.
    Images List<string>
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    CommonAnnotations map[string]string
    List of additional annotations to add to rendered manifests.
    CommonLabels map[string]string
    List of additional labels to add to rendered manifests.
    Images []string
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches []ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceKustomizePatch
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String,String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String,String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.
    commonAnnotations {[key: string]: string}
    List of additional annotations to add to rendered manifests.
    commonLabels {[key: string]: string}
    List of additional labels to add to rendered manifests.
    images string[]
    List of Kustomize image override specifications.
    namePrefix string
    Prefix appended to resources for Kustomize apps.
    nameSuffix string
    Suffix appended to resources for Kustomize apps.
    patches ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceKustomizePatch[]
    A list of Kustomize patches to apply.
    version string
    Version of Kustomize to use for rendering manifests.
    common_annotations Mapping[str, str]
    List of additional annotations to add to rendered manifests.
    common_labels Mapping[str, str]
    List of additional labels to add to rendered manifests.
    images Sequence[str]
    List of Kustomize image override specifications.
    name_prefix str
    Prefix appended to resources for Kustomize apps.
    name_suffix str
    Suffix appended to resources for Kustomize apps.
    patches Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceKustomizePatch]
    A list of Kustomize patches to apply.
    version str
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<Property Map>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceKustomizePatch, ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceKustomizePatchArgs

    Target Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options Dictionary<string, bool>
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    Target ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options map[string]bool
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Map<String,Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options {[key: string]: boolean}
    Additional options.
    patch string
    Inline Kustomize patch to apply.
    path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Mapping[str, bool]
    Additional options.
    patch str
    Inline Kustomize patch to apply.
    path str
    Path to a file containing the patch to apply.
    target Property Map
    Target(s) to patch
    options Map<Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceKustomizePatchTarget, ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourceKustomizePatchTargetArgs

    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.
    annotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    group string
    The Kubernetes resource Group to match for.
    kind string
    The Kubernetes resource Kind to match for.
    labelSelector string
    Label selector to use when matching the Kubernetes resource.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    version string
    The Kubernetes resource Version to match for.
    annotation_selector str
    Annotation selector to use when matching the Kubernetes resource.
    group str
    The Kubernetes resource Group to match for.
    kind str
    The Kubernetes resource Kind to match for.
    label_selector str
    Label selector to use when matching the Kubernetes resource.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    version str
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourcePlugin, ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourcePluginArgs

    Envs List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    Envs []ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourcePluginEnv
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourcePluginEnv[]
    Environment variables passed to the plugin.
    name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs Sequence[ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourcePluginEnv]
    Environment variables passed to the plugin.
    name str
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<Property Map>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourcePluginEnv, ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSourcePluginEnvArgs

    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.
    name string
    Name of the environment variable.
    value string
    Value of the environment variable.
    name str
    Name of the environment variable.
    value str
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicy, ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicyArgs

    Automated Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions List<string>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    Automated ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions []string
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions string[]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managed_namespace_metadata ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    sync_options Sequence[str]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated Property Map
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata Property Map
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry Property Map
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicyAutomated, ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicyAutomatedArgs

    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty boolean
    Allows apps have zero live resources.
    prune boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allow_empty bool
    Allows apps have zero live resources.
    prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    self_heal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicyManagedNamespaceMetadata, ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicyManagedNamespaceMetadataArgs

    Annotations Dictionary<string, string>
    Annotations to apply to the namespace.
    Labels Dictionary<string, string>
    Labels to apply to the namespace.
    Annotations map[string]string
    Annotations to apply to the namespace.
    Labels map[string]string
    Labels to apply to the namespace.
    annotations Map<String,String>
    Annotations to apply to the namespace.
    labels Map<String,String>
    Labels to apply to the namespace.
    annotations {[key: string]: string}
    Annotations to apply to the namespace.
    labels {[key: string]: string}
    Labels to apply to the namespace.
    annotations Mapping[str, str]
    Annotations to apply to the namespace.
    labels Mapping[str, str]
    Labels to apply to the namespace.
    annotations Map<String>
    Annotations to apply to the namespace.
    labels Map<String>
    Labels to apply to the namespace.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicyRetry, ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicyRetryArgs

    Backoff Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    Backoff ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit str
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff Property Map
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.

    ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicyRetryBackoff, ApplicationSetSpecGeneratorMatrixGeneratorMergeTemplateSpecSyncPolicyRetryBackoffArgs

    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor string
    Factor to multiply the base duration after each failed retry.
    maxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration str
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor str
    Factor to multiply the base duration after each failed retry.
    max_duration str
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.

    ApplicationSetSpecGeneratorMatrixGeneratorPullRequest, ApplicationSetSpecGeneratorMatrixGeneratorPullRequestArgs

    BitbucketServer Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestBitbucketServer
    Fetch pull requests from a repo hosted on a Bitbucket Server.
    Filters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestFilter>
    Filters allow selecting which pull requests to generate for.
    Gitea Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGitea
    Specify the repository from which to fetch the Gitea Pull requests.
    Github Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGithub
    Specify the repository from which to fetch the GitHub Pull requests.
    Gitlab Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGitlab
    Specify the project from which to fetch the GitLab merge requests.
    RequeueAfterSeconds string
    How often to check for changes (in seconds). Default: 30min.
    Template Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplate
    Generator template. Used to override the values of the spec-level template.
    BitbucketServer ApplicationSetSpecGeneratorMatrixGeneratorPullRequestBitbucketServer
    Fetch pull requests from a repo hosted on a Bitbucket Server.
    Filters []ApplicationSetSpecGeneratorMatrixGeneratorPullRequestFilter
    Filters allow selecting which pull requests to generate for.
    Gitea ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGitea
    Specify the repository from which to fetch the Gitea Pull requests.
    Github ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGithub
    Specify the repository from which to fetch the GitHub Pull requests.
    Gitlab ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGitlab
    Specify the project from which to fetch the GitLab merge requests.
    RequeueAfterSeconds string
    How often to check for changes (in seconds). Default: 30min.
    Template ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplate
    Generator template. Used to override the values of the spec-level template.
    bitbucketServer ApplicationSetSpecGeneratorMatrixGeneratorPullRequestBitbucketServer
    Fetch pull requests from a repo hosted on a Bitbucket Server.
    filters List<ApplicationSetSpecGeneratorMatrixGeneratorPullRequestFilter>
    Filters allow selecting which pull requests to generate for.
    gitea ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGitea
    Specify the repository from which to fetch the Gitea Pull requests.
    github ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGithub
    Specify the repository from which to fetch the GitHub Pull requests.
    gitlab ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGitlab
    Specify the project from which to fetch the GitLab merge requests.
    requeueAfterSeconds String
    How often to check for changes (in seconds). Default: 30min.
    template ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplate
    Generator template. Used to override the values of the spec-level template.
    bitbucketServer ApplicationSetSpecGeneratorMatrixGeneratorPullRequestBitbucketServer
    Fetch pull requests from a repo hosted on a Bitbucket Server.
    filters ApplicationSetSpecGeneratorMatrixGeneratorPullRequestFilter[]
    Filters allow selecting which pull requests to generate for.
    gitea ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGitea
    Specify the repository from which to fetch the Gitea Pull requests.
    github ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGithub
    Specify the repository from which to fetch the GitHub Pull requests.
    gitlab ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGitlab
    Specify the project from which to fetch the GitLab merge requests.
    requeueAfterSeconds string
    How often to check for changes (in seconds). Default: 30min.
    template ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplate
    Generator template. Used to override the values of the spec-level template.
    bitbucket_server ApplicationSetSpecGeneratorMatrixGeneratorPullRequestBitbucketServer
    Fetch pull requests from a repo hosted on a Bitbucket Server.
    filters Sequence[ApplicationSetSpecGeneratorMatrixGeneratorPullRequestFilter]
    Filters allow selecting which pull requests to generate for.
    gitea ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGitea
    Specify the repository from which to fetch the Gitea Pull requests.
    github ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGithub
    Specify the repository from which to fetch the GitHub Pull requests.
    gitlab ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGitlab
    Specify the project from which to fetch the GitLab merge requests.
    requeue_after_seconds str
    How often to check for changes (in seconds). Default: 30min.
    template ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplate
    Generator template. Used to override the values of the spec-level template.
    bitbucketServer Property Map
    Fetch pull requests from a repo hosted on a Bitbucket Server.
    filters List<Property Map>
    Filters allow selecting which pull requests to generate for.
    gitea Property Map
    Specify the repository from which to fetch the Gitea Pull requests.
    github Property Map
    Specify the repository from which to fetch the GitHub Pull requests.
    gitlab Property Map
    Specify the project from which to fetch the GitLab merge requests.
    requeueAfterSeconds String
    How often to check for changes (in seconds). Default: 30min.
    template Property Map
    Generator template. Used to override the values of the spec-level template.

    ApplicationSetSpecGeneratorMatrixGeneratorPullRequestBitbucketServer, ApplicationSetSpecGeneratorMatrixGeneratorPullRequestBitbucketServerArgs

    Api string
    The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest.
    Project string
    Project to scan.
    Repo string
    Repo name to scan.
    BasicAuth Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestBitbucketServerBasicAuth
    Credentials for Basic auth.
    Api string
    The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest.
    Project string
    Project to scan.
    Repo string
    Repo name to scan.
    BasicAuth ApplicationSetSpecGeneratorMatrixGeneratorPullRequestBitbucketServerBasicAuth
    Credentials for Basic auth.
    api String
    The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest.
    project String
    Project to scan.
    repo String
    Repo name to scan.
    basicAuth ApplicationSetSpecGeneratorMatrixGeneratorPullRequestBitbucketServerBasicAuth
    Credentials for Basic auth.
    api string
    The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest.
    project string
    Project to scan.
    repo string
    Repo name to scan.
    basicAuth ApplicationSetSpecGeneratorMatrixGeneratorPullRequestBitbucketServerBasicAuth
    Credentials for Basic auth.
    api str
    The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest.
    project str
    Project to scan.
    repo str
    Repo name to scan.
    basic_auth ApplicationSetSpecGeneratorMatrixGeneratorPullRequestBitbucketServerBasicAuth
    Credentials for Basic auth.
    api String
    The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest.
    project String
    Project to scan.
    repo String
    Repo name to scan.
    basicAuth Property Map
    Credentials for Basic auth.

    ApplicationSetSpecGeneratorMatrixGeneratorPullRequestBitbucketServerBasicAuth, ApplicationSetSpecGeneratorMatrixGeneratorPullRequestBitbucketServerBasicAuthArgs

    PasswordRef ApplicationSetSpecGeneratorMatrixGeneratorPullRequestBitbucketServerBasicAuthPasswordRef
    Password (or personal access token) reference.
    Username string
    Username for Basic auth.
    passwordRef ApplicationSetSpecGeneratorMatrixGeneratorPullRequestBitbucketServerBasicAuthPasswordRef
    Password (or personal access token) reference.
    username String
    Username for Basic auth.
    passwordRef ApplicationSetSpecGeneratorMatrixGeneratorPullRequestBitbucketServerBasicAuthPasswordRef
    Password (or personal access token) reference.
    username string
    Username for Basic auth.
    password_ref ApplicationSetSpecGeneratorMatrixGeneratorPullRequestBitbucketServerBasicAuthPasswordRef
    Password (or personal access token) reference.
    username str
    Username for Basic auth.
    passwordRef Property Map
    Password (or personal access token) reference.
    username String
    Username for Basic auth.

    ApplicationSetSpecGeneratorMatrixGeneratorPullRequestBitbucketServerBasicAuthPasswordRef, ApplicationSetSpecGeneratorMatrixGeneratorPullRequestBitbucketServerBasicAuthPasswordRefArgs

    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.
    key string
    Key containing information in Kubernetes Secret.
    secretName string
    Name of Kubernetes Secret.
    key str
    Key containing information in Kubernetes Secret.
    secret_name str
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.

    ApplicationSetSpecGeneratorMatrixGeneratorPullRequestFilter, ApplicationSetSpecGeneratorMatrixGeneratorPullRequestFilterArgs

    BranchMatch string
    A regex which must match the branch name.
    BranchMatch string
    A regex which must match the branch name.
    branchMatch String
    A regex which must match the branch name.
    branchMatch string
    A regex which must match the branch name.
    branch_match str
    A regex which must match the branch name.
    branchMatch String
    A regex which must match the branch name.

    ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGitea, ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGiteaArgs

    Api string
    The Gitea API URL to talk to.
    Owner string
    Gitea org or user to scan.
    Repo string
    Gitea repo name to scan.
    Insecure bool
    Allow insecure tls, for self-signed certificates; default: false.
    TokenRef Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGiteaTokenRef
    Authentication token reference.
    Api string
    The Gitea API URL to talk to.
    Owner string
    Gitea org or user to scan.
    Repo string
    Gitea repo name to scan.
    Insecure bool
    Allow insecure tls, for self-signed certificates; default: false.
    TokenRef ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGiteaTokenRef
    Authentication token reference.
    api String
    The Gitea API URL to talk to.
    owner String
    Gitea org or user to scan.
    repo String
    Gitea repo name to scan.
    insecure Boolean
    Allow insecure tls, for self-signed certificates; default: false.
    tokenRef ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGiteaTokenRef
    Authentication token reference.
    api string
    The Gitea API URL to talk to.
    owner string
    Gitea org or user to scan.
    repo string
    Gitea repo name to scan.
    insecure boolean
    Allow insecure tls, for self-signed certificates; default: false.
    tokenRef ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGiteaTokenRef
    Authentication token reference.
    api str
    The Gitea API URL to talk to.
    owner str
    Gitea org or user to scan.
    repo str
    Gitea repo name to scan.
    insecure bool
    Allow insecure tls, for self-signed certificates; default: false.
    token_ref ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGiteaTokenRef
    Authentication token reference.
    api String
    The Gitea API URL to talk to.
    owner String
    Gitea org or user to scan.
    repo String
    Gitea repo name to scan.
    insecure Boolean
    Allow insecure tls, for self-signed certificates; default: false.
    tokenRef Property Map
    Authentication token reference.

    ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGiteaTokenRef, ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGiteaTokenRefArgs

    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.
    key string
    Key containing information in Kubernetes Secret.
    secretName string
    Name of Kubernetes Secret.
    key str
    Key containing information in Kubernetes Secret.
    secret_name str
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.

    ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGithub, ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGithubArgs

    Owner string
    GitHub org or user to scan.
    Repo string
    GitHub repo name to scan.
    Api string
    The GitHub API URL to talk to. Default https://api.github.com/.
    AppSecretName string
    Reference to a GitHub App repo-creds secret with permission to access pull requests.
    Labels List<string>
    Labels is used to filter the PRs that you want to target.
    TokenRef Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGithubTokenRef
    Authentication token reference.
    Owner string
    GitHub org or user to scan.
    Repo string
    GitHub repo name to scan.
    Api string
    The GitHub API URL to talk to. Default https://api.github.com/.
    AppSecretName string
    Reference to a GitHub App repo-creds secret with permission to access pull requests.
    Labels []string
    Labels is used to filter the PRs that you want to target.
    TokenRef ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGithubTokenRef
    Authentication token reference.
    owner String
    GitHub org or user to scan.
    repo String
    GitHub repo name to scan.
    api String
    The GitHub API URL to talk to. Default https://api.github.com/.
    appSecretName String
    Reference to a GitHub App repo-creds secret with permission to access pull requests.
    labels List<String>
    Labels is used to filter the PRs that you want to target.
    tokenRef ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGithubTokenRef
    Authentication token reference.
    owner string
    GitHub org or user to scan.
    repo string
    GitHub repo name to scan.
    api string
    The GitHub API URL to talk to. Default https://api.github.com/.
    appSecretName string
    Reference to a GitHub App repo-creds secret with permission to access pull requests.
    labels string[]
    Labels is used to filter the PRs that you want to target.
    tokenRef ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGithubTokenRef
    Authentication token reference.
    owner str
    GitHub org or user to scan.
    repo str
    GitHub repo name to scan.
    api str
    The GitHub API URL to talk to. Default https://api.github.com/.
    app_secret_name str
    Reference to a GitHub App repo-creds secret with permission to access pull requests.
    labels Sequence[str]
    Labels is used to filter the PRs that you want to target.
    token_ref ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGithubTokenRef
    Authentication token reference.
    owner String
    GitHub org or user to scan.
    repo String
    GitHub repo name to scan.
    api String
    The GitHub API URL to talk to. Default https://api.github.com/.
    appSecretName String
    Reference to a GitHub App repo-creds secret with permission to access pull requests.
    labels List<String>
    Labels is used to filter the PRs that you want to target.
    tokenRef Property Map
    Authentication token reference.

    ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGithubTokenRef, ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGithubTokenRefArgs

    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.
    key string
    Key containing information in Kubernetes Secret.
    secretName string
    Name of Kubernetes Secret.
    key str
    Key containing information in Kubernetes Secret.
    secret_name str
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.

    ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGitlab, ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGitlabArgs

    Project string
    GitLab project to scan.
    Api string
    The GitLab API URL to talk to. If blank, uses https://gitlab.com/.
    Labels List<string>
    Labels is used to filter the PRs that you want to target.
    PullRequestState string
    additional MRs filter to get only those with a certain state. Default: "" (all states).
    TokenRef Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGitlabTokenRef
    Authentication token reference.
    Project string
    GitLab project to scan.
    Api string
    The GitLab API URL to talk to. If blank, uses https://gitlab.com/.
    Labels []string
    Labels is used to filter the PRs that you want to target.
    PullRequestState string
    additional MRs filter to get only those with a certain state. Default: "" (all states).
    TokenRef ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGitlabTokenRef
    Authentication token reference.
    project String
    GitLab project to scan.
    api String
    The GitLab API URL to talk to. If blank, uses https://gitlab.com/.
    labels List<String>
    Labels is used to filter the PRs that you want to target.
    pullRequestState String
    additional MRs filter to get only those with a certain state. Default: "" (all states).
    tokenRef ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGitlabTokenRef
    Authentication token reference.
    project string
    GitLab project to scan.
    api string
    The GitLab API URL to talk to. If blank, uses https://gitlab.com/.
    labels string[]
    Labels is used to filter the PRs that you want to target.
    pullRequestState string
    additional MRs filter to get only those with a certain state. Default: "" (all states).
    tokenRef ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGitlabTokenRef
    Authentication token reference.
    project str
    GitLab project to scan.
    api str
    The GitLab API URL to talk to. If blank, uses https://gitlab.com/.
    labels Sequence[str]
    Labels is used to filter the PRs that you want to target.
    pull_request_state str
    additional MRs filter to get only those with a certain state. Default: "" (all states).
    token_ref ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGitlabTokenRef
    Authentication token reference.
    project String
    GitLab project to scan.
    api String
    The GitLab API URL to talk to. If blank, uses https://gitlab.com/.
    labels List<String>
    Labels is used to filter the PRs that you want to target.
    pullRequestState String
    additional MRs filter to get only those with a certain state. Default: "" (all states).
    tokenRef Property Map
    Authentication token reference.

    ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGitlabTokenRef, ApplicationSetSpecGeneratorMatrixGeneratorPullRequestGitlabTokenRefArgs

    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.
    key string
    Key containing information in Kubernetes Secret.
    secretName string
    Name of Kubernetes Secret.
    key str
    Key containing information in Kubernetes Secret.
    secret_name str
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.

    ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplate, ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateArgs

    metadata Property Map
    Kubernetes object metadata for templated Application.
    spec Property Map
    The application specification.

    ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateMetadata, ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateMetadataArgs

    Annotations Dictionary<string, string>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers List<string>
    List of finalizers to apply to the resulting Application.
    Labels Dictionary<string, string>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    Annotations map[string]string
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers []string
    List of finalizers to apply to the resulting Application.
    Labels map[string]string
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    annotations Map<String,String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String,String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application
    annotations {[key: string]: string}
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers string[]
    List of finalizers to apply to the resulting Application.
    labels {[key: string]: string}
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name string
    Name of the resulting Application
    namespace string
    Namespace of the resulting Application
    annotations Mapping[str, str]
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers Sequence[str]
    List of finalizers to apply to the resulting Application.
    labels Mapping[str, str]
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name str
    Name of the resulting Application
    namespace str
    Namespace of the resulting Application
    annotations Map<String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application

    ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpec, ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecArgs

    Destination Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSource>
    Location of the application's manifests or chart.
    SyncPolicy Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    Destination ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences []ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecIgnoreDifference
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos []ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecInfo
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources []ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSource
    Location of the application's manifests or chart.
    SyncPolicy ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Integer
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSource>
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecIgnoreDifference[]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecInfo[]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project string
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSource[]
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignore_differences Sequence[ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecIgnoreDifference]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos Sequence[ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecInfo]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project str
    The project the application belongs to. Defaults to default.
    revision_history_limit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources Sequence[ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSource]
    Location of the application's manifests or chart.
    sync_policy ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination Property Map
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<Property Map>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<Property Map>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<Property Map>
    Location of the application's manifests or chart.
    syncPolicy Property Map
    Controls when and how a sync will be performed.

    ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecDestination, ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecDestinationArgs

    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name string
    Name of the target cluster. Can be used instead of server.
    namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name str
    Name of the target cluster. Can be used instead of server.
    namespace str
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server str
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.

    ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecIgnoreDifference, ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecIgnoreDifferenceArgs

    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions List<string>
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers List<string>
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers List<string>
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions []string
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers []string
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers []string
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    group string
    The Kubernetes resource Group to match for.
    jqPathExpressions string[]
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers string[]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind string
    The Kubernetes resource Kind to match for.
    managedFieldsManagers string[]
    List of external controller manager names whose changes to fields should be ignored.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    group str
    The Kubernetes resource Group to match for.
    jq_path_expressions Sequence[str]
    List of JQ path expression strings targeting the field(s) to ignore.
    json_pointers Sequence[str]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind str
    The Kubernetes resource Kind to match for.
    managed_fields_managers Sequence[str]
    List of external controller manager names whose changes to fields should be ignored.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.

    ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecInfo, ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecInfoArgs

    Name string
    Name of the information.
    Value string
    Value of the information.
    Name string
    Name of the information.
    Value string
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.
    name string
    Name of the information.
    value string
    Value of the information.
    name str
    Name of the information.
    value str
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.

    ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSource, ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceArgs

    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelm
    Helm specific options.
    Kustomize Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelm
    Helm specific options.
    Kustomize ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomize
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomize
    Kustomize specific options.
    path string
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart str
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomize
    Kustomize specific options.
    path str
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref str
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repo_url str
    URL to the repository (Git or Helm) that contains the application manifests.
    target_revision str
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory Property Map
    Path/directory specific options.
    helm Property Map
    Helm specific options.
    kustomize Property Map
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin Property Map
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.

    ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectory, ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryArgs

    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.
    exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse boolean
    Whether to scan a directory recursively for manifests.
    exclude str
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include str
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet Property Map
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.

    ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnet, ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetArgs

    extVars List<Property Map>
    List of Jsonnet External Variables.
    libs List<String>
    Additional library search dirs.
    tlas List<Property Map>
    List of Jsonnet Top-level Arguments

    ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetExtVar, ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetExtVarArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetTla, ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetTlaArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelm, ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmArgs

    FileParameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles List<string>
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    FileParameters []ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmFileParameter
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters []ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmParameter
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles []string
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmFileParameter[]
    File parameters for the helm template.
    ignoreMissingValueFiles boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmParameter[]
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName string
    Helm release name. If omitted it will use the application name.
    skipCrds boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles string[]
    List of Helm value files to use when generating a template.
    values string
    Helm values to be passed to 'helm template', typically defined as a block.
    version string
    The Helm version to use for templating. Accepts either v2 or v3
    file_parameters Sequence[ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmFileParameter]
    File parameters for the helm template.
    ignore_missing_value_files bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters Sequence[ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmParameter]
    Helm parameters which are passed to the helm template command upon manifest generation.
    pass_credentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    release_name str
    Helm release name. If omitted it will use the application name.
    skip_crds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    value_files Sequence[str]
    List of Helm value files to use when generating a template.
    values str
    Helm values to be passed to 'helm template', typically defined as a block.
    version str
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<Property Map>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<Property Map>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3

    ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmFileParameter, ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmFileParameterArgs

    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.
    name string
    Name of the Helm parameter.
    path string
    Path to the file containing the values for the Helm parameter.
    name str
    Name of the Helm parameter.
    path str
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.

    ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmParameter, ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmParameterArgs

    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.
    forceString boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name string
    Name of the Helm parameter.
    value string
    Value of the Helm parameter.
    force_string bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name str
    Name of the Helm parameter.
    value str
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.

    ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomize, ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizeArgs

    CommonAnnotations Dictionary<string, string>
    List of additional annotations to add to rendered manifests.
    CommonLabels Dictionary<string, string>
    List of additional labels to add to rendered manifests.
    Images List<string>
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    CommonAnnotations map[string]string
    List of additional annotations to add to rendered manifests.
    CommonLabels map[string]string
    List of additional labels to add to rendered manifests.
    Images []string
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches []ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatch
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String,String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String,String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.
    commonAnnotations {[key: string]: string}
    List of additional annotations to add to rendered manifests.
    commonLabels {[key: string]: string}
    List of additional labels to add to rendered manifests.
    images string[]
    List of Kustomize image override specifications.
    namePrefix string
    Prefix appended to resources for Kustomize apps.
    nameSuffix string
    Suffix appended to resources for Kustomize apps.
    patches ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatch[]
    A list of Kustomize patches to apply.
    version string
    Version of Kustomize to use for rendering manifests.
    common_annotations Mapping[str, str]
    List of additional annotations to add to rendered manifests.
    common_labels Mapping[str, str]
    List of additional labels to add to rendered manifests.
    images Sequence[str]
    List of Kustomize image override specifications.
    name_prefix str
    Prefix appended to resources for Kustomize apps.
    name_suffix str
    Suffix appended to resources for Kustomize apps.
    patches Sequence[ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatch]
    A list of Kustomize patches to apply.
    version str
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<Property Map>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.

    ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatch, ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatchArgs

    Target Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options Dictionary<string, bool>
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    Target ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options map[string]bool
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Map<String,Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options {[key: string]: boolean}
    Additional options.
    patch string
    Inline Kustomize patch to apply.
    path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Mapping[str, bool]
    Additional options.
    patch str
    Inline Kustomize patch to apply.
    path str
    Path to a file containing the patch to apply.
    target Property Map
    Target(s) to patch
    options Map<Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.

    ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatchTarget, ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatchTargetArgs

    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.
    annotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    group string
    The Kubernetes resource Group to match for.
    kind string
    The Kubernetes resource Kind to match for.
    labelSelector string
    Label selector to use when matching the Kubernetes resource.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    version string
    The Kubernetes resource Version to match for.
    annotation_selector str
    Annotation selector to use when matching the Kubernetes resource.
    group str
    The Kubernetes resource Group to match for.
    kind str
    The Kubernetes resource Kind to match for.
    label_selector str
    Label selector to use when matching the Kubernetes resource.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    version str
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.

    ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePlugin, ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePluginArgs

    Envs List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    Envs []ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePluginEnv
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePluginEnv[]
    Environment variables passed to the plugin.
    name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs Sequence[ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePluginEnv]
    Environment variables passed to the plugin.
    name str
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<Property Map>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.

    ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePluginEnv, ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePluginEnvArgs

    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.
    name string
    Name of the environment variable.
    value string
    Value of the environment variable.
    name str
    Name of the environment variable.
    value str
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.

    ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicy, ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyArgs

    Automated Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions List<string>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    Automated ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions []string
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions string[]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managed_namespace_metadata ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    sync_options Sequence[str]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated Property Map
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata Property Map
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry Property Map
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.

    ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyAutomated, ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyAutomatedArgs

    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty boolean
    Allows apps have zero live resources.
    prune boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allow_empty bool
    Allows apps have zero live resources.
    prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    self_heal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.

    ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyManagedNamespaceMetadata, ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyManagedNamespaceMetadataArgs

    Annotations Dictionary<string, string>
    Annotations to apply to the namespace.
    Labels Dictionary<string, string>
    Labels to apply to the namespace.
    Annotations map[string]string
    Annotations to apply to the namespace.
    Labels map[string]string
    Labels to apply to the namespace.
    annotations Map<String,String>
    Annotations to apply to the namespace.
    labels Map<String,String>
    Labels to apply to the namespace.
    annotations {[key: string]: string}
    Annotations to apply to the namespace.
    labels {[key: string]: string}
    Labels to apply to the namespace.
    annotations Mapping[str, str]
    Annotations to apply to the namespace.
    labels Mapping[str, str]
    Labels to apply to the namespace.
    annotations Map<String>
    Annotations to apply to the namespace.
    labels Map<String>
    Labels to apply to the namespace.

    ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetry, ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetryArgs

    Backoff Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    Backoff ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit str
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff Property Map
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.

    ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetryBackoff, ApplicationSetSpecGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetryBackoffArgs

    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor string
    Factor to multiply the base duration after each failed retry.
    maxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration str
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor str
    Factor to multiply the base duration after each failed retry.
    max_duration str
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.

    ApplicationSetSpecGeneratorMatrixGeneratorScmProvider, ApplicationSetSpecGeneratorMatrixGeneratorScmProviderArgs

    AzureDevops Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderAzureDevops
    Uses the Azure DevOps API to look up eligible repositories based on a team project within an Azure DevOps organization.
    BitbucketCloud Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderBitbucketCloud
    Uses the Bitbucket API V2 to scan a workspace in bitbucket.org.
    BitbucketServer Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderBitbucketServer
    Use the Bitbucket Server API (1.0) to scan repos in a project.
    CloneProtocol string
    Which protocol to use for the SCM URL. Default is provider-specific but ssh if possible. Not all providers necessarily support all protocols.
    Filters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderFilter>
    Filters for which repos should be considered.
    Gitea Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGitea
    Gitea mode uses the Gitea API to scan organizations in your instance.
    Github Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGithub
    Uses the GitHub API to scan an organization in either github.com or GitHub Enterprise.
    Gitlab Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGitlab
    Uses the GitLab API to scan and organization in either gitlab.com or self-hosted GitLab.
    RequeueAfterSeconds string
    How often to check for changes (in seconds). Default: 3min.
    Template Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplate
    Generator template. Used to override the values of the spec-level template.
    AzureDevops ApplicationSetSpecGeneratorMatrixGeneratorScmProviderAzureDevops
    Uses the Azure DevOps API to look up eligible repositories based on a team project within an Azure DevOps organization.
    BitbucketCloud ApplicationSetSpecGeneratorMatrixGeneratorScmProviderBitbucketCloud
    Uses the Bitbucket API V2 to scan a workspace in bitbucket.org.
    BitbucketServer ApplicationSetSpecGeneratorMatrixGeneratorScmProviderBitbucketServer
    Use the Bitbucket Server API (1.0) to scan repos in a project.
    CloneProtocol string
    Which protocol to use for the SCM URL. Default is provider-specific but ssh if possible. Not all providers necessarily support all protocols.
    Filters []ApplicationSetSpecGeneratorMatrixGeneratorScmProviderFilter
    Filters for which repos should be considered.
    Gitea ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGitea
    Gitea mode uses the Gitea API to scan organizations in your instance.
    Github ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGithub
    Uses the GitHub API to scan an organization in either github.com or GitHub Enterprise.
    Gitlab ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGitlab
    Uses the GitLab API to scan and organization in either gitlab.com or self-hosted GitLab.
    RequeueAfterSeconds string
    How often to check for changes (in seconds). Default: 3min.
    Template ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplate
    Generator template. Used to override the values of the spec-level template.
    azureDevops ApplicationSetSpecGeneratorMatrixGeneratorScmProviderAzureDevops
    Uses the Azure DevOps API to look up eligible repositories based on a team project within an Azure DevOps organization.
    bitbucketCloud ApplicationSetSpecGeneratorMatrixGeneratorScmProviderBitbucketCloud
    Uses the Bitbucket API V2 to scan a workspace in bitbucket.org.
    bitbucketServer ApplicationSetSpecGeneratorMatrixGeneratorScmProviderBitbucketServer
    Use the Bitbucket Server API (1.0) to scan repos in a project.
    cloneProtocol String
    Which protocol to use for the SCM URL. Default is provider-specific but ssh if possible. Not all providers necessarily support all protocols.
    filters List<ApplicationSetSpecGeneratorMatrixGeneratorScmProviderFilter>
    Filters for which repos should be considered.
    gitea ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGitea
    Gitea mode uses the Gitea API to scan organizations in your instance.
    github ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGithub
    Uses the GitHub API to scan an organization in either github.com or GitHub Enterprise.
    gitlab ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGitlab
    Uses the GitLab API to scan and organization in either gitlab.com or self-hosted GitLab.
    requeueAfterSeconds String
    How often to check for changes (in seconds). Default: 3min.
    template ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplate
    Generator template. Used to override the values of the spec-level template.
    azureDevops ApplicationSetSpecGeneratorMatrixGeneratorScmProviderAzureDevops
    Uses the Azure DevOps API to look up eligible repositories based on a team project within an Azure DevOps organization.
    bitbucketCloud ApplicationSetSpecGeneratorMatrixGeneratorScmProviderBitbucketCloud
    Uses the Bitbucket API V2 to scan a workspace in bitbucket.org.
    bitbucketServer ApplicationSetSpecGeneratorMatrixGeneratorScmProviderBitbucketServer
    Use the Bitbucket Server API (1.0) to scan repos in a project.
    cloneProtocol string
    Which protocol to use for the SCM URL. Default is provider-specific but ssh if possible. Not all providers necessarily support all protocols.
    filters ApplicationSetSpecGeneratorMatrixGeneratorScmProviderFilter[]
    Filters for which repos should be considered.
    gitea ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGitea
    Gitea mode uses the Gitea API to scan organizations in your instance.
    github ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGithub
    Uses the GitHub API to scan an organization in either github.com or GitHub Enterprise.
    gitlab ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGitlab
    Uses the GitLab API to scan and organization in either gitlab.com or self-hosted GitLab.
    requeueAfterSeconds string
    How often to check for changes (in seconds). Default: 3min.
    template ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplate
    Generator template. Used to override the values of the spec-level template.
    azure_devops ApplicationSetSpecGeneratorMatrixGeneratorScmProviderAzureDevops
    Uses the Azure DevOps API to look up eligible repositories based on a team project within an Azure DevOps organization.
    bitbucket_cloud ApplicationSetSpecGeneratorMatrixGeneratorScmProviderBitbucketCloud
    Uses the Bitbucket API V2 to scan a workspace in bitbucket.org.
    bitbucket_server ApplicationSetSpecGeneratorMatrixGeneratorScmProviderBitbucketServer
    Use the Bitbucket Server API (1.0) to scan repos in a project.
    clone_protocol str
    Which protocol to use for the SCM URL. Default is provider-specific but ssh if possible. Not all providers necessarily support all protocols.
    filters Sequence[ApplicationSetSpecGeneratorMatrixGeneratorScmProviderFilter]
    Filters for which repos should be considered.
    gitea ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGitea
    Gitea mode uses the Gitea API to scan organizations in your instance.
    github ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGithub
    Uses the GitHub API to scan an organization in either github.com or GitHub Enterprise.
    gitlab ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGitlab
    Uses the GitLab API to scan and organization in either gitlab.com or self-hosted GitLab.
    requeue_after_seconds str
    How often to check for changes (in seconds). Default: 3min.
    template ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplate
    Generator template. Used to override the values of the spec-level template.
    azureDevops Property Map
    Uses the Azure DevOps API to look up eligible repositories based on a team project within an Azure DevOps organization.
    bitbucketCloud Property Map
    Uses the Bitbucket API V2 to scan a workspace in bitbucket.org.
    bitbucketServer Property Map
    Use the Bitbucket Server API (1.0) to scan repos in a project.
    cloneProtocol String
    Which protocol to use for the SCM URL. Default is provider-specific but ssh if possible. Not all providers necessarily support all protocols.
    filters List<Property Map>
    Filters for which repos should be considered.
    gitea Property Map
    Gitea mode uses the Gitea API to scan organizations in your instance.
    github Property Map
    Uses the GitHub API to scan an organization in either github.com or GitHub Enterprise.
    gitlab Property Map
    Uses the GitLab API to scan and organization in either gitlab.com or self-hosted GitLab.
    requeueAfterSeconds String
    How often to check for changes (in seconds). Default: 3min.
    template Property Map
    Generator template. Used to override the values of the spec-level template.

    ApplicationSetSpecGeneratorMatrixGeneratorScmProviderAzureDevops, ApplicationSetSpecGeneratorMatrixGeneratorScmProviderAzureDevopsArgs

    Organization string
    Azure Devops organization. E.g. "my-organization".
    TeamProject string
    Azure Devops team project. E.g. "my-team".
    AccessTokenRef Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderAzureDevopsAccessTokenRef
    The Personal Access Token (PAT) to use when connecting.
    AllBranches bool
    Scan all branches instead of just the default branch.
    Api string
    The URL to Azure DevOps. Defaults to https://dev.azure.com.
    Organization string
    Azure Devops organization. E.g. "my-organization".
    TeamProject string
    Azure Devops team project. E.g. "my-team".
    AccessTokenRef ApplicationSetSpecGeneratorMatrixGeneratorScmProviderAzureDevopsAccessTokenRef
    The Personal Access Token (PAT) to use when connecting.
    AllBranches bool
    Scan all branches instead of just the default branch.
    Api string
    The URL to Azure DevOps. Defaults to https://dev.azure.com.
    organization String
    Azure Devops organization. E.g. "my-organization".
    teamProject String
    Azure Devops team project. E.g. "my-team".
    accessTokenRef ApplicationSetSpecGeneratorMatrixGeneratorScmProviderAzureDevopsAccessTokenRef
    The Personal Access Token (PAT) to use when connecting.
    allBranches Boolean
    Scan all branches instead of just the default branch.
    api String
    The URL to Azure DevOps. Defaults to https://dev.azure.com.
    organization string
    Azure Devops organization. E.g. "my-organization".
    teamProject string
    Azure Devops team project. E.g. "my-team".
    accessTokenRef ApplicationSetSpecGeneratorMatrixGeneratorScmProviderAzureDevopsAccessTokenRef
    The Personal Access Token (PAT) to use when connecting.
    allBranches boolean
    Scan all branches instead of just the default branch.
    api string
    The URL to Azure DevOps. Defaults to https://dev.azure.com.
    organization str
    Azure Devops organization. E.g. "my-organization".
    team_project str
    Azure Devops team project. E.g. "my-team".
    access_token_ref ApplicationSetSpecGeneratorMatrixGeneratorScmProviderAzureDevopsAccessTokenRef
    The Personal Access Token (PAT) to use when connecting.
    all_branches bool
    Scan all branches instead of just the default branch.
    api str
    The URL to Azure DevOps. Defaults to https://dev.azure.com.
    organization String
    Azure Devops organization. E.g. "my-organization".
    teamProject String
    Azure Devops team project. E.g. "my-team".
    accessTokenRef Property Map
    The Personal Access Token (PAT) to use when connecting.
    allBranches Boolean
    Scan all branches instead of just the default branch.
    api String
    The URL to Azure DevOps. Defaults to https://dev.azure.com.

    ApplicationSetSpecGeneratorMatrixGeneratorScmProviderAzureDevopsAccessTokenRef, ApplicationSetSpecGeneratorMatrixGeneratorScmProviderAzureDevopsAccessTokenRefArgs

    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.
    key string
    Key containing information in Kubernetes Secret.
    secretName string
    Name of Kubernetes Secret.
    key str
    Key containing information in Kubernetes Secret.
    secret_name str
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.

    ApplicationSetSpecGeneratorMatrixGeneratorScmProviderBitbucketCloud, ApplicationSetSpecGeneratorMatrixGeneratorScmProviderBitbucketCloudArgs

    Owner string
    Bitbucket workspace to scan.
    User string
    Bitbucket user to use when authenticating. Should have a "member" role to be able to read all repositories and branches.
    AllBranches bool
    Scan all branches instead of just the default branch.
    AppPasswordRef Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderBitbucketCloudAppPasswordRef
    The app password to use for the user. See: https://support.atlassian.com/bitbucket-cloud/docs/app-passwords/.
    Owner string
    Bitbucket workspace to scan.
    User string
    Bitbucket user to use when authenticating. Should have a "member" role to be able to read all repositories and branches.
    AllBranches bool
    Scan all branches instead of just the default branch.
    AppPasswordRef ApplicationSetSpecGeneratorMatrixGeneratorScmProviderBitbucketCloudAppPasswordRef
    The app password to use for the user. See: https://support.atlassian.com/bitbucket-cloud/docs/app-passwords/.
    owner String
    Bitbucket workspace to scan.
    user String
    Bitbucket user to use when authenticating. Should have a "member" role to be able to read all repositories and branches.
    allBranches Boolean
    Scan all branches instead of just the default branch.
    appPasswordRef ApplicationSetSpecGeneratorMatrixGeneratorScmProviderBitbucketCloudAppPasswordRef
    The app password to use for the user. See: https://support.atlassian.com/bitbucket-cloud/docs/app-passwords/.
    owner string
    Bitbucket workspace to scan.
    user string
    Bitbucket user to use when authenticating. Should have a "member" role to be able to read all repositories and branches.
    allBranches boolean
    Scan all branches instead of just the default branch.
    appPasswordRef ApplicationSetSpecGeneratorMatrixGeneratorScmProviderBitbucketCloudAppPasswordRef
    The app password to use for the user. See: https://support.atlassian.com/bitbucket-cloud/docs/app-passwords/.
    owner str
    Bitbucket workspace to scan.
    user str
    Bitbucket user to use when authenticating. Should have a "member" role to be able to read all repositories and branches.
    all_branches bool
    Scan all branches instead of just the default branch.
    app_password_ref ApplicationSetSpecGeneratorMatrixGeneratorScmProviderBitbucketCloudAppPasswordRef
    The app password to use for the user. See: https://support.atlassian.com/bitbucket-cloud/docs/app-passwords/.
    owner String
    Bitbucket workspace to scan.
    user String
    Bitbucket user to use when authenticating. Should have a "member" role to be able to read all repositories and branches.
    allBranches Boolean
    Scan all branches instead of just the default branch.
    appPasswordRef Property Map
    The app password to use for the user. See: https://support.atlassian.com/bitbucket-cloud/docs/app-passwords/.

    ApplicationSetSpecGeneratorMatrixGeneratorScmProviderBitbucketCloudAppPasswordRef, ApplicationSetSpecGeneratorMatrixGeneratorScmProviderBitbucketCloudAppPasswordRefArgs

    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.
    key string
    Key containing information in Kubernetes Secret.
    secretName string
    Name of Kubernetes Secret.
    key str
    Key containing information in Kubernetes Secret.
    secret_name str
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.

    ApplicationSetSpecGeneratorMatrixGeneratorScmProviderBitbucketServer, ApplicationSetSpecGeneratorMatrixGeneratorScmProviderBitbucketServerArgs

    Api string
    The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest.
    Project string
    Project to scan.
    AllBranches bool
    Scan all branches instead of just the default branch.
    BasicAuth Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderBitbucketServerBasicAuth
    Credentials for Basic auth.
    Api string
    The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest.
    Project string
    Project to scan.
    AllBranches bool
    Scan all branches instead of just the default branch.
    BasicAuth ApplicationSetSpecGeneratorMatrixGeneratorScmProviderBitbucketServerBasicAuth
    Credentials for Basic auth.
    api String
    The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest.
    project String
    Project to scan.
    allBranches Boolean
    Scan all branches instead of just the default branch.
    basicAuth ApplicationSetSpecGeneratorMatrixGeneratorScmProviderBitbucketServerBasicAuth
    Credentials for Basic auth.
    api string
    The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest.
    project string
    Project to scan.
    allBranches boolean
    Scan all branches instead of just the default branch.
    basicAuth ApplicationSetSpecGeneratorMatrixGeneratorScmProviderBitbucketServerBasicAuth
    Credentials for Basic auth.
    api str
    The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest.
    project str
    Project to scan.
    all_branches bool
    Scan all branches instead of just the default branch.
    basic_auth ApplicationSetSpecGeneratorMatrixGeneratorScmProviderBitbucketServerBasicAuth
    Credentials for Basic auth.
    api String
    The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest.
    project String
    Project to scan.
    allBranches Boolean
    Scan all branches instead of just the default branch.
    basicAuth Property Map
    Credentials for Basic auth.

    ApplicationSetSpecGeneratorMatrixGeneratorScmProviderBitbucketServerBasicAuth, ApplicationSetSpecGeneratorMatrixGeneratorScmProviderBitbucketServerBasicAuthArgs

    PasswordRef ApplicationSetSpecGeneratorMatrixGeneratorScmProviderBitbucketServerBasicAuthPasswordRef
    Password (or personal access token) reference.
    Username string
    Username for Basic auth.
    passwordRef ApplicationSetSpecGeneratorMatrixGeneratorScmProviderBitbucketServerBasicAuthPasswordRef
    Password (or personal access token) reference.
    username String
    Username for Basic auth.
    passwordRef ApplicationSetSpecGeneratorMatrixGeneratorScmProviderBitbucketServerBasicAuthPasswordRef
    Password (or personal access token) reference.
    username string
    Username for Basic auth.
    password_ref ApplicationSetSpecGeneratorMatrixGeneratorScmProviderBitbucketServerBasicAuthPasswordRef
    Password (or personal access token) reference.
    username str
    Username for Basic auth.
    passwordRef Property Map
    Password (or personal access token) reference.
    username String
    Username for Basic auth.

    ApplicationSetSpecGeneratorMatrixGeneratorScmProviderBitbucketServerBasicAuthPasswordRef, ApplicationSetSpecGeneratorMatrixGeneratorScmProviderBitbucketServerBasicAuthPasswordRefArgs

    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.
    key string
    Key containing information in Kubernetes Secret.
    secretName string
    Name of Kubernetes Secret.
    key str
    Key containing information in Kubernetes Secret.
    secret_name str
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.

    ApplicationSetSpecGeneratorMatrixGeneratorScmProviderFilter, ApplicationSetSpecGeneratorMatrixGeneratorScmProviderFilterArgs

    BranchMatch string
    A regex which must match the branch name.
    LabelMatch string
    A regex which must match at least one label.
    PathsDoNotExists List<string>
    An array of paths, all of which must not exist.
    PathsExists List<string>
    An array of paths, all of which must exist.
    RepositoryMatch string
    A regex for repo names.
    BranchMatch string
    A regex which must match the branch name.
    LabelMatch string
    A regex which must match at least one label.
    PathsDoNotExists []string
    An array of paths, all of which must not exist.
    PathsExists []string
    An array of paths, all of which must exist.
    RepositoryMatch string
    A regex for repo names.
    branchMatch String
    A regex which must match the branch name.
    labelMatch String
    A regex which must match at least one label.
    pathsDoNotExists List<String>
    An array of paths, all of which must not exist.
    pathsExists List<String>
    An array of paths, all of which must exist.
    repositoryMatch String
    A regex for repo names.
    branchMatch string
    A regex which must match the branch name.
    labelMatch string
    A regex which must match at least one label.
    pathsDoNotExists string[]
    An array of paths, all of which must not exist.
    pathsExists string[]
    An array of paths, all of which must exist.
    repositoryMatch string
    A regex for repo names.
    branch_match str
    A regex which must match the branch name.
    label_match str
    A regex which must match at least one label.
    paths_do_not_exists Sequence[str]
    An array of paths, all of which must not exist.
    paths_exists Sequence[str]
    An array of paths, all of which must exist.
    repository_match str
    A regex for repo names.
    branchMatch String
    A regex which must match the branch name.
    labelMatch String
    A regex which must match at least one label.
    pathsDoNotExists List<String>
    An array of paths, all of which must not exist.
    pathsExists List<String>
    An array of paths, all of which must exist.
    repositoryMatch String
    A regex for repo names.

    ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGitea, ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGiteaArgs

    Owner string
    Gitea organization or user to scan.
    AllBranches bool
    Scan all branches instead of just the default branch.
    Api string
    The Gitea URL to talk to. For example https://gitea.mydomain.com/.
    Insecure bool
    Allow self-signed TLS / Certificates.
    TokenRef Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGiteaTokenRef
    Authentication token reference.
    Owner string
    Gitea organization or user to scan.
    AllBranches bool
    Scan all branches instead of just the default branch.
    Api string
    The Gitea URL to talk to. For example https://gitea.mydomain.com/.
    Insecure bool
    Allow self-signed TLS / Certificates.
    TokenRef ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGiteaTokenRef
    Authentication token reference.
    owner String
    Gitea organization or user to scan.
    allBranches Boolean
    Scan all branches instead of just the default branch.
    api String
    The Gitea URL to talk to. For example https://gitea.mydomain.com/.
    insecure Boolean
    Allow self-signed TLS / Certificates.
    tokenRef ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGiteaTokenRef
    Authentication token reference.
    owner string
    Gitea organization or user to scan.
    allBranches boolean
    Scan all branches instead of just the default branch.
    api string
    The Gitea URL to talk to. For example https://gitea.mydomain.com/.
    insecure boolean
    Allow self-signed TLS / Certificates.
    tokenRef ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGiteaTokenRef
    Authentication token reference.
    owner str
    Gitea organization or user to scan.
    all_branches bool
    Scan all branches instead of just the default branch.
    api str
    The Gitea URL to talk to. For example https://gitea.mydomain.com/.
    insecure bool
    Allow self-signed TLS / Certificates.
    token_ref ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGiteaTokenRef
    Authentication token reference.
    owner String
    Gitea organization or user to scan.
    allBranches Boolean
    Scan all branches instead of just the default branch.
    api String
    The Gitea URL to talk to. For example https://gitea.mydomain.com/.
    insecure Boolean
    Allow self-signed TLS / Certificates.
    tokenRef Property Map
    Authentication token reference.

    ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGiteaTokenRef, ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGiteaTokenRefArgs

    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.
    key string
    Key containing information in Kubernetes Secret.
    secretName string
    Name of Kubernetes Secret.
    key str
    Key containing information in Kubernetes Secret.
    secret_name str
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.

    ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGithub, ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGithubArgs

    Organization string
    GitHub org to scan.
    AllBranches bool
    If true, scan every branch of every repository. If false, scan only the default branch.
    Api string
    The GitHub API URL to talk to. Default https://api.github.com/.
    AppSecretName string
    Reference to a GitHub App repo-creds secret. Uses a GitHub App to access the API instead of a PAT.
    TokenRef Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGithubTokenRef
    Authentication token reference.
    Organization string
    GitHub org to scan.
    AllBranches bool
    If true, scan every branch of every repository. If false, scan only the default branch.
    Api string
    The GitHub API URL to talk to. Default https://api.github.com/.
    AppSecretName string
    Reference to a GitHub App repo-creds secret. Uses a GitHub App to access the API instead of a PAT.
    TokenRef ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGithubTokenRef
    Authentication token reference.
    organization String
    GitHub org to scan.
    allBranches Boolean
    If true, scan every branch of every repository. If false, scan only the default branch.
    api String
    The GitHub API URL to talk to. Default https://api.github.com/.
    appSecretName String
    Reference to a GitHub App repo-creds secret. Uses a GitHub App to access the API instead of a PAT.
    tokenRef ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGithubTokenRef
    Authentication token reference.
    organization string
    GitHub org to scan.
    allBranches boolean
    If true, scan every branch of every repository. If false, scan only the default branch.
    api string
    The GitHub API URL to talk to. Default https://api.github.com/.
    appSecretName string
    Reference to a GitHub App repo-creds secret. Uses a GitHub App to access the API instead of a PAT.
    tokenRef ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGithubTokenRef
    Authentication token reference.
    organization str
    GitHub org to scan.
    all_branches bool
    If true, scan every branch of every repository. If false, scan only the default branch.
    api str
    The GitHub API URL to talk to. Default https://api.github.com/.
    app_secret_name str
    Reference to a GitHub App repo-creds secret. Uses a GitHub App to access the API instead of a PAT.
    token_ref ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGithubTokenRef
    Authentication token reference.
    organization String
    GitHub org to scan.
    allBranches Boolean
    If true, scan every branch of every repository. If false, scan only the default branch.
    api String
    The GitHub API URL to talk to. Default https://api.github.com/.
    appSecretName String
    Reference to a GitHub App repo-creds secret. Uses a GitHub App to access the API instead of a PAT.
    tokenRef Property Map
    Authentication token reference.

    ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGithubTokenRef, ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGithubTokenRefArgs

    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.
    key string
    Key containing information in Kubernetes Secret.
    secretName string
    Name of Kubernetes Secret.
    key str
    Key containing information in Kubernetes Secret.
    secret_name str
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.

    ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGitlab, ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGitlabArgs

    Group string
    Gitlab group to scan. You can use either the project id (recommended) or the full namespaced path.
    AllBranches bool
    If true, scan every branch of every repository. If false, scan only the default branch.
    Api string
    The Gitlab API URL to talk to.
    IncludeSubgroups bool
    Recurse through subgroups (true) or scan only the base group (false). Defaults to false.
    TokenRef Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGitlabTokenRef
    Authentication token reference.
    Group string
    Gitlab group to scan. You can use either the project id (recommended) or the full namespaced path.
    AllBranches bool
    If true, scan every branch of every repository. If false, scan only the default branch.
    Api string
    The Gitlab API URL to talk to.
    IncludeSubgroups bool
    Recurse through subgroups (true) or scan only the base group (false). Defaults to false.
    TokenRef ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGitlabTokenRef
    Authentication token reference.
    group String
    Gitlab group to scan. You can use either the project id (recommended) or the full namespaced path.
    allBranches Boolean
    If true, scan every branch of every repository. If false, scan only the default branch.
    api String
    The Gitlab API URL to talk to.
    includeSubgroups Boolean
    Recurse through subgroups (true) or scan only the base group (false). Defaults to false.
    tokenRef ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGitlabTokenRef
    Authentication token reference.
    group string
    Gitlab group to scan. You can use either the project id (recommended) or the full namespaced path.
    allBranches boolean
    If true, scan every branch of every repository. If false, scan only the default branch.
    api string
    The Gitlab API URL to talk to.
    includeSubgroups boolean
    Recurse through subgroups (true) or scan only the base group (false). Defaults to false.
    tokenRef ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGitlabTokenRef
    Authentication token reference.
    group str
    Gitlab group to scan. You can use either the project id (recommended) or the full namespaced path.
    all_branches bool
    If true, scan every branch of every repository. If false, scan only the default branch.
    api str
    The Gitlab API URL to talk to.
    include_subgroups bool
    Recurse through subgroups (true) or scan only the base group (false). Defaults to false.
    token_ref ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGitlabTokenRef
    Authentication token reference.
    group String
    Gitlab group to scan. You can use either the project id (recommended) or the full namespaced path.
    allBranches Boolean
    If true, scan every branch of every repository. If false, scan only the default branch.
    api String
    The Gitlab API URL to talk to.
    includeSubgroups Boolean
    Recurse through subgroups (true) or scan only the base group (false). Defaults to false.
    tokenRef Property Map
    Authentication token reference.

    ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGitlabTokenRef, ApplicationSetSpecGeneratorMatrixGeneratorScmProviderGitlabTokenRefArgs

    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.
    key string
    Key containing information in Kubernetes Secret.
    secretName string
    Name of Kubernetes Secret.
    key str
    Key containing information in Kubernetes Secret.
    secret_name str
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.

    ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplate, ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateArgs

    metadata Property Map
    Kubernetes object metadata for templated Application.
    spec Property Map
    The application specification.

    ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateMetadata, ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateMetadataArgs

    Annotations Dictionary<string, string>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers List<string>
    List of finalizers to apply to the resulting Application.
    Labels Dictionary<string, string>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    Annotations map[string]string
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers []string
    List of finalizers to apply to the resulting Application.
    Labels map[string]string
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    annotations Map<String,String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String,String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application
    annotations {[key: string]: string}
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers string[]
    List of finalizers to apply to the resulting Application.
    labels {[key: string]: string}
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name string
    Name of the resulting Application
    namespace string
    Namespace of the resulting Application
    annotations Mapping[str, str]
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers Sequence[str]
    List of finalizers to apply to the resulting Application.
    labels Mapping[str, str]
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name str
    Name of the resulting Application
    namespace str
    Namespace of the resulting Application
    annotations Map<String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application

    ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpec, ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecArgs

    Destination Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSource>
    Location of the application's manifests or chart.
    SyncPolicy Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    Destination ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences []ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecIgnoreDifference
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos []ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecInfo
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources []ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSource
    Location of the application's manifests or chart.
    SyncPolicy ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Integer
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSource>
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecIgnoreDifference[]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecInfo[]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project string
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSource[]
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignore_differences Sequence[ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecIgnoreDifference]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos Sequence[ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecInfo]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project str
    The project the application belongs to. Defaults to default.
    revision_history_limit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources Sequence[ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSource]
    Location of the application's manifests or chart.
    sync_policy ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination Property Map
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<Property Map>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<Property Map>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<Property Map>
    Location of the application's manifests or chart.
    syncPolicy Property Map
    Controls when and how a sync will be performed.

    ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecDestination, ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecDestinationArgs

    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name string
    Name of the target cluster. Can be used instead of server.
    namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name str
    Name of the target cluster. Can be used instead of server.
    namespace str
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server str
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.

    ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecIgnoreDifference, ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecIgnoreDifferenceArgs

    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions List<string>
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers List<string>
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers List<string>
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions []string
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers []string
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers []string
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    group string
    The Kubernetes resource Group to match for.
    jqPathExpressions string[]
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers string[]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind string
    The Kubernetes resource Kind to match for.
    managedFieldsManagers string[]
    List of external controller manager names whose changes to fields should be ignored.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    group str
    The Kubernetes resource Group to match for.
    jq_path_expressions Sequence[str]
    List of JQ path expression strings targeting the field(s) to ignore.
    json_pointers Sequence[str]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind str
    The Kubernetes resource Kind to match for.
    managed_fields_managers Sequence[str]
    List of external controller manager names whose changes to fields should be ignored.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.

    ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecInfo, ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecInfoArgs

    Name string
    Name of the information.
    Value string
    Value of the information.
    Name string
    Name of the information.
    Value string
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.
    name string
    Name of the information.
    value string
    Value of the information.
    name str
    Name of the information.
    value str
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.

    ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSource, ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceArgs

    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelm
    Helm specific options.
    Kustomize Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelm
    Helm specific options.
    Kustomize ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomize
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomize
    Kustomize specific options.
    path string
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart str
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomize
    Kustomize specific options.
    path str
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref str
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repo_url str
    URL to the repository (Git or Helm) that contains the application manifests.
    target_revision str
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory Property Map
    Path/directory specific options.
    helm Property Map
    Helm specific options.
    kustomize Property Map
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin Property Map
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.

    ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectory, ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryArgs

    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.
    exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse boolean
    Whether to scan a directory recursively for manifests.
    exclude str
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include str
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet Property Map
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.

    ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnet, ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetArgs

    extVars List<Property Map>
    List of Jsonnet External Variables.
    libs List<String>
    Additional library search dirs.
    tlas List<Property Map>
    List of Jsonnet Top-level Arguments

    ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetExtVar, ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetExtVarArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetTla, ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceDirectoryJsonnetTlaArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelm, ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmArgs

    FileParameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles List<string>
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    FileParameters []ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmFileParameter
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters []ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmParameter
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles []string
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmFileParameter[]
    File parameters for the helm template.
    ignoreMissingValueFiles boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmParameter[]
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName string
    Helm release name. If omitted it will use the application name.
    skipCrds boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles string[]
    List of Helm value files to use when generating a template.
    values string
    Helm values to be passed to 'helm template', typically defined as a block.
    version string
    The Helm version to use for templating. Accepts either v2 or v3
    file_parameters Sequence[ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmFileParameter]
    File parameters for the helm template.
    ignore_missing_value_files bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters Sequence[ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmParameter]
    Helm parameters which are passed to the helm template command upon manifest generation.
    pass_credentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    release_name str
    Helm release name. If omitted it will use the application name.
    skip_crds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    value_files Sequence[str]
    List of Helm value files to use when generating a template.
    values str
    Helm values to be passed to 'helm template', typically defined as a block.
    version str
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<Property Map>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<Property Map>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3

    ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmFileParameter, ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmFileParameterArgs

    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.
    name string
    Name of the Helm parameter.
    path string
    Path to the file containing the values for the Helm parameter.
    name str
    Name of the Helm parameter.
    path str
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.

    ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmParameter, ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceHelmParameterArgs

    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.
    forceString boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name string
    Name of the Helm parameter.
    value string
    Value of the Helm parameter.
    force_string bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name str
    Name of the Helm parameter.
    value str
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.

    ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomize, ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizeArgs

    CommonAnnotations Dictionary<string, string>
    List of additional annotations to add to rendered manifests.
    CommonLabels Dictionary<string, string>
    List of additional labels to add to rendered manifests.
    Images List<string>
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    CommonAnnotations map[string]string
    List of additional annotations to add to rendered manifests.
    CommonLabels map[string]string
    List of additional labels to add to rendered manifests.
    Images []string
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches []ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizePatch
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String,String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String,String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.
    commonAnnotations {[key: string]: string}
    List of additional annotations to add to rendered manifests.
    commonLabels {[key: string]: string}
    List of additional labels to add to rendered manifests.
    images string[]
    List of Kustomize image override specifications.
    namePrefix string
    Prefix appended to resources for Kustomize apps.
    nameSuffix string
    Suffix appended to resources for Kustomize apps.
    patches ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizePatch[]
    A list of Kustomize patches to apply.
    version string
    Version of Kustomize to use for rendering manifests.
    common_annotations Mapping[str, str]
    List of additional annotations to add to rendered manifests.
    common_labels Mapping[str, str]
    List of additional labels to add to rendered manifests.
    images Sequence[str]
    List of Kustomize image override specifications.
    name_prefix str
    Prefix appended to resources for Kustomize apps.
    name_suffix str
    Suffix appended to resources for Kustomize apps.
    patches Sequence[ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizePatch]
    A list of Kustomize patches to apply.
    version str
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<Property Map>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.

    ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizePatch, ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizePatchArgs

    Target Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options Dictionary<string, bool>
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    Target ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options map[string]bool
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Map<String,Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options {[key: string]: boolean}
    Additional options.
    patch string
    Inline Kustomize patch to apply.
    path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Mapping[str, bool]
    Additional options.
    patch str
    Inline Kustomize patch to apply.
    path str
    Path to a file containing the patch to apply.
    target Property Map
    Target(s) to patch
    options Map<Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.

    ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizePatchTarget, ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourceKustomizePatchTargetArgs

    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.
    annotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    group string
    The Kubernetes resource Group to match for.
    kind string
    The Kubernetes resource Kind to match for.
    labelSelector string
    Label selector to use when matching the Kubernetes resource.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    version string
    The Kubernetes resource Version to match for.
    annotation_selector str
    Annotation selector to use when matching the Kubernetes resource.
    group str
    The Kubernetes resource Group to match for.
    kind str
    The Kubernetes resource Kind to match for.
    label_selector str
    Label selector to use when matching the Kubernetes resource.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    version str
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.

    ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourcePlugin, ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourcePluginArgs

    Envs List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    Envs []ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourcePluginEnv
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourcePluginEnv[]
    Environment variables passed to the plugin.
    name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs Sequence[ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourcePluginEnv]
    Environment variables passed to the plugin.
    name str
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<Property Map>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.

    ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourcePluginEnv, ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSourcePluginEnvArgs

    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.
    name string
    Name of the environment variable.
    value string
    Value of the environment variable.
    name str
    Name of the environment variable.
    value str
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.

    ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicy, ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyArgs

    Automated Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions List<string>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    Automated ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions []string
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions string[]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managed_namespace_metadata ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    sync_options Sequence[str]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated Property Map
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata Property Map
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry Property Map
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.

    ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyAutomated, ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyAutomatedArgs

    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty boolean
    Allows apps have zero live resources.
    prune boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allow_empty bool
    Allows apps have zero live resources.
    prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    self_heal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.

    ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyManagedNamespaceMetadata, ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyManagedNamespaceMetadataArgs

    Annotations Dictionary<string, string>
    Annotations to apply to the namespace.
    Labels Dictionary<string, string>
    Labels to apply to the namespace.
    Annotations map[string]string
    Annotations to apply to the namespace.
    Labels map[string]string
    Labels to apply to the namespace.
    annotations Map<String,String>
    Annotations to apply to the namespace.
    labels Map<String,String>
    Labels to apply to the namespace.
    annotations {[key: string]: string}
    Annotations to apply to the namespace.
    labels {[key: string]: string}
    Labels to apply to the namespace.
    annotations Mapping[str, str]
    Annotations to apply to the namespace.
    labels Mapping[str, str]
    Labels to apply to the namespace.
    annotations Map<String>
    Annotations to apply to the namespace.
    labels Map<String>
    Labels to apply to the namespace.

    ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyRetry, ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyRetryArgs

    Backoff Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    Backoff ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit str
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff Property Map
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.

    ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyRetryBackoff, ApplicationSetSpecGeneratorMatrixGeneratorScmProviderTemplateSpecSyncPolicyRetryBackoffArgs

    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor string
    Factor to multiply the base duration after each failed retry.
    maxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration str
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor str
    Factor to multiply the base duration after each failed retry.
    max_duration str
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.

    ApplicationSetSpecGeneratorMatrixGeneratorSelector, ApplicationSetSpecGeneratorMatrixGeneratorSelectorArgs

    MatchExpressions List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixGeneratorSelectorMatchExpression>
    A list of label selector requirements. The requirements are ANDed.
    MatchLabels Dictionary<string, string>
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    MatchExpressions []ApplicationSetSpecGeneratorMatrixGeneratorSelectorMatchExpression
    A list of label selector requirements. The requirements are ANDed.
    MatchLabels map[string]string
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    matchExpressions List<ApplicationSetSpecGeneratorMatrixGeneratorSelectorMatchExpression>
    A list of label selector requirements. The requirements are ANDed.
    matchLabels Map<String,String>
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    matchExpressions ApplicationSetSpecGeneratorMatrixGeneratorSelectorMatchExpression[]
    A list of label selector requirements. The requirements are ANDed.
    matchLabels {[key: string]: string}
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    match_expressions Sequence[ApplicationSetSpecGeneratorMatrixGeneratorSelectorMatchExpression]
    A list of label selector requirements. The requirements are ANDed.
    match_labels Mapping[str, str]
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    matchExpressions List<Property Map>
    A list of label selector requirements. The requirements are ANDed.
    matchLabels Map<String>
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.

    ApplicationSetSpecGeneratorMatrixGeneratorSelectorMatchExpression, ApplicationSetSpecGeneratorMatrixGeneratorSelectorMatchExpressionArgs

    Key string
    The label key that the selector applies to.
    Operator string
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    Values List<string>
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    Key string
    The label key that the selector applies to.
    Operator string
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    Values []string
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key String
    The label key that the selector applies to.
    operator String
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values List<String>
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key string
    The label key that the selector applies to.
    operator string
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values string[]
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key str
    The label key that the selector applies to.
    operator str
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values Sequence[str]
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key String
    The label key that the selector applies to.
    operator String
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values List<String>
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.

    ApplicationSetSpecGeneratorMatrixTemplate, ApplicationSetSpecGeneratorMatrixTemplateArgs

    Metadata ApplicationSetSpecGeneratorMatrixTemplateMetadata
    Kubernetes object metadata for templated Application.
    Spec ApplicationSetSpecGeneratorMatrixTemplateSpec
    The application specification.
    metadata ApplicationSetSpecGeneratorMatrixTemplateMetadata
    Kubernetes object metadata for templated Application.
    spec ApplicationSetSpecGeneratorMatrixTemplateSpec
    The application specification.
    metadata ApplicationSetSpecGeneratorMatrixTemplateMetadata
    Kubernetes object metadata for templated Application.
    spec ApplicationSetSpecGeneratorMatrixTemplateSpec
    The application specification.
    metadata ApplicationSetSpecGeneratorMatrixTemplateMetadata
    Kubernetes object metadata for templated Application.
    spec ApplicationSetSpecGeneratorMatrixTemplateSpec
    The application specification.
    metadata Property Map
    Kubernetes object metadata for templated Application.
    spec Property Map
    The application specification.

    ApplicationSetSpecGeneratorMatrixTemplateMetadata, ApplicationSetSpecGeneratorMatrixTemplateMetadataArgs

    Annotations Dictionary<string, string>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers List<string>
    List of finalizers to apply to the resulting Application.
    Labels Dictionary<string, string>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    Annotations map[string]string
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers []string
    List of finalizers to apply to the resulting Application.
    Labels map[string]string
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    annotations Map<String,String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String,String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application
    annotations {[key: string]: string}
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers string[]
    List of finalizers to apply to the resulting Application.
    labels {[key: string]: string}
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name string
    Name of the resulting Application
    namespace string
    Namespace of the resulting Application
    annotations Mapping[str, str]
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers Sequence[str]
    List of finalizers to apply to the resulting Application.
    labels Mapping[str, str]
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name str
    Name of the resulting Application
    namespace str
    Namespace of the resulting Application
    annotations Map<String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application

    ApplicationSetSpecGeneratorMatrixTemplateSpec, ApplicationSetSpecGeneratorMatrixTemplateSpecArgs

    Destination Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixTemplateSpecSource>
    Location of the application's manifests or chart.
    SyncPolicy Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    Destination ApplicationSetSpecGeneratorMatrixTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences []ApplicationSetSpecGeneratorMatrixTemplateSpecIgnoreDifference
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos []ApplicationSetSpecGeneratorMatrixTemplateSpecInfo
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources []ApplicationSetSpecGeneratorMatrixTemplateSpecSource
    Location of the application's manifests or chart.
    SyncPolicy ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<ApplicationSetSpecGeneratorMatrixTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<ApplicationSetSpecGeneratorMatrixTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Integer
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<ApplicationSetSpecGeneratorMatrixTemplateSpecSource>
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences ApplicationSetSpecGeneratorMatrixTemplateSpecIgnoreDifference[]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos ApplicationSetSpecGeneratorMatrixTemplateSpecInfo[]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project string
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources ApplicationSetSpecGeneratorMatrixTemplateSpecSource[]
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMatrixTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignore_differences Sequence[ApplicationSetSpecGeneratorMatrixTemplateSpecIgnoreDifference]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos Sequence[ApplicationSetSpecGeneratorMatrixTemplateSpecInfo]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project str
    The project the application belongs to. Defaults to default.
    revision_history_limit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources Sequence[ApplicationSetSpecGeneratorMatrixTemplateSpecSource]
    Location of the application's manifests or chart.
    sync_policy ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination Property Map
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<Property Map>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<Property Map>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<Property Map>
    Location of the application's manifests or chart.
    syncPolicy Property Map
    Controls when and how a sync will be performed.

    ApplicationSetSpecGeneratorMatrixTemplateSpecDestination, ApplicationSetSpecGeneratorMatrixTemplateSpecDestinationArgs

    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name string
    Name of the target cluster. Can be used instead of server.
    namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name str
    Name of the target cluster. Can be used instead of server.
    namespace str
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server str
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.

    ApplicationSetSpecGeneratorMatrixTemplateSpecIgnoreDifference, ApplicationSetSpecGeneratorMatrixTemplateSpecIgnoreDifferenceArgs

    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions List<string>
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers List<string>
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers List<string>
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions []string
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers []string
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers []string
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    group string
    The Kubernetes resource Group to match for.
    jqPathExpressions string[]
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers string[]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind string
    The Kubernetes resource Kind to match for.
    managedFieldsManagers string[]
    List of external controller manager names whose changes to fields should be ignored.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    group str
    The Kubernetes resource Group to match for.
    jq_path_expressions Sequence[str]
    List of JQ path expression strings targeting the field(s) to ignore.
    json_pointers Sequence[str]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind str
    The Kubernetes resource Kind to match for.
    managed_fields_managers Sequence[str]
    List of external controller manager names whose changes to fields should be ignored.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.

    ApplicationSetSpecGeneratorMatrixTemplateSpecInfo, ApplicationSetSpecGeneratorMatrixTemplateSpecInfoArgs

    Name string
    Name of the information.
    Value string
    Value of the information.
    Name string
    Name of the information.
    Value string
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.
    name string
    Name of the information.
    value string
    Value of the information.
    name str
    Name of the information.
    value str
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.

    ApplicationSetSpecGeneratorMatrixTemplateSpecSource, ApplicationSetSpecGeneratorMatrixTemplateSpecSourceArgs

    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixTemplateSpecSourceHelm
    Helm specific options.
    Kustomize Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory ApplicationSetSpecGeneratorMatrixTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm ApplicationSetSpecGeneratorMatrixTemplateSpecSourceHelm
    Helm specific options.
    Kustomize ApplicationSetSpecGeneratorMatrixTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin ApplicationSetSpecGeneratorMatrixTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixTemplateSpecSourceKustomize
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixTemplateSpecSourceKustomize
    Kustomize specific options.
    path string
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart str
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMatrixTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMatrixTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMatrixTemplateSpecSourceKustomize
    Kustomize specific options.
    path str
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMatrixTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref str
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repo_url str
    URL to the repository (Git or Helm) that contains the application manifests.
    target_revision str
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory Property Map
    Path/directory specific options.
    helm Property Map
    Helm specific options.
    kustomize Property Map
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin Property Map
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.

    ApplicationSetSpecGeneratorMatrixTemplateSpecSourceDirectory, ApplicationSetSpecGeneratorMatrixTemplateSpecSourceDirectoryArgs

    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet ApplicationSetSpecGeneratorMatrixTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.
    exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse boolean
    Whether to scan a directory recursively for manifests.
    exclude str
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include str
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMatrixTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet Property Map
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.

    ApplicationSetSpecGeneratorMatrixTemplateSpecSourceDirectoryJsonnet, ApplicationSetSpecGeneratorMatrixTemplateSpecSourceDirectoryJsonnetArgs

    ExtVars []ApplicationSetSpecGeneratorMatrixTemplateSpecSourceDirectoryJsonnetExtVar
    List of Jsonnet External Variables.
    Libs []string
    Additional library search dirs.
    Tlas []ApplicationSetSpecGeneratorMatrixTemplateSpecSourceDirectoryJsonnetTla
    List of Jsonnet Top-level Arguments
    extVars List<ApplicationSetSpecGeneratorMatrixTemplateSpecSourceDirectoryJsonnetExtVar>
    List of Jsonnet External Variables.
    libs List<String>
    Additional library search dirs.
    tlas List<ApplicationSetSpecGeneratorMatrixTemplateSpecSourceDirectoryJsonnetTla>
    List of Jsonnet Top-level Arguments
    extVars ApplicationSetSpecGeneratorMatrixTemplateSpecSourceDirectoryJsonnetExtVar[]
    List of Jsonnet External Variables.
    libs string[]
    Additional library search dirs.
    tlas ApplicationSetSpecGeneratorMatrixTemplateSpecSourceDirectoryJsonnetTla[]
    List of Jsonnet Top-level Arguments
    extVars List<Property Map>
    List of Jsonnet External Variables.
    libs List<String>
    Additional library search dirs.
    tlas List<Property Map>
    List of Jsonnet Top-level Arguments

    ApplicationSetSpecGeneratorMatrixTemplateSpecSourceDirectoryJsonnetExtVar, ApplicationSetSpecGeneratorMatrixTemplateSpecSourceDirectoryJsonnetExtVarArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMatrixTemplateSpecSourceDirectoryJsonnetTla, ApplicationSetSpecGeneratorMatrixTemplateSpecSourceDirectoryJsonnetTlaArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMatrixTemplateSpecSourceHelm, ApplicationSetSpecGeneratorMatrixTemplateSpecSourceHelmArgs

    FileParameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles List<string>
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    FileParameters []ApplicationSetSpecGeneratorMatrixTemplateSpecSourceHelmFileParameter
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters []ApplicationSetSpecGeneratorMatrixTemplateSpecSourceHelmParameter
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles []string
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<ApplicationSetSpecGeneratorMatrixTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<ApplicationSetSpecGeneratorMatrixTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters ApplicationSetSpecGeneratorMatrixTemplateSpecSourceHelmFileParameter[]
    File parameters for the helm template.
    ignoreMissingValueFiles boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters ApplicationSetSpecGeneratorMatrixTemplateSpecSourceHelmParameter[]
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName string
    Helm release name. If omitted it will use the application name.
    skipCrds boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles string[]
    List of Helm value files to use when generating a template.
    values string
    Helm values to be passed to 'helm template', typically defined as a block.
    version string
    The Helm version to use for templating. Accepts either v2 or v3
    file_parameters Sequence[ApplicationSetSpecGeneratorMatrixTemplateSpecSourceHelmFileParameter]
    File parameters for the helm template.
    ignore_missing_value_files bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters Sequence[ApplicationSetSpecGeneratorMatrixTemplateSpecSourceHelmParameter]
    Helm parameters which are passed to the helm template command upon manifest generation.
    pass_credentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    release_name str
    Helm release name. If omitted it will use the application name.
    skip_crds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    value_files Sequence[str]
    List of Helm value files to use when generating a template.
    values str
    Helm values to be passed to 'helm template', typically defined as a block.
    version str
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<Property Map>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<Property Map>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3

    ApplicationSetSpecGeneratorMatrixTemplateSpecSourceHelmFileParameter, ApplicationSetSpecGeneratorMatrixTemplateSpecSourceHelmFileParameterArgs

    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.
    name string
    Name of the Helm parameter.
    path string
    Path to the file containing the values for the Helm parameter.
    name str
    Name of the Helm parameter.
    path str
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.

    ApplicationSetSpecGeneratorMatrixTemplateSpecSourceHelmParameter, ApplicationSetSpecGeneratorMatrixTemplateSpecSourceHelmParameterArgs

    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.
    forceString boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name string
    Name of the Helm parameter.
    value string
    Value of the Helm parameter.
    force_string bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name str
    Name of the Helm parameter.
    value str
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.

    ApplicationSetSpecGeneratorMatrixTemplateSpecSourceKustomize, ApplicationSetSpecGeneratorMatrixTemplateSpecSourceKustomizeArgs

    CommonAnnotations Dictionary<string, string>
    List of additional annotations to add to rendered manifests.
    CommonLabels Dictionary<string, string>
    List of additional labels to add to rendered manifests.
    Images List<string>
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    CommonAnnotations map[string]string
    List of additional annotations to add to rendered manifests.
    CommonLabels map[string]string
    List of additional labels to add to rendered manifests.
    Images []string
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches []ApplicationSetSpecGeneratorMatrixTemplateSpecSourceKustomizePatch
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String,String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String,String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<ApplicationSetSpecGeneratorMatrixTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.
    commonAnnotations {[key: string]: string}
    List of additional annotations to add to rendered manifests.
    commonLabels {[key: string]: string}
    List of additional labels to add to rendered manifests.
    images string[]
    List of Kustomize image override specifications.
    namePrefix string
    Prefix appended to resources for Kustomize apps.
    nameSuffix string
    Suffix appended to resources for Kustomize apps.
    patches ApplicationSetSpecGeneratorMatrixTemplateSpecSourceKustomizePatch[]
    A list of Kustomize patches to apply.
    version string
    Version of Kustomize to use for rendering manifests.
    common_annotations Mapping[str, str]
    List of additional annotations to add to rendered manifests.
    common_labels Mapping[str, str]
    List of additional labels to add to rendered manifests.
    images Sequence[str]
    List of Kustomize image override specifications.
    name_prefix str
    Prefix appended to resources for Kustomize apps.
    name_suffix str
    Suffix appended to resources for Kustomize apps.
    patches Sequence[ApplicationSetSpecGeneratorMatrixTemplateSpecSourceKustomizePatch]
    A list of Kustomize patches to apply.
    version str
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<Property Map>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.

    ApplicationSetSpecGeneratorMatrixTemplateSpecSourceKustomizePatch, ApplicationSetSpecGeneratorMatrixTemplateSpecSourceKustomizePatchArgs

    Target Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options Dictionary<string, bool>
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    Target ApplicationSetSpecGeneratorMatrixTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options map[string]bool
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Map<String,Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options {[key: string]: boolean}
    Additional options.
    patch string
    Inline Kustomize patch to apply.
    path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMatrixTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Mapping[str, bool]
    Additional options.
    patch str
    Inline Kustomize patch to apply.
    path str
    Path to a file containing the patch to apply.
    target Property Map
    Target(s) to patch
    options Map<Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.

    ApplicationSetSpecGeneratorMatrixTemplateSpecSourceKustomizePatchTarget, ApplicationSetSpecGeneratorMatrixTemplateSpecSourceKustomizePatchTargetArgs

    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.
    annotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    group string
    The Kubernetes resource Group to match for.
    kind string
    The Kubernetes resource Kind to match for.
    labelSelector string
    Label selector to use when matching the Kubernetes resource.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    version string
    The Kubernetes resource Version to match for.
    annotation_selector str
    Annotation selector to use when matching the Kubernetes resource.
    group str
    The Kubernetes resource Group to match for.
    kind str
    The Kubernetes resource Kind to match for.
    label_selector str
    Label selector to use when matching the Kubernetes resource.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    version str
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.

    ApplicationSetSpecGeneratorMatrixTemplateSpecSourcePlugin, ApplicationSetSpecGeneratorMatrixTemplateSpecSourcePluginArgs

    Envs List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    Envs []ApplicationSetSpecGeneratorMatrixTemplateSpecSourcePluginEnv
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<ApplicationSetSpecGeneratorMatrixTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs ApplicationSetSpecGeneratorMatrixTemplateSpecSourcePluginEnv[]
    Environment variables passed to the plugin.
    name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs Sequence[ApplicationSetSpecGeneratorMatrixTemplateSpecSourcePluginEnv]
    Environment variables passed to the plugin.
    name str
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<Property Map>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.

    ApplicationSetSpecGeneratorMatrixTemplateSpecSourcePluginEnv, ApplicationSetSpecGeneratorMatrixTemplateSpecSourcePluginEnvArgs

    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.
    name string
    Name of the environment variable.
    value string
    Value of the environment variable.
    name str
    Name of the environment variable.
    value str
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.

    ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicy, ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicyArgs

    Automated Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions List<string>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    Automated ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions []string
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions string[]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managed_namespace_metadata ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    sync_options Sequence[str]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated Property Map
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata Property Map
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry Property Map
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.

    ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicyAutomated, ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicyAutomatedArgs

    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty boolean
    Allows apps have zero live resources.
    prune boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allow_empty bool
    Allows apps have zero live resources.
    prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    self_heal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.

    ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicyManagedNamespaceMetadata, ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicyManagedNamespaceMetadataArgs

    Annotations Dictionary<string, string>
    Annotations to apply to the namespace.
    Labels Dictionary<string, string>
    Labels to apply to the namespace.
    Annotations map[string]string
    Annotations to apply to the namespace.
    Labels map[string]string
    Labels to apply to the namespace.
    annotations Map<String,String>
    Annotations to apply to the namespace.
    labels Map<String,String>
    Labels to apply to the namespace.
    annotations {[key: string]: string}
    Annotations to apply to the namespace.
    labels {[key: string]: string}
    Labels to apply to the namespace.
    annotations Mapping[str, str]
    Annotations to apply to the namespace.
    labels Mapping[str, str]
    Labels to apply to the namespace.
    annotations Map<String>
    Annotations to apply to the namespace.
    labels Map<String>
    Labels to apply to the namespace.

    ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicyRetry, ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicyRetryArgs

    Backoff Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    Backoff ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit str
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff Property Map
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.

    ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicyRetryBackoff, ApplicationSetSpecGeneratorMatrixTemplateSpecSyncPolicyRetryBackoffArgs

    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor string
    Factor to multiply the base duration after each failed retry.
    maxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration str
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor str
    Factor to multiply the base duration after each failed retry.
    max_duration str
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.

    ApplicationSetSpecGeneratorMerge, ApplicationSetSpecGeneratorMergeArgs

    Generators List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGenerator>
    Child generator. Generators are responsible for generating parameters, which are then combined by the parent merge generator.
    MergeKeys List<string>
    Keys to merge into resulting parameter set.
    Template Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeTemplate
    Generator template. Used to override the values of the spec-level template.
    Generators []ApplicationSetSpecGeneratorMergeGenerator
    Child generator. Generators are responsible for generating parameters, which are then combined by the parent merge generator.
    MergeKeys []string
    Keys to merge into resulting parameter set.
    Template ApplicationSetSpecGeneratorMergeTemplate
    Generator template. Used to override the values of the spec-level template.
    generators List<ApplicationSetSpecGeneratorMergeGenerator>
    Child generator. Generators are responsible for generating parameters, which are then combined by the parent merge generator.
    mergeKeys List<String>
    Keys to merge into resulting parameter set.
    template ApplicationSetSpecGeneratorMergeTemplate
    Generator template. Used to override the values of the spec-level template.
    generators ApplicationSetSpecGeneratorMergeGenerator[]
    Child generator. Generators are responsible for generating parameters, which are then combined by the parent merge generator.
    mergeKeys string[]
    Keys to merge into resulting parameter set.
    template ApplicationSetSpecGeneratorMergeTemplate
    Generator template. Used to override the values of the spec-level template.
    generators Sequence[ApplicationSetSpecGeneratorMergeGenerator]
    Child generator. Generators are responsible for generating parameters, which are then combined by the parent merge generator.
    merge_keys Sequence[str]
    Keys to merge into resulting parameter set.
    template ApplicationSetSpecGeneratorMergeTemplate
    Generator template. Used to override the values of the spec-level template.
    generators List<Property Map>
    Child generator. Generators are responsible for generating parameters, which are then combined by the parent merge generator.
    mergeKeys List<String>
    Keys to merge into resulting parameter set.
    template Property Map
    Generator template. Used to override the values of the spec-level template.

    ApplicationSetSpecGeneratorMergeGenerator, ApplicationSetSpecGeneratorMergeGeneratorArgs

    ClusterDecisionResources List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResource>
    The cluster decision resource generates a list of Argo CD clusters.
    Clusters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorCluster>
    The cluster generator produces parameters based on the list of items found within the cluster secret.
    Gits List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGit>
    Git generators generates parameters using either the directory structure of a specified Git repository (directory generator), or, using the contents of JSON/YAML files found within a specified repository (file generator).
    Lists List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorList>
    List generators generate parameters based on an arbitrary list of key/value pairs (as long as the values are string values).
    Matrices List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrix>
    Matrix generators combine the parameters generated by two child generators, iterating through every combination of each generator's generated parameters. Take note of the restrictions regarding their usage - particularly regarding nesting matrix generators.
    Merges List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMerge>
    Merge generators combine parameters produced by the base (first) generator with matching parameter sets produced by subsequent generators. Take note of the restrictions regarding their usage - particularly regarding nesting merge generators.
    PullRequests List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorPullRequest>
    Pull Request generators uses the API of an SCMaaS provider to automatically discover open pull requests within a repository.
    ScmProviders List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorScmProvider>
    SCM Provider generators uses the API of an SCMaaS provider to automatically discover repositories within an organization.
    Selector Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorSelector
    The Selector allows to post-filter based on generated values using the kubernetes common labelSelector format.
    ClusterDecisionResources []ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResource
    The cluster decision resource generates a list of Argo CD clusters.
    Clusters []ApplicationSetSpecGeneratorMergeGeneratorCluster
    The cluster generator produces parameters based on the list of items found within the cluster secret.
    Gits []ApplicationSetSpecGeneratorMergeGeneratorGit
    Git generators generates parameters using either the directory structure of a specified Git repository (directory generator), or, using the contents of JSON/YAML files found within a specified repository (file generator).
    Lists []ApplicationSetSpecGeneratorMergeGeneratorList
    List generators generate parameters based on an arbitrary list of key/value pairs (as long as the values are string values).
    Matrices []ApplicationSetSpecGeneratorMergeGeneratorMatrix
    Matrix generators combine the parameters generated by two child generators, iterating through every combination of each generator's generated parameters. Take note of the restrictions regarding their usage - particularly regarding nesting matrix generators.
    Merges []ApplicationSetSpecGeneratorMergeGeneratorMerge
    Merge generators combine parameters produced by the base (first) generator with matching parameter sets produced by subsequent generators. Take note of the restrictions regarding their usage - particularly regarding nesting merge generators.
    PullRequests []ApplicationSetSpecGeneratorMergeGeneratorPullRequest
    Pull Request generators uses the API of an SCMaaS provider to automatically discover open pull requests within a repository.
    ScmProviders []ApplicationSetSpecGeneratorMergeGeneratorScmProvider
    SCM Provider generators uses the API of an SCMaaS provider to automatically discover repositories within an organization.
    Selector ApplicationSetSpecGeneratorMergeGeneratorSelector
    The Selector allows to post-filter based on generated values using the kubernetes common labelSelector format.
    clusterDecisionResources List<ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResource>
    The cluster decision resource generates a list of Argo CD clusters.
    clusters List<ApplicationSetSpecGeneratorMergeGeneratorCluster>
    The cluster generator produces parameters based on the list of items found within the cluster secret.
    gits List<ApplicationSetSpecGeneratorMergeGeneratorGit>
    Git generators generates parameters using either the directory structure of a specified Git repository (directory generator), or, using the contents of JSON/YAML files found within a specified repository (file generator).
    lists List<ApplicationSetSpecGeneratorMergeGeneratorList>
    List generators generate parameters based on an arbitrary list of key/value pairs (as long as the values are string values).
    matrices List<ApplicationSetSpecGeneratorMergeGeneratorMatrix>
    Matrix generators combine the parameters generated by two child generators, iterating through every combination of each generator's generated parameters. Take note of the restrictions regarding their usage - particularly regarding nesting matrix generators.
    merges List<ApplicationSetSpecGeneratorMergeGeneratorMerge>
    Merge generators combine parameters produced by the base (first) generator with matching parameter sets produced by subsequent generators. Take note of the restrictions regarding their usage - particularly regarding nesting merge generators.
    pullRequests List<ApplicationSetSpecGeneratorMergeGeneratorPullRequest>
    Pull Request generators uses the API of an SCMaaS provider to automatically discover open pull requests within a repository.
    scmProviders List<ApplicationSetSpecGeneratorMergeGeneratorScmProvider>
    SCM Provider generators uses the API of an SCMaaS provider to automatically discover repositories within an organization.
    selector ApplicationSetSpecGeneratorMergeGeneratorSelector
    The Selector allows to post-filter based on generated values using the kubernetes common labelSelector format.
    clusterDecisionResources ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResource[]
    The cluster decision resource generates a list of Argo CD clusters.
    clusters ApplicationSetSpecGeneratorMergeGeneratorCluster[]
    The cluster generator produces parameters based on the list of items found within the cluster secret.
    gits ApplicationSetSpecGeneratorMergeGeneratorGit[]
    Git generators generates parameters using either the directory structure of a specified Git repository (directory generator), or, using the contents of JSON/YAML files found within a specified repository (file generator).
    lists ApplicationSetSpecGeneratorMergeGeneratorList[]
    List generators generate parameters based on an arbitrary list of key/value pairs (as long as the values are string values).
    matrices ApplicationSetSpecGeneratorMergeGeneratorMatrix[]
    Matrix generators combine the parameters generated by two child generators, iterating through every combination of each generator's generated parameters. Take note of the restrictions regarding their usage - particularly regarding nesting matrix generators.
    merges ApplicationSetSpecGeneratorMergeGeneratorMerge[]
    Merge generators combine parameters produced by the base (first) generator with matching parameter sets produced by subsequent generators. Take note of the restrictions regarding their usage - particularly regarding nesting merge generators.
    pullRequests ApplicationSetSpecGeneratorMergeGeneratorPullRequest[]
    Pull Request generators uses the API of an SCMaaS provider to automatically discover open pull requests within a repository.
    scmProviders ApplicationSetSpecGeneratorMergeGeneratorScmProvider[]
    SCM Provider generators uses the API of an SCMaaS provider to automatically discover repositories within an organization.
    selector ApplicationSetSpecGeneratorMergeGeneratorSelector
    The Selector allows to post-filter based on generated values using the kubernetes common labelSelector format.
    cluster_decision_resources Sequence[ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResource]
    The cluster decision resource generates a list of Argo CD clusters.
    clusters Sequence[ApplicationSetSpecGeneratorMergeGeneratorCluster]
    The cluster generator produces parameters based on the list of items found within the cluster secret.
    gits Sequence[ApplicationSetSpecGeneratorMergeGeneratorGit]
    Git generators generates parameters using either the directory structure of a specified Git repository (directory generator), or, using the contents of JSON/YAML files found within a specified repository (file generator).
    lists Sequence[ApplicationSetSpecGeneratorMergeGeneratorList]
    List generators generate parameters based on an arbitrary list of key/value pairs (as long as the values are string values).
    matrices Sequence[ApplicationSetSpecGeneratorMergeGeneratorMatrix]
    Matrix generators combine the parameters generated by two child generators, iterating through every combination of each generator's generated parameters. Take note of the restrictions regarding their usage - particularly regarding nesting matrix generators.
    merges Sequence[ApplicationSetSpecGeneratorMergeGeneratorMerge]
    Merge generators combine parameters produced by the base (first) generator with matching parameter sets produced by subsequent generators. Take note of the restrictions regarding their usage - particularly regarding nesting merge generators.
    pull_requests Sequence[ApplicationSetSpecGeneratorMergeGeneratorPullRequest]
    Pull Request generators uses the API of an SCMaaS provider to automatically discover open pull requests within a repository.
    scm_providers Sequence[ApplicationSetSpecGeneratorMergeGeneratorScmProvider]
    SCM Provider generators uses the API of an SCMaaS provider to automatically discover repositories within an organization.
    selector ApplicationSetSpecGeneratorMergeGeneratorSelector
    The Selector allows to post-filter based on generated values using the kubernetes common labelSelector format.
    clusterDecisionResources List<Property Map>
    The cluster decision resource generates a list of Argo CD clusters.
    clusters List<Property Map>
    The cluster generator produces parameters based on the list of items found within the cluster secret.
    gits List<Property Map>
    Git generators generates parameters using either the directory structure of a specified Git repository (directory generator), or, using the contents of JSON/YAML files found within a specified repository (file generator).
    lists List<Property Map>
    List generators generate parameters based on an arbitrary list of key/value pairs (as long as the values are string values).
    matrices List<Property Map>
    Matrix generators combine the parameters generated by two child generators, iterating through every combination of each generator's generated parameters. Take note of the restrictions regarding their usage - particularly regarding nesting matrix generators.
    merges List<Property Map>
    Merge generators combine parameters produced by the base (first) generator with matching parameter sets produced by subsequent generators. Take note of the restrictions regarding their usage - particularly regarding nesting merge generators.
    pullRequests List<Property Map>
    Pull Request generators uses the API of an SCMaaS provider to automatically discover open pull requests within a repository.
    scmProviders List<Property Map>
    SCM Provider generators uses the API of an SCMaaS provider to automatically discover repositories within an organization.
    selector Property Map
    The Selector allows to post-filter based on generated values using the kubernetes common labelSelector format.

    ApplicationSetSpecGeneratorMergeGeneratorCluster, ApplicationSetSpecGeneratorMergeGeneratorClusterArgs

    Enabled bool
    Boolean value defaulting to true to indicate that this block has been added thereby allowing all other attributes to be optional.
    Selector Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterSelector
    Label selector used to narrow the scope of targeted clusters.
    Template Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplate
    Generator template. Used to override the values of the spec-level template.
    Values Dictionary<string, string>
    Arbitrary string key-value pairs to pass to the template via the values field of the cluster generator.
    Enabled bool
    Boolean value defaulting to true to indicate that this block has been added thereby allowing all other attributes to be optional.
    Selector ApplicationSetSpecGeneratorMergeGeneratorClusterSelector
    Label selector used to narrow the scope of targeted clusters.
    Template ApplicationSetSpecGeneratorMergeGeneratorClusterTemplate
    Generator template. Used to override the values of the spec-level template.
    Values map[string]string
    Arbitrary string key-value pairs to pass to the template via the values field of the cluster generator.
    enabled Boolean
    Boolean value defaulting to true to indicate that this block has been added thereby allowing all other attributes to be optional.
    selector ApplicationSetSpecGeneratorMergeGeneratorClusterSelector
    Label selector used to narrow the scope of targeted clusters.
    template ApplicationSetSpecGeneratorMergeGeneratorClusterTemplate
    Generator template. Used to override the values of the spec-level template.
    values Map<String,String>
    Arbitrary string key-value pairs to pass to the template via the values field of the cluster generator.
    enabled boolean
    Boolean value defaulting to true to indicate that this block has been added thereby allowing all other attributes to be optional.
    selector ApplicationSetSpecGeneratorMergeGeneratorClusterSelector
    Label selector used to narrow the scope of targeted clusters.
    template ApplicationSetSpecGeneratorMergeGeneratorClusterTemplate
    Generator template. Used to override the values of the spec-level template.
    values {[key: string]: string}
    Arbitrary string key-value pairs to pass to the template via the values field of the cluster generator.
    enabled bool
    Boolean value defaulting to true to indicate that this block has been added thereby allowing all other attributes to be optional.
    selector ApplicationSetSpecGeneratorMergeGeneratorClusterSelector
    Label selector used to narrow the scope of targeted clusters.
    template ApplicationSetSpecGeneratorMergeGeneratorClusterTemplate
    Generator template. Used to override the values of the spec-level template.
    values Mapping[str, str]
    Arbitrary string key-value pairs to pass to the template via the values field of the cluster generator.
    enabled Boolean
    Boolean value defaulting to true to indicate that this block has been added thereby allowing all other attributes to be optional.
    selector Property Map
    Label selector used to narrow the scope of targeted clusters.
    template Property Map
    Generator template. Used to override the values of the spec-level template.
    values Map<String>
    Arbitrary string key-value pairs to pass to the template via the values field of the cluster generator.

    ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResource, ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceArgs

    ConfigMapRef string
    ConfigMap with the duck type definitions needed to retrieve the data this includes apiVersion(group/version), kind, matchKey and validation settings.
    LabelSelector Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceLabelSelector
    Label selector used to find the resource defined in the config_map_ref. Alternative to name.
    Name string
    Resource name of the kind, group and version, defined in the config_map_ref.
    RequeueAfterSeconds string
    How often to check for changes (in seconds). Default: 3min.
    Template Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplate
    Generator template. Used to override the values of the spec-level template.
    Values Dictionary<string, string>
    Arbitrary string key-value pairs which are passed directly as parameters to the template.
    ConfigMapRef string
    ConfigMap with the duck type definitions needed to retrieve the data this includes apiVersion(group/version), kind, matchKey and validation settings.
    LabelSelector ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceLabelSelector
    Label selector used to find the resource defined in the config_map_ref. Alternative to name.
    Name string
    Resource name of the kind, group and version, defined in the config_map_ref.
    RequeueAfterSeconds string
    How often to check for changes (in seconds). Default: 3min.
    Template ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplate
    Generator template. Used to override the values of the spec-level template.
    Values map[string]string
    Arbitrary string key-value pairs which are passed directly as parameters to the template.
    configMapRef String
    ConfigMap with the duck type definitions needed to retrieve the data this includes apiVersion(group/version), kind, matchKey and validation settings.
    labelSelector ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceLabelSelector
    Label selector used to find the resource defined in the config_map_ref. Alternative to name.
    name String
    Resource name of the kind, group and version, defined in the config_map_ref.
    requeueAfterSeconds String
    How often to check for changes (in seconds). Default: 3min.
    template ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplate
    Generator template. Used to override the values of the spec-level template.
    values Map<String,String>
    Arbitrary string key-value pairs which are passed directly as parameters to the template.
    configMapRef string
    ConfigMap with the duck type definitions needed to retrieve the data this includes apiVersion(group/version), kind, matchKey and validation settings.
    labelSelector ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceLabelSelector
    Label selector used to find the resource defined in the config_map_ref. Alternative to name.
    name string
    Resource name of the kind, group and version, defined in the config_map_ref.
    requeueAfterSeconds string
    How often to check for changes (in seconds). Default: 3min.
    template ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplate
    Generator template. Used to override the values of the spec-level template.
    values {[key: string]: string}
    Arbitrary string key-value pairs which are passed directly as parameters to the template.
    config_map_ref str
    ConfigMap with the duck type definitions needed to retrieve the data this includes apiVersion(group/version), kind, matchKey and validation settings.
    label_selector ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceLabelSelector
    Label selector used to find the resource defined in the config_map_ref. Alternative to name.
    name str
    Resource name of the kind, group and version, defined in the config_map_ref.
    requeue_after_seconds str
    How often to check for changes (in seconds). Default: 3min.
    template ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplate
    Generator template. Used to override the values of the spec-level template.
    values Mapping[str, str]
    Arbitrary string key-value pairs which are passed directly as parameters to the template.
    configMapRef String
    ConfigMap with the duck type definitions needed to retrieve the data this includes apiVersion(group/version), kind, matchKey and validation settings.
    labelSelector Property Map
    Label selector used to find the resource defined in the config_map_ref. Alternative to name.
    name String
    Resource name of the kind, group and version, defined in the config_map_ref.
    requeueAfterSeconds String
    How often to check for changes (in seconds). Default: 3min.
    template Property Map
    Generator template. Used to override the values of the spec-level template.
    values Map<String>
    Arbitrary string key-value pairs which are passed directly as parameters to the template.

    ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceLabelSelector, ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceLabelSelectorArgs

    MatchExpressions List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceLabelSelectorMatchExpression>
    A list of label selector requirements. The requirements are ANDed.
    MatchLabels Dictionary<string, string>
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    MatchExpressions []ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceLabelSelectorMatchExpression
    A list of label selector requirements. The requirements are ANDed.
    MatchLabels map[string]string
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    matchExpressions List<ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceLabelSelectorMatchExpression>
    A list of label selector requirements. The requirements are ANDed.
    matchLabels Map<String,String>
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    matchExpressions ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceLabelSelectorMatchExpression[]
    A list of label selector requirements. The requirements are ANDed.
    matchLabels {[key: string]: string}
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    match_expressions Sequence[ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceLabelSelectorMatchExpression]
    A list of label selector requirements. The requirements are ANDed.
    match_labels Mapping[str, str]
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    matchExpressions List<Property Map>
    A list of label selector requirements. The requirements are ANDed.
    matchLabels Map<String>
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.

    ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceLabelSelectorMatchExpression, ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceLabelSelectorMatchExpressionArgs

    Key string
    The label key that the selector applies to.
    Operator string
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    Values List<string>
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    Key string
    The label key that the selector applies to.
    Operator string
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    Values []string
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key String
    The label key that the selector applies to.
    operator String
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values List<String>
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key string
    The label key that the selector applies to.
    operator string
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values string[]
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key str
    The label key that the selector applies to.
    operator str
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values Sequence[str]
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key String
    The label key that the selector applies to.
    operator String
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values List<String>
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.

    ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplate, ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateArgs

    metadata Property Map
    Kubernetes object metadata for templated Application.
    spec Property Map
    The application specification.

    ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateMetadata, ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateMetadataArgs

    Annotations Dictionary<string, string>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers List<string>
    List of finalizers to apply to the resulting Application.
    Labels Dictionary<string, string>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    Annotations map[string]string
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers []string
    List of finalizers to apply to the resulting Application.
    Labels map[string]string
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    annotations Map<String,String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String,String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application
    annotations {[key: string]: string}
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers string[]
    List of finalizers to apply to the resulting Application.
    labels {[key: string]: string}
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name string
    Name of the resulting Application
    namespace string
    Namespace of the resulting Application
    annotations Mapping[str, str]
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers Sequence[str]
    List of finalizers to apply to the resulting Application.
    labels Mapping[str, str]
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name str
    Name of the resulting Application
    namespace str
    Namespace of the resulting Application
    annotations Map<String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application

    ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpec, ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecArgs

    Destination Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSource>
    Location of the application's manifests or chart.
    SyncPolicy Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    Destination ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences []ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecIgnoreDifference
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos []ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecInfo
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources []ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSource
    Location of the application's manifests or chart.
    SyncPolicy ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Integer
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSource>
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecIgnoreDifference[]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecInfo[]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project string
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSource[]
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignore_differences Sequence[ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecIgnoreDifference]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos Sequence[ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecInfo]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project str
    The project the application belongs to. Defaults to default.
    revision_history_limit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources Sequence[ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSource]
    Location of the application's manifests or chart.
    sync_policy ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination Property Map
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<Property Map>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<Property Map>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<Property Map>
    Location of the application's manifests or chart.
    syncPolicy Property Map
    Controls when and how a sync will be performed.

    ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecDestination, ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecDestinationArgs

    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name string
    Name of the target cluster. Can be used instead of server.
    namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name str
    Name of the target cluster. Can be used instead of server.
    namespace str
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server str
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.

    ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecIgnoreDifference, ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecIgnoreDifferenceArgs

    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions List<string>
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers List<string>
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers List<string>
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions []string
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers []string
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers []string
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    group string
    The Kubernetes resource Group to match for.
    jqPathExpressions string[]
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers string[]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind string
    The Kubernetes resource Kind to match for.
    managedFieldsManagers string[]
    List of external controller manager names whose changes to fields should be ignored.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    group str
    The Kubernetes resource Group to match for.
    jq_path_expressions Sequence[str]
    List of JQ path expression strings targeting the field(s) to ignore.
    json_pointers Sequence[str]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind str
    The Kubernetes resource Kind to match for.
    managed_fields_managers Sequence[str]
    List of external controller manager names whose changes to fields should be ignored.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.

    ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecInfo, ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecInfoArgs

    Name string
    Name of the information.
    Value string
    Value of the information.
    Name string
    Name of the information.
    Value string
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.
    name string
    Name of the information.
    value string
    Value of the information.
    name str
    Name of the information.
    value str
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.

    ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSource, ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceArgs

    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelm
    Helm specific options.
    Kustomize Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelm
    Helm specific options.
    Kustomize ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomize
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomize
    Kustomize specific options.
    path string
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart str
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomize
    Kustomize specific options.
    path str
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref str
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repo_url str
    URL to the repository (Git or Helm) that contains the application manifests.
    target_revision str
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory Property Map
    Path/directory specific options.
    helm Property Map
    Helm specific options.
    kustomize Property Map
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin Property Map
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.

    ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectory, ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryArgs

    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.
    exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse boolean
    Whether to scan a directory recursively for manifests.
    exclude str
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include str
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet Property Map
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.

    ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnet, ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetArgs

    extVars List<Property Map>
    List of Jsonnet External Variables.
    libs List<String>
    Additional library search dirs.
    tlas List<Property Map>
    List of Jsonnet Top-level Arguments

    ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetExtVar, ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetExtVarArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetTla, ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetTlaArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelm, ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmArgs

    FileParameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles List<string>
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    FileParameters []ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters []ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameter
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles []string
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter[]
    File parameters for the helm template.
    ignoreMissingValueFiles boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameter[]
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName string
    Helm release name. If omitted it will use the application name.
    skipCrds boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles string[]
    List of Helm value files to use when generating a template.
    values string
    Helm values to be passed to 'helm template', typically defined as a block.
    version string
    The Helm version to use for templating. Accepts either v2 or v3
    file_parameters Sequence[ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter]
    File parameters for the helm template.
    ignore_missing_value_files bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters Sequence[ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameter]
    Helm parameters which are passed to the helm template command upon manifest generation.
    pass_credentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    release_name str
    Helm release name. If omitted it will use the application name.
    skip_crds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    value_files Sequence[str]
    List of Helm value files to use when generating a template.
    values str
    Helm values to be passed to 'helm template', typically defined as a block.
    version str
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<Property Map>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<Property Map>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3

    ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter, ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameterArgs

    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.
    name string
    Name of the Helm parameter.
    path string
    Path to the file containing the values for the Helm parameter.
    name str
    Name of the Helm parameter.
    path str
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.

    ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameter, ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameterArgs

    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.
    forceString boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name string
    Name of the Helm parameter.
    value string
    Value of the Helm parameter.
    force_string bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name str
    Name of the Helm parameter.
    value str
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.

    ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomize, ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizeArgs

    CommonAnnotations Dictionary<string, string>
    List of additional annotations to add to rendered manifests.
    CommonLabels Dictionary<string, string>
    List of additional labels to add to rendered manifests.
    Images List<string>
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    CommonAnnotations map[string]string
    List of additional annotations to add to rendered manifests.
    CommonLabels map[string]string
    List of additional labels to add to rendered manifests.
    Images []string
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches []ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatch
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String,String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String,String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.
    commonAnnotations {[key: string]: string}
    List of additional annotations to add to rendered manifests.
    commonLabels {[key: string]: string}
    List of additional labels to add to rendered manifests.
    images string[]
    List of Kustomize image override specifications.
    namePrefix string
    Prefix appended to resources for Kustomize apps.
    nameSuffix string
    Suffix appended to resources for Kustomize apps.
    patches ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatch[]
    A list of Kustomize patches to apply.
    version string
    Version of Kustomize to use for rendering manifests.
    common_annotations Mapping[str, str]
    List of additional annotations to add to rendered manifests.
    common_labels Mapping[str, str]
    List of additional labels to add to rendered manifests.
    images Sequence[str]
    List of Kustomize image override specifications.
    name_prefix str
    Prefix appended to resources for Kustomize apps.
    name_suffix str
    Suffix appended to resources for Kustomize apps.
    patches Sequence[ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatch]
    A list of Kustomize patches to apply.
    version str
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<Property Map>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.

    ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatch, ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchArgs

    Target Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options Dictionary<string, bool>
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    Target ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options map[string]bool
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Map<String,Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options {[key: string]: boolean}
    Additional options.
    patch string
    Inline Kustomize patch to apply.
    path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Mapping[str, bool]
    Additional options.
    patch str
    Inline Kustomize patch to apply.
    path str
    Path to a file containing the patch to apply.
    target Property Map
    Target(s) to patch
    options Map<Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.

    ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTarget, ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTargetArgs

    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.
    annotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    group string
    The Kubernetes resource Group to match for.
    kind string
    The Kubernetes resource Kind to match for.
    labelSelector string
    Label selector to use when matching the Kubernetes resource.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    version string
    The Kubernetes resource Version to match for.
    annotation_selector str
    Annotation selector to use when matching the Kubernetes resource.
    group str
    The Kubernetes resource Group to match for.
    kind str
    The Kubernetes resource Kind to match for.
    label_selector str
    Label selector to use when matching the Kubernetes resource.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    version str
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.

    ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourcePlugin, ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourcePluginArgs

    Envs List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    Envs []ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnv
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnv[]
    Environment variables passed to the plugin.
    name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs Sequence[ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnv]
    Environment variables passed to the plugin.
    name str
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<Property Map>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.

    ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnv, ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnvArgs

    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.
    name string
    Name of the environment variable.
    value string
    Value of the environment variable.
    name str
    Name of the environment variable.
    value str
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.

    ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicy, ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyArgs

    Automated Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions List<string>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    Automated ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions []string
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions string[]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managed_namespace_metadata ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    sync_options Sequence[str]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated Property Map
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata Property Map
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry Property Map
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.

    ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomated, ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomatedArgs

    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty boolean
    Allows apps have zero live resources.
    prune boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allow_empty bool
    Allows apps have zero live resources.
    prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    self_heal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.

    ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadata, ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadataArgs

    Annotations Dictionary<string, string>
    Annotations to apply to the namespace.
    Labels Dictionary<string, string>
    Labels to apply to the namespace.
    Annotations map[string]string
    Annotations to apply to the namespace.
    Labels map[string]string
    Labels to apply to the namespace.
    annotations Map<String,String>
    Annotations to apply to the namespace.
    labels Map<String,String>
    Labels to apply to the namespace.
    annotations {[key: string]: string}
    Annotations to apply to the namespace.
    labels {[key: string]: string}
    Labels to apply to the namespace.
    annotations Mapping[str, str]
    Annotations to apply to the namespace.
    labels Mapping[str, str]
    Labels to apply to the namespace.
    annotations Map<String>
    Annotations to apply to the namespace.
    labels Map<String>
    Labels to apply to the namespace.

    ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetry, ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryArgs

    Backoff Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    Backoff ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit str
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff Property Map
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.

    ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoff, ApplicationSetSpecGeneratorMergeGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoffArgs

    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor string
    Factor to multiply the base duration after each failed retry.
    maxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration str
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor str
    Factor to multiply the base duration after each failed retry.
    max_duration str
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.

    ApplicationSetSpecGeneratorMergeGeneratorClusterSelector, ApplicationSetSpecGeneratorMergeGeneratorClusterSelectorArgs

    MatchExpressions List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterSelectorMatchExpression>
    A list of label selector requirements. The requirements are ANDed.
    MatchLabels Dictionary<string, string>
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    MatchExpressions []ApplicationSetSpecGeneratorMergeGeneratorClusterSelectorMatchExpression
    A list of label selector requirements. The requirements are ANDed.
    MatchLabels map[string]string
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    matchExpressions List<ApplicationSetSpecGeneratorMergeGeneratorClusterSelectorMatchExpression>
    A list of label selector requirements. The requirements are ANDed.
    matchLabels Map<String,String>
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    matchExpressions ApplicationSetSpecGeneratorMergeGeneratorClusterSelectorMatchExpression[]
    A list of label selector requirements. The requirements are ANDed.
    matchLabels {[key: string]: string}
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    match_expressions Sequence[ApplicationSetSpecGeneratorMergeGeneratorClusterSelectorMatchExpression]
    A list of label selector requirements. The requirements are ANDed.
    match_labels Mapping[str, str]
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    matchExpressions List<Property Map>
    A list of label selector requirements. The requirements are ANDed.
    matchLabels Map<String>
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.

    ApplicationSetSpecGeneratorMergeGeneratorClusterSelectorMatchExpression, ApplicationSetSpecGeneratorMergeGeneratorClusterSelectorMatchExpressionArgs

    Key string
    The label key that the selector applies to.
    Operator string
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    Values List<string>
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    Key string
    The label key that the selector applies to.
    Operator string
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    Values []string
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key String
    The label key that the selector applies to.
    operator String
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values List<String>
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key string
    The label key that the selector applies to.
    operator string
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values string[]
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key str
    The label key that the selector applies to.
    operator str
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values Sequence[str]
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key String
    The label key that the selector applies to.
    operator String
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values List<String>
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.

    ApplicationSetSpecGeneratorMergeGeneratorClusterTemplate, ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateArgs

    metadata Property Map
    Kubernetes object metadata for templated Application.
    spec Property Map
    The application specification.

    ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateMetadata, ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateMetadataArgs

    Annotations Dictionary<string, string>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers List<string>
    List of finalizers to apply to the resulting Application.
    Labels Dictionary<string, string>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    Annotations map[string]string
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers []string
    List of finalizers to apply to the resulting Application.
    Labels map[string]string
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    annotations Map<String,String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String,String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application
    annotations {[key: string]: string}
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers string[]
    List of finalizers to apply to the resulting Application.
    labels {[key: string]: string}
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name string
    Name of the resulting Application
    namespace string
    Namespace of the resulting Application
    annotations Mapping[str, str]
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers Sequence[str]
    List of finalizers to apply to the resulting Application.
    labels Mapping[str, str]
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name str
    Name of the resulting Application
    namespace str
    Namespace of the resulting Application
    annotations Map<String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application

    ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpec, ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecArgs

    Destination Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSource>
    Location of the application's manifests or chart.
    SyncPolicy Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    Destination ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences []ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecIgnoreDifference
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos []ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecInfo
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources []ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSource
    Location of the application's manifests or chart.
    SyncPolicy ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Integer
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSource>
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecIgnoreDifference[]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecInfo[]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project string
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSource[]
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignore_differences Sequence[ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecIgnoreDifference]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos Sequence[ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecInfo]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project str
    The project the application belongs to. Defaults to default.
    revision_history_limit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources Sequence[ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSource]
    Location of the application's manifests or chart.
    sync_policy ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination Property Map
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<Property Map>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<Property Map>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<Property Map>
    Location of the application's manifests or chart.
    syncPolicy Property Map
    Controls when and how a sync will be performed.

    ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecDestination, ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecDestinationArgs

    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name string
    Name of the target cluster. Can be used instead of server.
    namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name str
    Name of the target cluster. Can be used instead of server.
    namespace str
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server str
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.

    ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecIgnoreDifference, ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecIgnoreDifferenceArgs

    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions List<string>
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers List<string>
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers List<string>
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions []string
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers []string
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers []string
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    group string
    The Kubernetes resource Group to match for.
    jqPathExpressions string[]
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers string[]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind string
    The Kubernetes resource Kind to match for.
    managedFieldsManagers string[]
    List of external controller manager names whose changes to fields should be ignored.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    group str
    The Kubernetes resource Group to match for.
    jq_path_expressions Sequence[str]
    List of JQ path expression strings targeting the field(s) to ignore.
    json_pointers Sequence[str]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind str
    The Kubernetes resource Kind to match for.
    managed_fields_managers Sequence[str]
    List of external controller manager names whose changes to fields should be ignored.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.

    ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecInfo, ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecInfoArgs

    Name string
    Name of the information.
    Value string
    Value of the information.
    Name string
    Name of the information.
    Value string
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.
    name string
    Name of the information.
    value string
    Value of the information.
    name str
    Name of the information.
    value str
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.

    ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSource, ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceArgs

    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceHelm
    Helm specific options.
    Kustomize Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceHelm
    Helm specific options.
    Kustomize ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceKustomize
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceKustomize
    Kustomize specific options.
    path string
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart str
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceKustomize
    Kustomize specific options.
    path str
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref str
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repo_url str
    URL to the repository (Git or Helm) that contains the application manifests.
    target_revision str
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory Property Map
    Path/directory specific options.
    helm Property Map
    Helm specific options.
    kustomize Property Map
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin Property Map
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.

    ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceDirectory, ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryArgs

    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.
    exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse boolean
    Whether to scan a directory recursively for manifests.
    exclude str
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include str
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet Property Map
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.

    ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnet, ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnetArgs

    extVars List<Property Map>
    List of Jsonnet External Variables.
    libs List<String>
    Additional library search dirs.
    tlas List<Property Map>
    List of Jsonnet Top-level Arguments

    ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnetExtVar, ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnetExtVarArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnetTla, ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceDirectoryJsonnetTlaArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceHelm, ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceHelmArgs

    FileParameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles List<string>
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    FileParameters []ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceHelmFileParameter
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters []ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceHelmParameter
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles []string
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceHelmFileParameter[]
    File parameters for the helm template.
    ignoreMissingValueFiles boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceHelmParameter[]
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName string
    Helm release name. If omitted it will use the application name.
    skipCrds boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles string[]
    List of Helm value files to use when generating a template.
    values string
    Helm values to be passed to 'helm template', typically defined as a block.
    version string
    The Helm version to use for templating. Accepts either v2 or v3
    file_parameters Sequence[ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceHelmFileParameter]
    File parameters for the helm template.
    ignore_missing_value_files bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters Sequence[ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceHelmParameter]
    Helm parameters which are passed to the helm template command upon manifest generation.
    pass_credentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    release_name str
    Helm release name. If omitted it will use the application name.
    skip_crds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    value_files Sequence[str]
    List of Helm value files to use when generating a template.
    values str
    Helm values to be passed to 'helm template', typically defined as a block.
    version str
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<Property Map>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<Property Map>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3

    ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceHelmFileParameter, ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceHelmFileParameterArgs

    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.
    name string
    Name of the Helm parameter.
    path string
    Path to the file containing the values for the Helm parameter.
    name str
    Name of the Helm parameter.
    path str
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.

    ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceHelmParameter, ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceHelmParameterArgs

    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.
    forceString boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name string
    Name of the Helm parameter.
    value string
    Value of the Helm parameter.
    force_string bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name str
    Name of the Helm parameter.
    value str
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.

    ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceKustomize, ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizeArgs

    CommonAnnotations Dictionary<string, string>
    List of additional annotations to add to rendered manifests.
    CommonLabels Dictionary<string, string>
    List of additional labels to add to rendered manifests.
    Images List<string>
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    CommonAnnotations map[string]string
    List of additional annotations to add to rendered manifests.
    CommonLabels map[string]string
    List of additional labels to add to rendered manifests.
    Images []string
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches []ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizePatch
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String,String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String,String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.
    commonAnnotations {[key: string]: string}
    List of additional annotations to add to rendered manifests.
    commonLabels {[key: string]: string}
    List of additional labels to add to rendered manifests.
    images string[]
    List of Kustomize image override specifications.
    namePrefix string
    Prefix appended to resources for Kustomize apps.
    nameSuffix string
    Suffix appended to resources for Kustomize apps.
    patches ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizePatch[]
    A list of Kustomize patches to apply.
    version string
    Version of Kustomize to use for rendering manifests.
    common_annotations Mapping[str, str]
    List of additional annotations to add to rendered manifests.
    common_labels Mapping[str, str]
    List of additional labels to add to rendered manifests.
    images Sequence[str]
    List of Kustomize image override specifications.
    name_prefix str
    Prefix appended to resources for Kustomize apps.
    name_suffix str
    Suffix appended to resources for Kustomize apps.
    patches Sequence[ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizePatch]
    A list of Kustomize patches to apply.
    version str
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<Property Map>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.

    ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizePatch, ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizePatchArgs

    Target Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options Dictionary<string, bool>
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    Target ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options map[string]bool
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Map<String,Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options {[key: string]: boolean}
    Additional options.
    patch string
    Inline Kustomize patch to apply.
    path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Mapping[str, bool]
    Additional options.
    patch str
    Inline Kustomize patch to apply.
    path str
    Path to a file containing the patch to apply.
    target Property Map
    Target(s) to patch
    options Map<Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.

    ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizePatchTarget, ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourceKustomizePatchTargetArgs

    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.
    annotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    group string
    The Kubernetes resource Group to match for.
    kind string
    The Kubernetes resource Kind to match for.
    labelSelector string
    Label selector to use when matching the Kubernetes resource.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    version string
    The Kubernetes resource Version to match for.
    annotation_selector str
    Annotation selector to use when matching the Kubernetes resource.
    group str
    The Kubernetes resource Group to match for.
    kind str
    The Kubernetes resource Kind to match for.
    label_selector str
    Label selector to use when matching the Kubernetes resource.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    version str
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.

    ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourcePlugin, ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourcePluginArgs

    Envs List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    Envs []ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourcePluginEnv
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourcePluginEnv[]
    Environment variables passed to the plugin.
    name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs Sequence[ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourcePluginEnv]
    Environment variables passed to the plugin.
    name str
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<Property Map>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.

    ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourcePluginEnv, ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSourcePluginEnvArgs

    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.
    name string
    Name of the environment variable.
    value string
    Value of the environment variable.
    name str
    Name of the environment variable.
    value str
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.

    ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicy, ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyArgs

    Automated Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions List<string>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    Automated ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions []string
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions string[]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managed_namespace_metadata ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    sync_options Sequence[str]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated Property Map
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata Property Map
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry Property Map
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.

    ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyAutomated, ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyAutomatedArgs

    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty boolean
    Allows apps have zero live resources.
    prune boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allow_empty bool
    Allows apps have zero live resources.
    prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    self_heal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.

    ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadata, ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadataArgs

    Annotations Dictionary<string, string>
    Annotations to apply to the namespace.
    Labels Dictionary<string, string>
    Labels to apply to the namespace.
    Annotations map[string]string
    Annotations to apply to the namespace.
    Labels map[string]string
    Labels to apply to the namespace.
    annotations Map<String,String>
    Annotations to apply to the namespace.
    labels Map<String,String>
    Labels to apply to the namespace.
    annotations {[key: string]: string}
    Annotations to apply to the namespace.
    labels {[key: string]: string}
    Labels to apply to the namespace.
    annotations Mapping[str, str]
    Annotations to apply to the namespace.
    labels Mapping[str, str]
    Labels to apply to the namespace.
    annotations Map<String>
    Annotations to apply to the namespace.
    labels Map<String>
    Labels to apply to the namespace.

    ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyRetry, ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyRetryArgs

    Backoff Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    Backoff ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit str
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff Property Map
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.

    ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyRetryBackoff, ApplicationSetSpecGeneratorMergeGeneratorClusterTemplateSpecSyncPolicyRetryBackoffArgs

    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor string
    Factor to multiply the base duration after each failed retry.
    maxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration str
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor str
    Factor to multiply the base duration after each failed retry.
    max_duration str
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.

    ApplicationSetSpecGeneratorMergeGeneratorGit, ApplicationSetSpecGeneratorMergeGeneratorGitArgs

    RepoUrl string
    URL to the repository to use.
    Directories List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGitDirectory>
    List of directories in the source repository to use when template the Application..
    Files List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGitFile>
    List of files in the source repository to use when template the Application.
    PathParamPrefix string
    Prefix for all path-related parameter names.
    Revision string
    Revision of the source repository to use.
    Template Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGitTemplate
    Generator template. Used to override the values of the spec-level template.
    Values Dictionary<string, string>
    Arbitrary string key-value pairs to pass to the template via the values field of the git generator.
    RepoUrl string
    URL to the repository to use.
    Directories []ApplicationSetSpecGeneratorMergeGeneratorGitDirectory
    List of directories in the source repository to use when template the Application..
    Files []ApplicationSetSpecGeneratorMergeGeneratorGitFile
    List of files in the source repository to use when template the Application.
    PathParamPrefix string
    Prefix for all path-related parameter names.
    Revision string
    Revision of the source repository to use.
    Template ApplicationSetSpecGeneratorMergeGeneratorGitTemplate
    Generator template. Used to override the values of the spec-level template.
    Values map[string]string
    Arbitrary string key-value pairs to pass to the template via the values field of the git generator.
    repoUrl String
    URL to the repository to use.
    directories List<ApplicationSetSpecGeneratorMergeGeneratorGitDirectory>
    List of directories in the source repository to use when template the Application..
    files List<ApplicationSetSpecGeneratorMergeGeneratorGitFile>
    List of files in the source repository to use when template the Application.
    pathParamPrefix String
    Prefix for all path-related parameter names.
    revision String
    Revision of the source repository to use.
    template ApplicationSetSpecGeneratorMergeGeneratorGitTemplate
    Generator template. Used to override the values of the spec-level template.
    values Map<String,String>
    Arbitrary string key-value pairs to pass to the template via the values field of the git generator.
    repoUrl string
    URL to the repository to use.
    directories ApplicationSetSpecGeneratorMergeGeneratorGitDirectory[]
    List of directories in the source repository to use when template the Application..
    files ApplicationSetSpecGeneratorMergeGeneratorGitFile[]
    List of files in the source repository to use when template the Application.
    pathParamPrefix string
    Prefix for all path-related parameter names.
    revision string
    Revision of the source repository to use.
    template ApplicationSetSpecGeneratorMergeGeneratorGitTemplate
    Generator template. Used to override the values of the spec-level template.
    values {[key: string]: string}
    Arbitrary string key-value pairs to pass to the template via the values field of the git generator.
    repo_url str
    URL to the repository to use.
    directories Sequence[ApplicationSetSpecGeneratorMergeGeneratorGitDirectory]
    List of directories in the source repository to use when template the Application..
    files Sequence[ApplicationSetSpecGeneratorMergeGeneratorGitFile]
    List of files in the source repository to use when template the Application.
    path_param_prefix str
    Prefix for all path-related parameter names.
    revision str
    Revision of the source repository to use.
    template ApplicationSetSpecGeneratorMergeGeneratorGitTemplate
    Generator template. Used to override the values of the spec-level template.
    values Mapping[str, str]
    Arbitrary string key-value pairs to pass to the template via the values field of the git generator.
    repoUrl String
    URL to the repository to use.
    directories List<Property Map>
    List of directories in the source repository to use when template the Application..
    files List<Property Map>
    List of files in the source repository to use when template the Application.
    pathParamPrefix String
    Prefix for all path-related parameter names.
    revision String
    Revision of the source repository to use.
    template Property Map
    Generator template. Used to override the values of the spec-level template.
    values Map<String>
    Arbitrary string key-value pairs to pass to the template via the values field of the git generator.

    ApplicationSetSpecGeneratorMergeGeneratorGitDirectory, ApplicationSetSpecGeneratorMergeGeneratorGitDirectoryArgs

    Path string
    Path in the repository.
    Exclude bool
    Flag indicating whether or not the directory should be excluded when templating.
    Path string
    Path in the repository.
    Exclude bool
    Flag indicating whether or not the directory should be excluded when templating.
    path String
    Path in the repository.
    exclude Boolean
    Flag indicating whether or not the directory should be excluded when templating.
    path string
    Path in the repository.
    exclude boolean
    Flag indicating whether or not the directory should be excluded when templating.
    path str
    Path in the repository.
    exclude bool
    Flag indicating whether or not the directory should be excluded when templating.
    path String
    Path in the repository.
    exclude Boolean
    Flag indicating whether or not the directory should be excluded when templating.

    ApplicationSetSpecGeneratorMergeGeneratorGitFile, ApplicationSetSpecGeneratorMergeGeneratorGitFileArgs

    Path string
    Path to the file in the repository.
    Path string
    Path to the file in the repository.
    path String
    Path to the file in the repository.
    path string
    Path to the file in the repository.
    path str
    Path to the file in the repository.
    path String
    Path to the file in the repository.

    ApplicationSetSpecGeneratorMergeGeneratorGitTemplate, ApplicationSetSpecGeneratorMergeGeneratorGitTemplateArgs

    metadata Property Map
    Kubernetes object metadata for templated Application.
    spec Property Map
    The application specification.

    ApplicationSetSpecGeneratorMergeGeneratorGitTemplateMetadata, ApplicationSetSpecGeneratorMergeGeneratorGitTemplateMetadataArgs

    Annotations Dictionary<string, string>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers List<string>
    List of finalizers to apply to the resulting Application.
    Labels Dictionary<string, string>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    Annotations map[string]string
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers []string
    List of finalizers to apply to the resulting Application.
    Labels map[string]string
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    annotations Map<String,String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String,String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application
    annotations {[key: string]: string}
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers string[]
    List of finalizers to apply to the resulting Application.
    labels {[key: string]: string}
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name string
    Name of the resulting Application
    namespace string
    Namespace of the resulting Application
    annotations Mapping[str, str]
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers Sequence[str]
    List of finalizers to apply to the resulting Application.
    labels Mapping[str, str]
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name str
    Name of the resulting Application
    namespace str
    Namespace of the resulting Application
    annotations Map<String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application

    ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpec, ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecArgs

    Destination Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSource>
    Location of the application's manifests or chart.
    SyncPolicy Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    Destination ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences []ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecIgnoreDifference
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos []ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecInfo
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources []ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSource
    Location of the application's manifests or chart.
    SyncPolicy ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Integer
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSource>
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecIgnoreDifference[]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecInfo[]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project string
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSource[]
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignore_differences Sequence[ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecIgnoreDifference]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos Sequence[ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecInfo]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project str
    The project the application belongs to. Defaults to default.
    revision_history_limit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources Sequence[ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSource]
    Location of the application's manifests or chart.
    sync_policy ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination Property Map
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<Property Map>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<Property Map>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<Property Map>
    Location of the application's manifests or chart.
    syncPolicy Property Map
    Controls when and how a sync will be performed.

    ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecDestination, ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecDestinationArgs

    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name string
    Name of the target cluster. Can be used instead of server.
    namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name str
    Name of the target cluster. Can be used instead of server.
    namespace str
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server str
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.

    ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecIgnoreDifference, ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecIgnoreDifferenceArgs

    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions List<string>
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers List<string>
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers List<string>
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions []string
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers []string
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers []string
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    group string
    The Kubernetes resource Group to match for.
    jqPathExpressions string[]
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers string[]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind string
    The Kubernetes resource Kind to match for.
    managedFieldsManagers string[]
    List of external controller manager names whose changes to fields should be ignored.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    group str
    The Kubernetes resource Group to match for.
    jq_path_expressions Sequence[str]
    List of JQ path expression strings targeting the field(s) to ignore.
    json_pointers Sequence[str]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind str
    The Kubernetes resource Kind to match for.
    managed_fields_managers Sequence[str]
    List of external controller manager names whose changes to fields should be ignored.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.

    ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecInfo, ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecInfoArgs

    Name string
    Name of the information.
    Value string
    Value of the information.
    Name string
    Name of the information.
    Value string
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.
    name string
    Name of the information.
    value string
    Value of the information.
    name str
    Name of the information.
    value str
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.

    ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSource, ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceArgs

    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceHelm
    Helm specific options.
    Kustomize Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceHelm
    Helm specific options.
    Kustomize ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceKustomize
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceKustomize
    Kustomize specific options.
    path string
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart str
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceKustomize
    Kustomize specific options.
    path str
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref str
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repo_url str
    URL to the repository (Git or Helm) that contains the application manifests.
    target_revision str
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory Property Map
    Path/directory specific options.
    helm Property Map
    Helm specific options.
    kustomize Property Map
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin Property Map
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.

    ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceDirectory, ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryArgs

    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.
    exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse boolean
    Whether to scan a directory recursively for manifests.
    exclude str
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include str
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet Property Map
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.

    ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnet, ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnetArgs

    extVars List<Property Map>
    List of Jsonnet External Variables.
    libs List<String>
    Additional library search dirs.
    tlas List<Property Map>
    List of Jsonnet Top-level Arguments

    ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnetExtVar, ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnetExtVarArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnetTla, ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceDirectoryJsonnetTlaArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceHelm, ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceHelmArgs

    FileParameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles List<string>
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    FileParameters []ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceHelmFileParameter
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters []ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceHelmParameter
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles []string
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceHelmFileParameter[]
    File parameters for the helm template.
    ignoreMissingValueFiles boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceHelmParameter[]
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName string
    Helm release name. If omitted it will use the application name.
    skipCrds boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles string[]
    List of Helm value files to use when generating a template.
    values string
    Helm values to be passed to 'helm template', typically defined as a block.
    version string
    The Helm version to use for templating. Accepts either v2 or v3
    file_parameters Sequence[ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceHelmFileParameter]
    File parameters for the helm template.
    ignore_missing_value_files bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters Sequence[ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceHelmParameter]
    Helm parameters which are passed to the helm template command upon manifest generation.
    pass_credentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    release_name str
    Helm release name. If omitted it will use the application name.
    skip_crds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    value_files Sequence[str]
    List of Helm value files to use when generating a template.
    values str
    Helm values to be passed to 'helm template', typically defined as a block.
    version str
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<Property Map>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<Property Map>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3

    ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceHelmFileParameter, ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceHelmFileParameterArgs

    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.
    name string
    Name of the Helm parameter.
    path string
    Path to the file containing the values for the Helm parameter.
    name str
    Name of the Helm parameter.
    path str
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.

    ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceHelmParameter, ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceHelmParameterArgs

    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.
    forceString boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name string
    Name of the Helm parameter.
    value string
    Value of the Helm parameter.
    force_string bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name str
    Name of the Helm parameter.
    value str
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.

    ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceKustomize, ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceKustomizeArgs

    CommonAnnotations Dictionary<string, string>
    List of additional annotations to add to rendered manifests.
    CommonLabels Dictionary<string, string>
    List of additional labels to add to rendered manifests.
    Images List<string>
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    CommonAnnotations map[string]string
    List of additional annotations to add to rendered manifests.
    CommonLabels map[string]string
    List of additional labels to add to rendered manifests.
    Images []string
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches []ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceKustomizePatch
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String,String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String,String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.
    commonAnnotations {[key: string]: string}
    List of additional annotations to add to rendered manifests.
    commonLabels {[key: string]: string}
    List of additional labels to add to rendered manifests.
    images string[]
    List of Kustomize image override specifications.
    namePrefix string
    Prefix appended to resources for Kustomize apps.
    nameSuffix string
    Suffix appended to resources for Kustomize apps.
    patches ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceKustomizePatch[]
    A list of Kustomize patches to apply.
    version string
    Version of Kustomize to use for rendering manifests.
    common_annotations Mapping[str, str]
    List of additional annotations to add to rendered manifests.
    common_labels Mapping[str, str]
    List of additional labels to add to rendered manifests.
    images Sequence[str]
    List of Kustomize image override specifications.
    name_prefix str
    Prefix appended to resources for Kustomize apps.
    name_suffix str
    Suffix appended to resources for Kustomize apps.
    patches Sequence[ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceKustomizePatch]
    A list of Kustomize patches to apply.
    version str
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<Property Map>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.

    ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceKustomizePatch, ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceKustomizePatchArgs

    Target Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options Dictionary<string, bool>
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    Target ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options map[string]bool
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Map<String,Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options {[key: string]: boolean}
    Additional options.
    patch string
    Inline Kustomize patch to apply.
    path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Mapping[str, bool]
    Additional options.
    patch str
    Inline Kustomize patch to apply.
    path str
    Path to a file containing the patch to apply.
    target Property Map
    Target(s) to patch
    options Map<Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.

    ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceKustomizePatchTarget, ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourceKustomizePatchTargetArgs

    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.
    annotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    group string
    The Kubernetes resource Group to match for.
    kind string
    The Kubernetes resource Kind to match for.
    labelSelector string
    Label selector to use when matching the Kubernetes resource.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    version string
    The Kubernetes resource Version to match for.
    annotation_selector str
    Annotation selector to use when matching the Kubernetes resource.
    group str
    The Kubernetes resource Group to match for.
    kind str
    The Kubernetes resource Kind to match for.
    label_selector str
    Label selector to use when matching the Kubernetes resource.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    version str
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.

    ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourcePlugin, ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourcePluginArgs

    Envs List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    Envs []ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourcePluginEnv
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourcePluginEnv[]
    Environment variables passed to the plugin.
    name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs Sequence[ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourcePluginEnv]
    Environment variables passed to the plugin.
    name str
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<Property Map>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.

    ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourcePluginEnv, ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSourcePluginEnvArgs

    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.
    name string
    Name of the environment variable.
    value string
    Value of the environment variable.
    name str
    Name of the environment variable.
    value str
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.

    ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicy, ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicyArgs

    Automated Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions List<string>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    Automated ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions []string
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions string[]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managed_namespace_metadata ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    sync_options Sequence[str]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated Property Map
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata Property Map
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry Property Map
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.

    ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicyAutomated, ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicyAutomatedArgs

    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty boolean
    Allows apps have zero live resources.
    prune boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allow_empty bool
    Allows apps have zero live resources.
    prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    self_heal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.

    ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadata, ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadataArgs

    Annotations Dictionary<string, string>
    Annotations to apply to the namespace.
    Labels Dictionary<string, string>
    Labels to apply to the namespace.
    Annotations map[string]string
    Annotations to apply to the namespace.
    Labels map[string]string
    Labels to apply to the namespace.
    annotations Map<String,String>
    Annotations to apply to the namespace.
    labels Map<String,String>
    Labels to apply to the namespace.
    annotations {[key: string]: string}
    Annotations to apply to the namespace.
    labels {[key: string]: string}
    Labels to apply to the namespace.
    annotations Mapping[str, str]
    Annotations to apply to the namespace.
    labels Mapping[str, str]
    Labels to apply to the namespace.
    annotations Map<String>
    Annotations to apply to the namespace.
    labels Map<String>
    Labels to apply to the namespace.

    ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicyRetry, ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicyRetryArgs

    Backoff Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    Backoff ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit str
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff Property Map
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.

    ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicyRetryBackoff, ApplicationSetSpecGeneratorMergeGeneratorGitTemplateSpecSyncPolicyRetryBackoffArgs

    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor string
    Factor to multiply the base duration after each failed retry.
    maxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration str
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor str
    Factor to multiply the base duration after each failed retry.
    max_duration str
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.

    ApplicationSetSpecGeneratorMergeGeneratorList, ApplicationSetSpecGeneratorMergeGeneratorListArgs

    Elements List<ImmutableDictionary<string, string>>
    List of key/value pairs to pass as parameters into the template
    Template Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorListTemplate
    Generator template. Used to override the values of the spec-level template.
    Elements []map[string]string
    List of key/value pairs to pass as parameters into the template
    Template ApplicationSetSpecGeneratorMergeGeneratorListTemplate
    Generator template. Used to override the values of the spec-level template.
    elements List<Map<String,String>>
    List of key/value pairs to pass as parameters into the template
    template ApplicationSetSpecGeneratorMergeGeneratorListTemplate
    Generator template. Used to override the values of the spec-level template.
    elements {[key: string]: string}[]
    List of key/value pairs to pass as parameters into the template
    template ApplicationSetSpecGeneratorMergeGeneratorListTemplate
    Generator template. Used to override the values of the spec-level template.
    elements Sequence[Mapping[str, str]]
    List of key/value pairs to pass as parameters into the template
    template ApplicationSetSpecGeneratorMergeGeneratorListTemplate
    Generator template. Used to override the values of the spec-level template.
    elements List<Map<String>>
    List of key/value pairs to pass as parameters into the template
    template Property Map
    Generator template. Used to override the values of the spec-level template.

    ApplicationSetSpecGeneratorMergeGeneratorListTemplate, ApplicationSetSpecGeneratorMergeGeneratorListTemplateArgs

    metadata Property Map
    Kubernetes object metadata for templated Application.
    spec Property Map
    The application specification.

    ApplicationSetSpecGeneratorMergeGeneratorListTemplateMetadata, ApplicationSetSpecGeneratorMergeGeneratorListTemplateMetadataArgs

    Annotations Dictionary<string, string>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers List<string>
    List of finalizers to apply to the resulting Application.
    Labels Dictionary<string, string>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    Annotations map[string]string
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers []string
    List of finalizers to apply to the resulting Application.
    Labels map[string]string
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    annotations Map<String,String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String,String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application
    annotations {[key: string]: string}
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers string[]
    List of finalizers to apply to the resulting Application.
    labels {[key: string]: string}
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name string
    Name of the resulting Application
    namespace string
    Namespace of the resulting Application
    annotations Mapping[str, str]
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers Sequence[str]
    List of finalizers to apply to the resulting Application.
    labels Mapping[str, str]
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name str
    Name of the resulting Application
    namespace str
    Namespace of the resulting Application
    annotations Map<String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application

    ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpec, ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecArgs

    Destination Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSource>
    Location of the application's manifests or chart.
    SyncPolicy Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    Destination ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences []ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecIgnoreDifference
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos []ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecInfo
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources []ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSource
    Location of the application's manifests or chart.
    SyncPolicy ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Integer
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSource>
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecIgnoreDifference[]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecInfo[]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project string
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSource[]
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignore_differences Sequence[ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecIgnoreDifference]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos Sequence[ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecInfo]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project str
    The project the application belongs to. Defaults to default.
    revision_history_limit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources Sequence[ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSource]
    Location of the application's manifests or chart.
    sync_policy ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination Property Map
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<Property Map>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<Property Map>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<Property Map>
    Location of the application's manifests or chart.
    syncPolicy Property Map
    Controls when and how a sync will be performed.

    ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecDestination, ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecDestinationArgs

    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name string
    Name of the target cluster. Can be used instead of server.
    namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name str
    Name of the target cluster. Can be used instead of server.
    namespace str
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server str
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.

    ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecIgnoreDifference, ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecIgnoreDifferenceArgs

    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions List<string>
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers List<string>
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers List<string>
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions []string
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers []string
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers []string
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    group string
    The Kubernetes resource Group to match for.
    jqPathExpressions string[]
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers string[]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind string
    The Kubernetes resource Kind to match for.
    managedFieldsManagers string[]
    List of external controller manager names whose changes to fields should be ignored.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    group str
    The Kubernetes resource Group to match for.
    jq_path_expressions Sequence[str]
    List of JQ path expression strings targeting the field(s) to ignore.
    json_pointers Sequence[str]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind str
    The Kubernetes resource Kind to match for.
    managed_fields_managers Sequence[str]
    List of external controller manager names whose changes to fields should be ignored.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.

    ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecInfo, ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecInfoArgs

    Name string
    Name of the information.
    Value string
    Value of the information.
    Name string
    Name of the information.
    Value string
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.
    name string
    Name of the information.
    value string
    Value of the information.
    name str
    Name of the information.
    value str
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.

    ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSource, ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceArgs

    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceHelm
    Helm specific options.
    Kustomize Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceHelm
    Helm specific options.
    Kustomize ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceKustomize
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceKustomize
    Kustomize specific options.
    path string
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart str
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceKustomize
    Kustomize specific options.
    path str
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref str
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repo_url str
    URL to the repository (Git or Helm) that contains the application manifests.
    target_revision str
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory Property Map
    Path/directory specific options.
    helm Property Map
    Helm specific options.
    kustomize Property Map
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin Property Map
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.

    ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceDirectory, ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceDirectoryArgs

    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.
    exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse boolean
    Whether to scan a directory recursively for manifests.
    exclude str
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include str
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet Property Map
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.

    ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnet, ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnetArgs

    extVars List<Property Map>
    List of Jsonnet External Variables.
    libs List<String>
    Additional library search dirs.
    tlas List<Property Map>
    List of Jsonnet Top-level Arguments

    ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnetExtVar, ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnetExtVarArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnetTla, ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceDirectoryJsonnetTlaArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceHelm, ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceHelmArgs

    FileParameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles List<string>
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    FileParameters []ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceHelmFileParameter
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters []ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceHelmParameter
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles []string
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceHelmFileParameter[]
    File parameters for the helm template.
    ignoreMissingValueFiles boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceHelmParameter[]
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName string
    Helm release name. If omitted it will use the application name.
    skipCrds boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles string[]
    List of Helm value files to use when generating a template.
    values string
    Helm values to be passed to 'helm template', typically defined as a block.
    version string
    The Helm version to use for templating. Accepts either v2 or v3
    file_parameters Sequence[ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceHelmFileParameter]
    File parameters for the helm template.
    ignore_missing_value_files bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters Sequence[ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceHelmParameter]
    Helm parameters which are passed to the helm template command upon manifest generation.
    pass_credentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    release_name str
    Helm release name. If omitted it will use the application name.
    skip_crds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    value_files Sequence[str]
    List of Helm value files to use when generating a template.
    values str
    Helm values to be passed to 'helm template', typically defined as a block.
    version str
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<Property Map>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<Property Map>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3

    ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceHelmFileParameter, ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceHelmFileParameterArgs

    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.
    name string
    Name of the Helm parameter.
    path string
    Path to the file containing the values for the Helm parameter.
    name str
    Name of the Helm parameter.
    path str
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.

    ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceHelmParameter, ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceHelmParameterArgs

    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.
    forceString boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name string
    Name of the Helm parameter.
    value string
    Value of the Helm parameter.
    force_string bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name str
    Name of the Helm parameter.
    value str
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.

    ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceKustomize, ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceKustomizeArgs

    CommonAnnotations Dictionary<string, string>
    List of additional annotations to add to rendered manifests.
    CommonLabels Dictionary<string, string>
    List of additional labels to add to rendered manifests.
    Images List<string>
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    CommonAnnotations map[string]string
    List of additional annotations to add to rendered manifests.
    CommonLabels map[string]string
    List of additional labels to add to rendered manifests.
    Images []string
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches []ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceKustomizePatch
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String,String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String,String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.
    commonAnnotations {[key: string]: string}
    List of additional annotations to add to rendered manifests.
    commonLabels {[key: string]: string}
    List of additional labels to add to rendered manifests.
    images string[]
    List of Kustomize image override specifications.
    namePrefix string
    Prefix appended to resources for Kustomize apps.
    nameSuffix string
    Suffix appended to resources for Kustomize apps.
    patches ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceKustomizePatch[]
    A list of Kustomize patches to apply.
    version string
    Version of Kustomize to use for rendering manifests.
    common_annotations Mapping[str, str]
    List of additional annotations to add to rendered manifests.
    common_labels Mapping[str, str]
    List of additional labels to add to rendered manifests.
    images Sequence[str]
    List of Kustomize image override specifications.
    name_prefix str
    Prefix appended to resources for Kustomize apps.
    name_suffix str
    Suffix appended to resources for Kustomize apps.
    patches Sequence[ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceKustomizePatch]
    A list of Kustomize patches to apply.
    version str
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<Property Map>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.

    ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceKustomizePatch, ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceKustomizePatchArgs

    Target Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options Dictionary<string, bool>
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    Target ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options map[string]bool
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Map<String,Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options {[key: string]: boolean}
    Additional options.
    patch string
    Inline Kustomize patch to apply.
    path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Mapping[str, bool]
    Additional options.
    patch str
    Inline Kustomize patch to apply.
    path str
    Path to a file containing the patch to apply.
    target Property Map
    Target(s) to patch
    options Map<Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.

    ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceKustomizePatchTarget, ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourceKustomizePatchTargetArgs

    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.
    annotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    group string
    The Kubernetes resource Group to match for.
    kind string
    The Kubernetes resource Kind to match for.
    labelSelector string
    Label selector to use when matching the Kubernetes resource.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    version string
    The Kubernetes resource Version to match for.
    annotation_selector str
    Annotation selector to use when matching the Kubernetes resource.
    group str
    The Kubernetes resource Group to match for.
    kind str
    The Kubernetes resource Kind to match for.
    label_selector str
    Label selector to use when matching the Kubernetes resource.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    version str
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.

    ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourcePlugin, ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourcePluginArgs

    Envs List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    Envs []ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourcePluginEnv
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourcePluginEnv[]
    Environment variables passed to the plugin.
    name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs Sequence[ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourcePluginEnv]
    Environment variables passed to the plugin.
    name str
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<Property Map>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.

    ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourcePluginEnv, ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSourcePluginEnvArgs

    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.
    name string
    Name of the environment variable.
    value string
    Value of the environment variable.
    name str
    Name of the environment variable.
    value str
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.

    ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicy, ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicyArgs

    Automated Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions List<string>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    Automated ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions []string
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions string[]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managed_namespace_metadata ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    sync_options Sequence[str]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated Property Map
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata Property Map
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry Property Map
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.

    ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicyAutomated, ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicyAutomatedArgs

    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty boolean
    Allows apps have zero live resources.
    prune boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allow_empty bool
    Allows apps have zero live resources.
    prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    self_heal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.

    ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadata, ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadataArgs

    Annotations Dictionary<string, string>
    Annotations to apply to the namespace.
    Labels Dictionary<string, string>
    Labels to apply to the namespace.
    Annotations map[string]string
    Annotations to apply to the namespace.
    Labels map[string]string
    Labels to apply to the namespace.
    annotations Map<String,String>
    Annotations to apply to the namespace.
    labels Map<String,String>
    Labels to apply to the namespace.
    annotations {[key: string]: string}
    Annotations to apply to the namespace.
    labels {[key: string]: string}
    Labels to apply to the namespace.
    annotations Mapping[str, str]
    Annotations to apply to the namespace.
    labels Mapping[str, str]
    Labels to apply to the namespace.
    annotations Map<String>
    Annotations to apply to the namespace.
    labels Map<String>
    Labels to apply to the namespace.

    ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicyRetry, ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicyRetryArgs

    Backoff Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    Backoff ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit str
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff Property Map
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.

    ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicyRetryBackoff, ApplicationSetSpecGeneratorMergeGeneratorListTemplateSpecSyncPolicyRetryBackoffArgs

    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor string
    Factor to multiply the base duration after each failed retry.
    maxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration str
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor str
    Factor to multiply the base duration after each failed retry.
    max_duration str
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.

    ApplicationSetSpecGeneratorMergeGeneratorMatrix, ApplicationSetSpecGeneratorMergeGeneratorMatrixArgs

    Generators List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGenerator>
    Child generator. Generators are responsible for generating parameters, which are then combined by the parent matrix generator into the template fields of the ApplicationSet resource.
    Template Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplate
    Generator template. Used to override the values of the spec-level template.
    Generators []ApplicationSetSpecGeneratorMergeGeneratorMatrixGenerator
    Child generator. Generators are responsible for generating parameters, which are then combined by the parent matrix generator into the template fields of the ApplicationSet resource.
    Template ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplate
    Generator template. Used to override the values of the spec-level template.
    generators List<ApplicationSetSpecGeneratorMergeGeneratorMatrixGenerator>
    Child generator. Generators are responsible for generating parameters, which are then combined by the parent matrix generator into the template fields of the ApplicationSet resource.
    template ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplate
    Generator template. Used to override the values of the spec-level template.
    generators ApplicationSetSpecGeneratorMergeGeneratorMatrixGenerator[]
    Child generator. Generators are responsible for generating parameters, which are then combined by the parent matrix generator into the template fields of the ApplicationSet resource.
    template ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplate
    Generator template. Used to override the values of the spec-level template.
    generators Sequence[ApplicationSetSpecGeneratorMergeGeneratorMatrixGenerator]
    Child generator. Generators are responsible for generating parameters, which are then combined by the parent matrix generator into the template fields of the ApplicationSet resource.
    template ApplicationSetSpecGeneratorMergeGeneratorMatrixTemplate
    Generator template. Used to override the values of the spec-level template.
    generators List<Property Map>
    Child generator. Generators are responsible for generating parameters, which are then combined by the parent matrix generator into the template fields of the ApplicationSet resource.
    template Property Map
    Generator template. Used to override the values of the spec-level template.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGenerator, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorArgs

    ClusterDecisionResources List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResource>
    The cluster decision resource generates a list of Argo CD clusters.
    Clusters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorCluster>
    The cluster generator produces parameters based on the list of items found within the cluster secret.
    Gits List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGit>
    Git generators generates parameters using either the directory structure of a specified Git repository (directory generator), or, using the contents of JSON/YAML files found within a specified repository (file generator).
    Lists List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorList>
    List generators generate parameters based on an arbitrary list of key/value pairs (as long as the values are string values).
    PullRequests List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequest>
    Pull Request generators uses the API of an SCMaaS provider to automatically discover open pull requests within a repository.
    ScmProviders List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProvider>
    SCM Provider generators uses the API of an SCMaaS provider to automatically discover repositories within an organization.
    Selector Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorSelector
    The Selector allows to post-filter based on generated values using the kubernetes common labelSelector format.
    ClusterDecisionResources []ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResource
    The cluster decision resource generates a list of Argo CD clusters.
    Clusters []ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorCluster
    The cluster generator produces parameters based on the list of items found within the cluster secret.
    Gits []ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGit
    Git generators generates parameters using either the directory structure of a specified Git repository (directory generator), or, using the contents of JSON/YAML files found within a specified repository (file generator).
    Lists []ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorList
    List generators generate parameters based on an arbitrary list of key/value pairs (as long as the values are string values).
    PullRequests []ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequest
    Pull Request generators uses the API of an SCMaaS provider to automatically discover open pull requests within a repository.
    ScmProviders []ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProvider
    SCM Provider generators uses the API of an SCMaaS provider to automatically discover repositories within an organization.
    Selector ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorSelector
    The Selector allows to post-filter based on generated values using the kubernetes common labelSelector format.
    clusterDecisionResources List<ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResource>
    The cluster decision resource generates a list of Argo CD clusters.
    clusters List<ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorCluster>
    The cluster generator produces parameters based on the list of items found within the cluster secret.
    gits List<ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGit>
    Git generators generates parameters using either the directory structure of a specified Git repository (directory generator), or, using the contents of JSON/YAML files found within a specified repository (file generator).
    lists List<ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorList>
    List generators generate parameters based on an arbitrary list of key/value pairs (as long as the values are string values).
    pullRequests List<ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequest>
    Pull Request generators uses the API of an SCMaaS provider to automatically discover open pull requests within a repository.
    scmProviders List<ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProvider>
    SCM Provider generators uses the API of an SCMaaS provider to automatically discover repositories within an organization.
    selector ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorSelector
    The Selector allows to post-filter based on generated values using the kubernetes common labelSelector format.
    clusterDecisionResources ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResource[]
    The cluster decision resource generates a list of Argo CD clusters.
    clusters ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorCluster[]
    The cluster generator produces parameters based on the list of items found within the cluster secret.
    gits ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGit[]
    Git generators generates parameters using either the directory structure of a specified Git repository (directory generator), or, using the contents of JSON/YAML files found within a specified repository (file generator).
    lists ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorList[]
    List generators generate parameters based on an arbitrary list of key/value pairs (as long as the values are string values).
    pullRequests ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequest[]
    Pull Request generators uses the API of an SCMaaS provider to automatically discover open pull requests within a repository.
    scmProviders ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProvider[]
    SCM Provider generators uses the API of an SCMaaS provider to automatically discover repositories within an organization.
    selector ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorSelector
    The Selector allows to post-filter based on generated values using the kubernetes common labelSelector format.
    cluster_decision_resources Sequence[ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResource]
    The cluster decision resource generates a list of Argo CD clusters.
    clusters Sequence[ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorCluster]
    The cluster generator produces parameters based on the list of items found within the cluster secret.
    gits Sequence[ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGit]
    Git generators generates parameters using either the directory structure of a specified Git repository (directory generator), or, using the contents of JSON/YAML files found within a specified repository (file generator).
    lists Sequence[ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorList]
    List generators generate parameters based on an arbitrary list of key/value pairs (as long as the values are string values).
    pull_requests Sequence[ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequest]
    Pull Request generators uses the API of an SCMaaS provider to automatically discover open pull requests within a repository.
    scm_providers Sequence[ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProvider]
    SCM Provider generators uses the API of an SCMaaS provider to automatically discover repositories within an organization.
    selector ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorSelector
    The Selector allows to post-filter based on generated values using the kubernetes common labelSelector format.
    clusterDecisionResources List<Property Map>
    The cluster decision resource generates a list of Argo CD clusters.
    clusters List<Property Map>
    The cluster generator produces parameters based on the list of items found within the cluster secret.
    gits List<Property Map>
    Git generators generates parameters using either the directory structure of a specified Git repository (directory generator), or, using the contents of JSON/YAML files found within a specified repository (file generator).
    lists List<Property Map>
    List generators generate parameters based on an arbitrary list of key/value pairs (as long as the values are string values).
    pullRequests List<Property Map>
    Pull Request generators uses the API of an SCMaaS provider to automatically discover open pull requests within a repository.
    scmProviders List<Property Map>
    SCM Provider generators uses the API of an SCMaaS provider to automatically discover repositories within an organization.
    selector Property Map
    The Selector allows to post-filter based on generated values using the kubernetes common labelSelector format.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorCluster, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterArgs

    Enabled bool
    Boolean value defaulting to true to indicate that this block has been added thereby allowing all other attributes to be optional.
    Selector Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterSelector
    Label selector used to narrow the scope of targeted clusters.
    Template Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplate
    Generator template. Used to override the values of the spec-level template.
    Values Dictionary<string, string>
    Arbitrary string key-value pairs to pass to the template via the values field of the cluster generator.
    Enabled bool
    Boolean value defaulting to true to indicate that this block has been added thereby allowing all other attributes to be optional.
    Selector ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterSelector
    Label selector used to narrow the scope of targeted clusters.
    Template ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplate
    Generator template. Used to override the values of the spec-level template.
    Values map[string]string
    Arbitrary string key-value pairs to pass to the template via the values field of the cluster generator.
    enabled Boolean
    Boolean value defaulting to true to indicate that this block has been added thereby allowing all other attributes to be optional.
    selector ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterSelector
    Label selector used to narrow the scope of targeted clusters.
    template ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplate
    Generator template. Used to override the values of the spec-level template.
    values Map<String,String>
    Arbitrary string key-value pairs to pass to the template via the values field of the cluster generator.
    enabled boolean
    Boolean value defaulting to true to indicate that this block has been added thereby allowing all other attributes to be optional.
    selector ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterSelector
    Label selector used to narrow the scope of targeted clusters.
    template ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplate
    Generator template. Used to override the values of the spec-level template.
    values {[key: string]: string}
    Arbitrary string key-value pairs to pass to the template via the values field of the cluster generator.
    enabled bool
    Boolean value defaulting to true to indicate that this block has been added thereby allowing all other attributes to be optional.
    selector ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterSelector
    Label selector used to narrow the scope of targeted clusters.
    template ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplate
    Generator template. Used to override the values of the spec-level template.
    values Mapping[str, str]
    Arbitrary string key-value pairs to pass to the template via the values field of the cluster generator.
    enabled Boolean
    Boolean value defaulting to true to indicate that this block has been added thereby allowing all other attributes to be optional.
    selector Property Map
    Label selector used to narrow the scope of targeted clusters.
    template Property Map
    Generator template. Used to override the values of the spec-level template.
    values Map<String>
    Arbitrary string key-value pairs to pass to the template via the values field of the cluster generator.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResource, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceArgs

    ConfigMapRef string
    ConfigMap with the duck type definitions needed to retrieve the data this includes apiVersion(group/version), kind, matchKey and validation settings.
    LabelSelector Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceLabelSelector
    Label selector used to find the resource defined in the config_map_ref. Alternative to name.
    Name string
    Resource name of the kind, group and version, defined in the config_map_ref.
    RequeueAfterSeconds string
    How often to check for changes (in seconds). Default: 3min.
    Template Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplate
    Generator template. Used to override the values of the spec-level template.
    Values Dictionary<string, string>
    Arbitrary string key-value pairs which are passed directly as parameters to the template.
    ConfigMapRef string
    ConfigMap with the duck type definitions needed to retrieve the data this includes apiVersion(group/version), kind, matchKey and validation settings.
    LabelSelector ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceLabelSelector
    Label selector used to find the resource defined in the config_map_ref. Alternative to name.
    Name string
    Resource name of the kind, group and version, defined in the config_map_ref.
    RequeueAfterSeconds string
    How often to check for changes (in seconds). Default: 3min.
    Template ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplate
    Generator template. Used to override the values of the spec-level template.
    Values map[string]string
    Arbitrary string key-value pairs which are passed directly as parameters to the template.
    configMapRef String
    ConfigMap with the duck type definitions needed to retrieve the data this includes apiVersion(group/version), kind, matchKey and validation settings.
    labelSelector ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceLabelSelector
    Label selector used to find the resource defined in the config_map_ref. Alternative to name.
    name String
    Resource name of the kind, group and version, defined in the config_map_ref.
    requeueAfterSeconds String
    How often to check for changes (in seconds). Default: 3min.
    template ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplate
    Generator template. Used to override the values of the spec-level template.
    values Map<String,String>
    Arbitrary string key-value pairs which are passed directly as parameters to the template.
    configMapRef string
    ConfigMap with the duck type definitions needed to retrieve the data this includes apiVersion(group/version), kind, matchKey and validation settings.
    labelSelector ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceLabelSelector
    Label selector used to find the resource defined in the config_map_ref. Alternative to name.
    name string
    Resource name of the kind, group and version, defined in the config_map_ref.
    requeueAfterSeconds string
    How often to check for changes (in seconds). Default: 3min.
    template ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplate
    Generator template. Used to override the values of the spec-level template.
    values {[key: string]: string}
    Arbitrary string key-value pairs which are passed directly as parameters to the template.
    config_map_ref str
    ConfigMap with the duck type definitions needed to retrieve the data this includes apiVersion(group/version), kind, matchKey and validation settings.
    label_selector ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceLabelSelector
    Label selector used to find the resource defined in the config_map_ref. Alternative to name.
    name str
    Resource name of the kind, group and version, defined in the config_map_ref.
    requeue_after_seconds str
    How often to check for changes (in seconds). Default: 3min.
    template ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplate
    Generator template. Used to override the values of the spec-level template.
    values Mapping[str, str]
    Arbitrary string key-value pairs which are passed directly as parameters to the template.
    configMapRef String
    ConfigMap with the duck type definitions needed to retrieve the data this includes apiVersion(group/version), kind, matchKey and validation settings.
    labelSelector Property Map
    Label selector used to find the resource defined in the config_map_ref. Alternative to name.
    name String
    Resource name of the kind, group and version, defined in the config_map_ref.
    requeueAfterSeconds String
    How often to check for changes (in seconds). Default: 3min.
    template Property Map
    Generator template. Used to override the values of the spec-level template.
    values Map<String>
    Arbitrary string key-value pairs which are passed directly as parameters to the template.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceLabelSelector, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceLabelSelectorArgs

    MatchExpressions List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceLabelSelectorMatchExpression>
    A list of label selector requirements. The requirements are ANDed.
    MatchLabels Dictionary<string, string>
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    MatchExpressions []ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceLabelSelectorMatchExpression
    A list of label selector requirements. The requirements are ANDed.
    MatchLabels map[string]string
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    matchExpressions List<ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceLabelSelectorMatchExpression>
    A list of label selector requirements. The requirements are ANDed.
    matchLabels Map<String,String>
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    matchExpressions ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceLabelSelectorMatchExpression[]
    A list of label selector requirements. The requirements are ANDed.
    matchLabels {[key: string]: string}
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    match_expressions Sequence[ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceLabelSelectorMatchExpression]
    A list of label selector requirements. The requirements are ANDed.
    match_labels Mapping[str, str]
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    matchExpressions List<Property Map>
    A list of label selector requirements. The requirements are ANDed.
    matchLabels Map<String>
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceLabelSelectorMatchExpression, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceLabelSelectorMatchExpressionArgs

    Key string
    The label key that the selector applies to.
    Operator string
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    Values List<string>
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    Key string
    The label key that the selector applies to.
    Operator string
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    Values []string
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key String
    The label key that the selector applies to.
    operator String
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values List<String>
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key string
    The label key that the selector applies to.
    operator string
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values string[]
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key str
    The label key that the selector applies to.
    operator str
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values Sequence[str]
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key String
    The label key that the selector applies to.
    operator String
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values List<String>
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplate, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateArgs

    metadata Property Map
    Kubernetes object metadata for templated Application.
    spec Property Map
    The application specification.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateMetadata, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateMetadataArgs

    Annotations Dictionary<string, string>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers List<string>
    List of finalizers to apply to the resulting Application.
    Labels Dictionary<string, string>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    Annotations map[string]string
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers []string
    List of finalizers to apply to the resulting Application.
    Labels map[string]string
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    annotations Map<String,String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String,String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application
    annotations {[key: string]: string}
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers string[]
    List of finalizers to apply to the resulting Application.
    labels {[key: string]: string}
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name string
    Name of the resulting Application
    namespace string
    Namespace of the resulting Application
    annotations Mapping[str, str]
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers Sequence[str]
    List of finalizers to apply to the resulting Application.
    labels Mapping[str, str]
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name str
    Name of the resulting Application
    namespace str
    Namespace of the resulting Application
    annotations Map<String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpec, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecArgs

    Destination Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSource>
    Location of the application's manifests or chart.
    SyncPolicy Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    Destination ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences []ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecIgnoreDifference
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos []ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecInfo
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources []ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSource
    Location of the application's manifests or chart.
    SyncPolicy ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Integer
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSource>
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecIgnoreDifference[]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecInfo[]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project string
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSource[]
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignore_differences Sequence[ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecIgnoreDifference]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos Sequence[ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecInfo]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project str
    The project the application belongs to. Defaults to default.
    revision_history_limit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources Sequence[ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSource]
    Location of the application's manifests or chart.
    sync_policy ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination Property Map
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<Property Map>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<Property Map>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<Property Map>
    Location of the application's manifests or chart.
    syncPolicy Property Map
    Controls when and how a sync will be performed.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecDestination, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecDestinationArgs

    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name string
    Name of the target cluster. Can be used instead of server.
    namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name str
    Name of the target cluster. Can be used instead of server.
    namespace str
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server str
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecIgnoreDifference, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecIgnoreDifferenceArgs

    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions List<string>
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers List<string>
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers List<string>
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions []string
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers []string
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers []string
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    group string
    The Kubernetes resource Group to match for.
    jqPathExpressions string[]
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers string[]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind string
    The Kubernetes resource Kind to match for.
    managedFieldsManagers string[]
    List of external controller manager names whose changes to fields should be ignored.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    group str
    The Kubernetes resource Group to match for.
    jq_path_expressions Sequence[str]
    List of JQ path expression strings targeting the field(s) to ignore.
    json_pointers Sequence[str]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind str
    The Kubernetes resource Kind to match for.
    managed_fields_managers Sequence[str]
    List of external controller manager names whose changes to fields should be ignored.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecInfo, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecInfoArgs

    Name string
    Name of the information.
    Value string
    Value of the information.
    Name string
    Name of the information.
    Value string
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.
    name string
    Name of the information.
    value string
    Value of the information.
    name str
    Name of the information.
    value str
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSource, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceArgs

    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelm
    Helm specific options.
    Kustomize Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelm
    Helm specific options.
    Kustomize ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomize
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomize
    Kustomize specific options.
    path string
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart str
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomize
    Kustomize specific options.
    path str
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref str
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repo_url str
    URL to the repository (Git or Helm) that contains the application manifests.
    target_revision str
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory Property Map
    Path/directory specific options.
    helm Property Map
    Helm specific options.
    kustomize Property Map
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin Property Map
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectory, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryArgs

    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.
    exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse boolean
    Whether to scan a directory recursively for manifests.
    exclude str
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include str
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet Property Map
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnet, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetArgs

    extVars List<Property Map>
    List of Jsonnet External Variables.
    libs List<String>
    Additional library search dirs.
    tlas List<Property Map>
    List of Jsonnet Top-level Arguments

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetExtVar, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetExtVarArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetTla, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceDirectoryJsonnetTlaArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelm, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmArgs

    FileParameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles List<string>
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    FileParameters []ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters []ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameter
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles []string
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter[]
    File parameters for the helm template.
    ignoreMissingValueFiles boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameter[]
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName string
    Helm release name. If omitted it will use the application name.
    skipCrds boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles string[]
    List of Helm value files to use when generating a template.
    values string
    Helm values to be passed to 'helm template', typically defined as a block.
    version string
    The Helm version to use for templating. Accepts either v2 or v3
    file_parameters Sequence[ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter]
    File parameters for the helm template.
    ignore_missing_value_files bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters Sequence[ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameter]
    Helm parameters which are passed to the helm template command upon manifest generation.
    pass_credentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    release_name str
    Helm release name. If omitted it will use the application name.
    skip_crds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    value_files Sequence[str]
    List of Helm value files to use when generating a template.
    values str
    Helm values to be passed to 'helm template', typically defined as a block.
    version str
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<Property Map>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<Property Map>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameter, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmFileParameterArgs

    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.
    name string
    Name of the Helm parameter.
    path string
    Path to the file containing the values for the Helm parameter.
    name str
    Name of the Helm parameter.
    path str
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameter, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceHelmParameterArgs

    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.
    forceString boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name string
    Name of the Helm parameter.
    value string
    Value of the Helm parameter.
    force_string bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name str
    Name of the Helm parameter.
    value str
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomize, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizeArgs

    CommonAnnotations Dictionary<string, string>
    List of additional annotations to add to rendered manifests.
    CommonLabels Dictionary<string, string>
    List of additional labels to add to rendered manifests.
    Images List<string>
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    CommonAnnotations map[string]string
    List of additional annotations to add to rendered manifests.
    CommonLabels map[string]string
    List of additional labels to add to rendered manifests.
    Images []string
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches []ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatch
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String,String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String,String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.
    commonAnnotations {[key: string]: string}
    List of additional annotations to add to rendered manifests.
    commonLabels {[key: string]: string}
    List of additional labels to add to rendered manifests.
    images string[]
    List of Kustomize image override specifications.
    namePrefix string
    Prefix appended to resources for Kustomize apps.
    nameSuffix string
    Suffix appended to resources for Kustomize apps.
    patches ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatch[]
    A list of Kustomize patches to apply.
    version string
    Version of Kustomize to use for rendering manifests.
    common_annotations Mapping[str, str]
    List of additional annotations to add to rendered manifests.
    common_labels Mapping[str, str]
    List of additional labels to add to rendered manifests.
    images Sequence[str]
    List of Kustomize image override specifications.
    name_prefix str
    Prefix appended to resources for Kustomize apps.
    name_suffix str
    Suffix appended to resources for Kustomize apps.
    patches Sequence[ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatch]
    A list of Kustomize patches to apply.
    version str
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<Property Map>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatch, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchArgs

    Target Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options Dictionary<string, bool>
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    Target ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options map[string]bool
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Map<String,Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options {[key: string]: boolean}
    Additional options.
    patch string
    Inline Kustomize patch to apply.
    path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Mapping[str, bool]
    Additional options.
    patch str
    Inline Kustomize patch to apply.
    path str
    Path to a file containing the patch to apply.
    target Property Map
    Target(s) to patch
    options Map<Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTarget, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourceKustomizePatchTargetArgs

    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.
    annotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    group string
    The Kubernetes resource Group to match for.
    kind string
    The Kubernetes resource Kind to match for.
    labelSelector string
    Label selector to use when matching the Kubernetes resource.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    version string
    The Kubernetes resource Version to match for.
    annotation_selector str
    Annotation selector to use when matching the Kubernetes resource.
    group str
    The Kubernetes resource Group to match for.
    kind str
    The Kubernetes resource Kind to match for.
    label_selector str
    Label selector to use when matching the Kubernetes resource.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    version str
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePlugin, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePluginArgs

    Envs List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    Envs []ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnv
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnv[]
    Environment variables passed to the plugin.
    name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs Sequence[ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnv]
    Environment variables passed to the plugin.
    name str
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<Property Map>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnv, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSourcePluginEnvArgs

    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.
    name string
    Name of the environment variable.
    value string
    Value of the environment variable.
    name str
    Name of the environment variable.
    value str
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicy, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyArgs

    Automated ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions []string
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions string[]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managed_namespace_metadata ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    sync_options Sequence[str]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated Property Map
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata Property Map
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry Property Map
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomated, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyAutomatedArgs

    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty boolean
    Allows apps have zero live resources.
    prune boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allow_empty bool
    Allows apps have zero live resources.
    prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    self_heal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadata, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyManagedNamespaceMetadataArgs

    Annotations Dictionary<string, string>
    Annotations to apply to the namespace.
    Labels Dictionary<string, string>
    Labels to apply to the namespace.
    Annotations map[string]string
    Annotations to apply to the namespace.
    Labels map[string]string
    Labels to apply to the namespace.
    annotations Map<String,String>
    Annotations to apply to the namespace.
    labels Map<String,String>
    Labels to apply to the namespace.
    annotations {[key: string]: string}
    Annotations to apply to the namespace.
    labels {[key: string]: string}
    Labels to apply to the namespace.
    annotations Mapping[str, str]
    Annotations to apply to the namespace.
    labels Mapping[str, str]
    Labels to apply to the namespace.
    annotations Map<String>
    Annotations to apply to the namespace.
    labels Map<String>
    Labels to apply to the namespace.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetry, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryArgs

    Backoff Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    Backoff ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit str
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff Property Map
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoff, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoffArgs

    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor string
    Factor to multiply the base duration after each failed retry.
    maxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration str
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor str
    Factor to multiply the base duration after each failed retry.
    max_duration str
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterSelector, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterSelectorArgs

    MatchExpressions List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterSelectorMatchExpression>
    A list of label selector requirements. The requirements are ANDed.
    MatchLabels Dictionary<string, string>
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    MatchExpressions []ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterSelectorMatchExpression
    A list of label selector requirements. The requirements are ANDed.
    MatchLabels map[string]string
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    matchExpressions List<ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterSelectorMatchExpression>
    A list of label selector requirements. The requirements are ANDed.
    matchLabels Map<String,String>
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    matchExpressions ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterSelectorMatchExpression[]
    A list of label selector requirements. The requirements are ANDed.
    matchLabels {[key: string]: string}
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    match_expressions Sequence[ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterSelectorMatchExpression]
    A list of label selector requirements. The requirements are ANDed.
    match_labels Mapping[str, str]
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.
    matchExpressions List<Property Map>
    A list of label selector requirements. The requirements are ANDed.
    matchLabels Map<String>
    A map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of match_expressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterSelectorMatchExpression, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterSelectorMatchExpressionArgs

    Key string
    The label key that the selector applies to.
    Operator string
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    Values List<string>
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    Key string
    The label key that the selector applies to.
    Operator string
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    Values []string
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key String
    The label key that the selector applies to.
    operator String
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values List<String>
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key string
    The label key that the selector applies to.
    operator string
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values string[]
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key str
    The label key that the selector applies to.
    operator str
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values Sequence[str]
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.
    key String
    The label key that the selector applies to.
    operator String
    A key's relationship to a set of values. Valid operators ard In, NotIn, Exists and DoesNotExist.
    values List<String>
    An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplate, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateArgs

    metadata Property Map
    Kubernetes object metadata for templated Application.
    spec Property Map
    The application specification.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateMetadata, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateMetadataArgs

    Annotations Dictionary<string, string>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers List<string>
    List of finalizers to apply to the resulting Application.
    Labels Dictionary<string, string>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    Annotations map[string]string
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers []string
    List of finalizers to apply to the resulting Application.
    Labels map[string]string
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    annotations Map<String,String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String,String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application
    annotations {[key: string]: string}
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers string[]
    List of finalizers to apply to the resulting Application.
    labels {[key: string]: string}
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name string
    Name of the resulting Application
    namespace string
    Namespace of the resulting Application
    annotations Mapping[str, str]
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers Sequence[str]
    List of finalizers to apply to the resulting Application.
    labels Mapping[str, str]
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name str
    Name of the resulting Application
    namespace str
    Namespace of the resulting Application
    annotations Map<String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpec, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecArgs

    Destination Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSource>
    Location of the application's manifests or chart.
    SyncPolicy Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    Destination ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences []ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecIgnoreDifference
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos []ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecInfo
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources []ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSource
    Location of the application's manifests or chart.
    SyncPolicy ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Integer
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSource>
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecIgnoreDifference[]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecInfo[]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project string
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSource[]
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignore_differences Sequence[ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecIgnoreDifference]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos Sequence[ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecInfo]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project str
    The project the application belongs to. Defaults to default.
    revision_history_limit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources Sequence[ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSource]
    Location of the application's manifests or chart.
    sync_policy ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination Property Map
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<Property Map>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<Property Map>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<Property Map>
    Location of the application's manifests or chart.
    syncPolicy Property Map
    Controls when and how a sync will be performed.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecDestination, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecDestinationArgs

    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name string
    Name of the target cluster. Can be used instead of server.
    namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name str
    Name of the target cluster. Can be used instead of server.
    namespace str
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server str
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecIgnoreDifference, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecIgnoreDifferenceArgs

    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions List<string>
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers List<string>
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers List<string>
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions []string
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers []string
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers []string
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    group string
    The Kubernetes resource Group to match for.
    jqPathExpressions string[]
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers string[]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind string
    The Kubernetes resource Kind to match for.
    managedFieldsManagers string[]
    List of external controller manager names whose changes to fields should be ignored.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    group str
    The Kubernetes resource Group to match for.
    jq_path_expressions Sequence[str]
    List of JQ path expression strings targeting the field(s) to ignore.
    json_pointers Sequence[str]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind str
    The Kubernetes resource Kind to match for.
    managed_fields_managers Sequence[str]
    List of external controller manager names whose changes to fields should be ignored.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecInfo, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecInfoArgs

    Name string
    Name of the information.
    Value string
    Value of the information.
    Name string
    Name of the information.
    Value string
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.
    name string
    Name of the information.
    value string
    Value of the information.
    name str
    Name of the information.
    value str
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSource, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceArgs

    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceHelm
    Helm specific options.
    Kustomize Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceHelm
    Helm specific options.
    Kustomize ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomize
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomize
    Kustomize specific options.
    path string
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart str
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomize
    Kustomize specific options.
    path str
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref str
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repo_url str
    URL to the repository (Git or Helm) that contains the application manifests.
    target_revision str
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory Property Map
    Path/directory specific options.
    helm Property Map
    Helm specific options.
    kustomize Property Map
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin Property Map
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectory, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryArgs

    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.
    exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse boolean
    Whether to scan a directory recursively for manifests.
    exclude str
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include str
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet Property Map
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnet, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnetArgs

    extVars List<Property Map>
    List of Jsonnet External Variables.
    libs List<String>
    Additional library search dirs.
    tlas List<Property Map>
    List of Jsonnet Top-level Arguments

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnetExtVar, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnetExtVarArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnetTla, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceDirectoryJsonnetTlaArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceHelm, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmArgs

    FileParameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles List<string>
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    FileParameters []ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmFileParameter
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters []ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmParameter
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles []string
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmFileParameter[]
    File parameters for the helm template.
    ignoreMissingValueFiles boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmParameter[]
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName string
    Helm release name. If omitted it will use the application name.
    skipCrds boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles string[]
    List of Helm value files to use when generating a template.
    values string
    Helm values to be passed to 'helm template', typically defined as a block.
    version string
    The Helm version to use for templating. Accepts either v2 or v3
    file_parameters Sequence[ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmFileParameter]
    File parameters for the helm template.
    ignore_missing_value_files bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters Sequence[ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmParameter]
    Helm parameters which are passed to the helm template command upon manifest generation.
    pass_credentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    release_name str
    Helm release name. If omitted it will use the application name.
    skip_crds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    value_files Sequence[str]
    List of Helm value files to use when generating a template.
    values str
    Helm values to be passed to 'helm template', typically defined as a block.
    version str
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<Property Map>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<Property Map>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmFileParameter, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmFileParameterArgs

    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.
    name string
    Name of the Helm parameter.
    path string
    Path to the file containing the values for the Helm parameter.
    name str
    Name of the Helm parameter.
    path str
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmParameter, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceHelmParameterArgs

    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.
    forceString boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name string
    Name of the Helm parameter.
    value string
    Value of the Helm parameter.
    force_string bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name str
    Name of the Helm parameter.
    value str
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomize, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizeArgs

    CommonAnnotations Dictionary<string, string>
    List of additional annotations to add to rendered manifests.
    CommonLabels Dictionary<string, string>
    List of additional labels to add to rendered manifests.
    Images List<string>
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    CommonAnnotations map[string]string
    List of additional annotations to add to rendered manifests.
    CommonLabels map[string]string
    List of additional labels to add to rendered manifests.
    Images []string
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches []ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatch
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String,String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String,String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.
    commonAnnotations {[key: string]: string}
    List of additional annotations to add to rendered manifests.
    commonLabels {[key: string]: string}
    List of additional labels to add to rendered manifests.
    images string[]
    List of Kustomize image override specifications.
    namePrefix string
    Prefix appended to resources for Kustomize apps.
    nameSuffix string
    Suffix appended to resources for Kustomize apps.
    patches ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatch[]
    A list of Kustomize patches to apply.
    version string
    Version of Kustomize to use for rendering manifests.
    common_annotations Mapping[str, str]
    List of additional annotations to add to rendered manifests.
    common_labels Mapping[str, str]
    List of additional labels to add to rendered manifests.
    images Sequence[str]
    List of Kustomize image override specifications.
    name_prefix str
    Prefix appended to resources for Kustomize apps.
    name_suffix str
    Suffix appended to resources for Kustomize apps.
    patches Sequence[ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatch]
    A list of Kustomize patches to apply.
    version str
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<Property Map>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatch, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatchArgs

    Target Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options Dictionary<string, bool>
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    Target ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options map[string]bool
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Map<String,Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options {[key: string]: boolean}
    Additional options.
    patch string
    Inline Kustomize patch to apply.
    path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Mapping[str, bool]
    Additional options.
    patch str
    Inline Kustomize patch to apply.
    path str
    Path to a file containing the patch to apply.
    target Property Map
    Target(s) to patch
    options Map<Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatchTarget, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourceKustomizePatchTargetArgs

    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.
    annotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    group string
    The Kubernetes resource Group to match for.
    kind string
    The Kubernetes resource Kind to match for.
    labelSelector string
    Label selector to use when matching the Kubernetes resource.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    version string
    The Kubernetes resource Version to match for.
    annotation_selector str
    Annotation selector to use when matching the Kubernetes resource.
    group str
    The Kubernetes resource Group to match for.
    kind str
    The Kubernetes resource Kind to match for.
    label_selector str
    Label selector to use when matching the Kubernetes resource.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    version str
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourcePlugin, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourcePluginArgs

    Envs List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    Envs []ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourcePluginEnv
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourcePluginEnv[]
    Environment variables passed to the plugin.
    name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs Sequence[ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourcePluginEnv]
    Environment variables passed to the plugin.
    name str
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<Property Map>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourcePluginEnv, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSourcePluginEnvArgs

    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.
    name string
    Name of the environment variable.
    value string
    Value of the environment variable.
    name str
    Name of the environment variable.
    value str
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicy, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyArgs

    Automated Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions List<string>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    Automated ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions []string
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions string[]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managed_namespace_metadata ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    sync_options Sequence[str]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated Property Map
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata Property Map
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry Property Map
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyAutomated, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyAutomatedArgs

    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty boolean
    Allows apps have zero live resources.
    prune boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allow_empty bool
    Allows apps have zero live resources.
    prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    self_heal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadata, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyManagedNamespaceMetadataArgs

    Annotations Dictionary<string, string>
    Annotations to apply to the namespace.
    Labels Dictionary<string, string>
    Labels to apply to the namespace.
    Annotations map[string]string
    Annotations to apply to the namespace.
    Labels map[string]string
    Labels to apply to the namespace.
    annotations Map<String,String>
    Annotations to apply to the namespace.
    labels Map<String,String>
    Labels to apply to the namespace.
    annotations {[key: string]: string}
    Annotations to apply to the namespace.
    labels {[key: string]: string}
    Labels to apply to the namespace.
    annotations Mapping[str, str]
    Annotations to apply to the namespace.
    labels Mapping[str, str]
    Labels to apply to the namespace.
    annotations Map<String>
    Annotations to apply to the namespace.
    labels Map<String>
    Labels to apply to the namespace.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetry, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetryArgs

    Backoff Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    Backoff ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit str
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff Property Map
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetryBackoff, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorClusterTemplateSpecSyncPolicyRetryBackoffArgs

    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor string
    Factor to multiply the base duration after each failed retry.
    maxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration str
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor str
    Factor to multiply the base duration after each failed retry.
    max_duration str
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGit, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitArgs

    RepoUrl string
    URL to the repository to use.
    Directories List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitDirectory>
    List of directories in the source repository to use when template the Application..
    Files List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitFile>
    List of files in the source repository to use when template the Application.
    PathParamPrefix string
    Prefix for all path-related parameter names.
    Revision string
    Revision of the source repository to use.
    Template Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplate
    Generator template. Used to override the values of the spec-level template.
    Values Dictionary<string, string>
    Arbitrary string key-value pairs to pass to the template via the values field of the git generator.
    RepoUrl string
    URL to the repository to use.
    Directories []ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitDirectory
    List of directories in the source repository to use when template the Application..
    Files []ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitFile
    List of files in the source repository to use when template the Application.
    PathParamPrefix string
    Prefix for all path-related parameter names.
    Revision string
    Revision of the source repository to use.
    Template ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplate
    Generator template. Used to override the values of the spec-level template.
    Values map[string]string
    Arbitrary string key-value pairs to pass to the template via the values field of the git generator.
    repoUrl String
    URL to the repository to use.
    directories List<ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitDirectory>
    List of directories in the source repository to use when template the Application..
    files List<ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitFile>
    List of files in the source repository to use when template the Application.
    pathParamPrefix String
    Prefix for all path-related parameter names.
    revision String
    Revision of the source repository to use.
    template ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplate
    Generator template. Used to override the values of the spec-level template.
    values Map<String,String>
    Arbitrary string key-value pairs to pass to the template via the values field of the git generator.
    repoUrl string
    URL to the repository to use.
    directories ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitDirectory[]
    List of directories in the source repository to use when template the Application..
    files ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitFile[]
    List of files in the source repository to use when template the Application.
    pathParamPrefix string
    Prefix for all path-related parameter names.
    revision string
    Revision of the source repository to use.
    template ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplate
    Generator template. Used to override the values of the spec-level template.
    values {[key: string]: string}
    Arbitrary string key-value pairs to pass to the template via the values field of the git generator.
    repo_url str
    URL to the repository to use.
    directories Sequence[ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitDirectory]
    List of directories in the source repository to use when template the Application..
    files Sequence[ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitFile]
    List of files in the source repository to use when template the Application.
    path_param_prefix str
    Prefix for all path-related parameter names.
    revision str
    Revision of the source repository to use.
    template ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplate
    Generator template. Used to override the values of the spec-level template.
    values Mapping[str, str]
    Arbitrary string key-value pairs to pass to the template via the values field of the git generator.
    repoUrl String
    URL to the repository to use.
    directories List<Property Map>
    List of directories in the source repository to use when template the Application..
    files List<Property Map>
    List of files in the source repository to use when template the Application.
    pathParamPrefix String
    Prefix for all path-related parameter names.
    revision String
    Revision of the source repository to use.
    template Property Map
    Generator template. Used to override the values of the spec-level template.
    values Map<String>
    Arbitrary string key-value pairs to pass to the template via the values field of the git generator.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitDirectory, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitDirectoryArgs

    Path string
    Path in the repository.
    Exclude bool
    Flag indicating whether or not the directory should be excluded when templating.
    Path string
    Path in the repository.
    Exclude bool
    Flag indicating whether or not the directory should be excluded when templating.
    path String
    Path in the repository.
    exclude Boolean
    Flag indicating whether or not the directory should be excluded when templating.
    path string
    Path in the repository.
    exclude boolean
    Flag indicating whether or not the directory should be excluded when templating.
    path str
    Path in the repository.
    exclude bool
    Flag indicating whether or not the directory should be excluded when templating.
    path String
    Path in the repository.
    exclude Boolean
    Flag indicating whether or not the directory should be excluded when templating.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitFile, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitFileArgs

    Path string
    Path to the file in the repository.
    Path string
    Path to the file in the repository.
    path String
    Path to the file in the repository.
    path string
    Path to the file in the repository.
    path str
    Path to the file in the repository.
    path String
    Path to the file in the repository.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplate, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateArgs

    metadata Property Map
    Kubernetes object metadata for templated Application.
    spec Property Map
    The application specification.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateMetadata, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateMetadataArgs

    Annotations Dictionary<string, string>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers List<string>
    List of finalizers to apply to the resulting Application.
    Labels Dictionary<string, string>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    Annotations map[string]string
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers []string
    List of finalizers to apply to the resulting Application.
    Labels map[string]string
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    annotations Map<String,String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String,String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application
    annotations {[key: string]: string}
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers string[]
    List of finalizers to apply to the resulting Application.
    labels {[key: string]: string}
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name string
    Name of the resulting Application
    namespace string
    Namespace of the resulting Application
    annotations Mapping[str, str]
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers Sequence[str]
    List of finalizers to apply to the resulting Application.
    labels Mapping[str, str]
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name str
    Name of the resulting Application
    namespace str
    Namespace of the resulting Application
    annotations Map<String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpec, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecArgs

    Destination Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSource>
    Location of the application's manifests or chart.
    SyncPolicy Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    Destination ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences []ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecIgnoreDifference
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos []ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecInfo
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources []ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSource
    Location of the application's manifests or chart.
    SyncPolicy ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Integer
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSource>
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecIgnoreDifference[]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecInfo[]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project string
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSource[]
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignore_differences Sequence[ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecIgnoreDifference]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos Sequence[ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecInfo]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project str
    The project the application belongs to. Defaults to default.
    revision_history_limit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources Sequence[ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSource]
    Location of the application's manifests or chart.
    sync_policy ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination Property Map
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<Property Map>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<Property Map>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<Property Map>
    Location of the application's manifests or chart.
    syncPolicy Property Map
    Controls when and how a sync will be performed.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecDestination, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecDestinationArgs

    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name string
    Name of the target cluster. Can be used instead of server.
    namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name str
    Name of the target cluster. Can be used instead of server.
    namespace str
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server str
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecIgnoreDifference, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecIgnoreDifferenceArgs

    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions List<string>
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers List<string>
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers List<string>
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions []string
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers []string
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers []string
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    group string
    The Kubernetes resource Group to match for.
    jqPathExpressions string[]
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers string[]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind string
    The Kubernetes resource Kind to match for.
    managedFieldsManagers string[]
    List of external controller manager names whose changes to fields should be ignored.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    group str
    The Kubernetes resource Group to match for.
    jq_path_expressions Sequence[str]
    List of JQ path expression strings targeting the field(s) to ignore.
    json_pointers Sequence[str]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind str
    The Kubernetes resource Kind to match for.
    managed_fields_managers Sequence[str]
    List of external controller manager names whose changes to fields should be ignored.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecInfo, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecInfoArgs

    Name string
    Name of the information.
    Value string
    Value of the information.
    Name string
    Name of the information.
    Value string
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.
    name string
    Name of the information.
    value string
    Value of the information.
    name str
    Name of the information.
    value str
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSource, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceArgs

    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceHelm
    Helm specific options.
    Kustomize Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceHelm
    Helm specific options.
    Kustomize ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceKustomize
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceKustomize
    Kustomize specific options.
    path string
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart str
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceKustomize
    Kustomize specific options.
    path str
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref str
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repo_url str
    URL to the repository (Git or Helm) that contains the application manifests.
    target_revision str
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory Property Map
    Path/directory specific options.
    helm Property Map
    Helm specific options.
    kustomize Property Map
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin Property Map
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceDirectory, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryArgs

    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.
    exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse boolean
    Whether to scan a directory recursively for manifests.
    exclude str
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include str
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet Property Map
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnet, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnetArgs

    extVars List<Property Map>
    List of Jsonnet External Variables.
    libs List<String>
    Additional library search dirs.
    tlas List<Property Map>
    List of Jsonnet Top-level Arguments

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnetExtVar, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnetExtVarArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnetTla, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceDirectoryJsonnetTlaArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceHelm, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceHelmArgs

    FileParameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles List<string>
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    FileParameters []ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceHelmFileParameter
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters []ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceHelmParameter
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles []string
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceHelmFileParameter[]
    File parameters for the helm template.
    ignoreMissingValueFiles boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceHelmParameter[]
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName string
    Helm release name. If omitted it will use the application name.
    skipCrds boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles string[]
    List of Helm value files to use when generating a template.
    values string
    Helm values to be passed to 'helm template', typically defined as a block.
    version string
    The Helm version to use for templating. Accepts either v2 or v3
    file_parameters Sequence[ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceHelmFileParameter]
    File parameters for the helm template.
    ignore_missing_value_files bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters Sequence[ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceHelmParameter]
    Helm parameters which are passed to the helm template command upon manifest generation.
    pass_credentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    release_name str
    Helm release name. If omitted it will use the application name.
    skip_crds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    value_files Sequence[str]
    List of Helm value files to use when generating a template.
    values str
    Helm values to be passed to 'helm template', typically defined as a block.
    version str
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<Property Map>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<Property Map>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceHelmFileParameter, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceHelmFileParameterArgs

    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.
    name string
    Name of the Helm parameter.
    path string
    Path to the file containing the values for the Helm parameter.
    name str
    Name of the Helm parameter.
    path str
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceHelmParameter, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceHelmParameterArgs

    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.
    forceString boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name string
    Name of the Helm parameter.
    value string
    Value of the Helm parameter.
    force_string bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name str
    Name of the Helm parameter.
    value str
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceKustomize, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizeArgs

    CommonAnnotations Dictionary<string, string>
    List of additional annotations to add to rendered manifests.
    CommonLabels Dictionary<string, string>
    List of additional labels to add to rendered manifests.
    Images List<string>
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    CommonAnnotations map[string]string
    List of additional annotations to add to rendered manifests.
    CommonLabels map[string]string
    List of additional labels to add to rendered manifests.
    Images []string
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches []ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatch
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String,String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String,String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.
    commonAnnotations {[key: string]: string}
    List of additional annotations to add to rendered manifests.
    commonLabels {[key: string]: string}
    List of additional labels to add to rendered manifests.
    images string[]
    List of Kustomize image override specifications.
    namePrefix string
    Prefix appended to resources for Kustomize apps.
    nameSuffix string
    Suffix appended to resources for Kustomize apps.
    patches ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatch[]
    A list of Kustomize patches to apply.
    version string
    Version of Kustomize to use for rendering manifests.
    common_annotations Mapping[str, str]
    List of additional annotations to add to rendered manifests.
    common_labels Mapping[str, str]
    List of additional labels to add to rendered manifests.
    images Sequence[str]
    List of Kustomize image override specifications.
    name_prefix str
    Prefix appended to resources for Kustomize apps.
    name_suffix str
    Suffix appended to resources for Kustomize apps.
    patches Sequence[ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatch]
    A list of Kustomize patches to apply.
    version str
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<Property Map>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatch, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatchArgs

    Target Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options Dictionary<string, bool>
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    Target ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options map[string]bool
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Map<String,Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options {[key: string]: boolean}
    Additional options.
    patch string
    Inline Kustomize patch to apply.
    path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Mapping[str, bool]
    Additional options.
    patch str
    Inline Kustomize patch to apply.
    path str
    Path to a file containing the patch to apply.
    target Property Map
    Target(s) to patch
    options Map<Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatchTarget, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourceKustomizePatchTargetArgs

    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.
    annotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    group string
    The Kubernetes resource Group to match for.
    kind string
    The Kubernetes resource Kind to match for.
    labelSelector string
    Label selector to use when matching the Kubernetes resource.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    version string
    The Kubernetes resource Version to match for.
    annotation_selector str
    Annotation selector to use when matching the Kubernetes resource.
    group str
    The Kubernetes resource Group to match for.
    kind str
    The Kubernetes resource Kind to match for.
    label_selector str
    Label selector to use when matching the Kubernetes resource.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    version str
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourcePlugin, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourcePluginArgs

    Envs List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    Envs []ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourcePluginEnv
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourcePluginEnv[]
    Environment variables passed to the plugin.
    name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs Sequence[ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourcePluginEnv]
    Environment variables passed to the plugin.
    name str
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<Property Map>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourcePluginEnv, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSourcePluginEnvArgs

    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.
    name string
    Name of the environment variable.
    value string
    Value of the environment variable.
    name str
    Name of the environment variable.
    value str
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicy, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyArgs

    Automated Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions List<string>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    Automated ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions []string
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions string[]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managed_namespace_metadata ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    sync_options Sequence[str]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated Property Map
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata Property Map
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry Property Map
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyAutomated, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyAutomatedArgs

    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty boolean
    Allows apps have zero live resources.
    prune boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allow_empty bool
    Allows apps have zero live resources.
    prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    self_heal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadata, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyManagedNamespaceMetadataArgs

    Annotations Dictionary<string, string>
    Annotations to apply to the namespace.
    Labels Dictionary<string, string>
    Labels to apply to the namespace.
    Annotations map[string]string
    Annotations to apply to the namespace.
    Labels map[string]string
    Labels to apply to the namespace.
    annotations Map<String,String>
    Annotations to apply to the namespace.
    labels Map<String,String>
    Labels to apply to the namespace.
    annotations {[key: string]: string}
    Annotations to apply to the namespace.
    labels {[key: string]: string}
    Labels to apply to the namespace.
    annotations Mapping[str, str]
    Annotations to apply to the namespace.
    labels Mapping[str, str]
    Labels to apply to the namespace.
    annotations Map<String>
    Annotations to apply to the namespace.
    labels Map<String>
    Labels to apply to the namespace.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetry, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetryArgs

    Backoff Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    Backoff ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit str
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff Property Map
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetryBackoff, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorGitTemplateSpecSyncPolicyRetryBackoffArgs

    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor string
    Factor to multiply the base duration after each failed retry.
    maxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration str
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor str
    Factor to multiply the base duration after each failed retry.
    max_duration str
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorList, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListArgs

    Elements List<ImmutableDictionary<string, string>>
    List of key/value pairs to pass as parameters into the template
    Template Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplate
    Generator template. Used to override the values of the spec-level template.
    Elements []map[string]string
    List of key/value pairs to pass as parameters into the template
    Template ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplate
    Generator template. Used to override the values of the spec-level template.
    elements List<Map<String,String>>
    List of key/value pairs to pass as parameters into the template
    template ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplate
    Generator template. Used to override the values of the spec-level template.
    elements {[key: string]: string}[]
    List of key/value pairs to pass as parameters into the template
    template ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplate
    Generator template. Used to override the values of the spec-level template.
    elements Sequence[Mapping[str, str]]
    List of key/value pairs to pass as parameters into the template
    template ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplate
    Generator template. Used to override the values of the spec-level template.
    elements List<Map<String>>
    List of key/value pairs to pass as parameters into the template
    template Property Map
    Generator template. Used to override the values of the spec-level template.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplate, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateArgs

    metadata Property Map
    Kubernetes object metadata for templated Application.
    spec Property Map
    The application specification.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateMetadata, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateMetadataArgs

    Annotations Dictionary<string, string>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers List<string>
    List of finalizers to apply to the resulting Application.
    Labels Dictionary<string, string>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    Annotations map[string]string
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers []string
    List of finalizers to apply to the resulting Application.
    Labels map[string]string
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    annotations Map<String,String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String,String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application
    annotations {[key: string]: string}
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers string[]
    List of finalizers to apply to the resulting Application.
    labels {[key: string]: string}
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name string
    Name of the resulting Application
    namespace string
    Namespace of the resulting Application
    annotations Mapping[str, str]
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers Sequence[str]
    List of finalizers to apply to the resulting Application.
    labels Mapping[str, str]
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name str
    Name of the resulting Application
    namespace str
    Namespace of the resulting Application
    annotations Map<String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpec, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecArgs

    Destination Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSource>
    Location of the application's manifests or chart.
    SyncPolicy Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    Destination ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences []ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecIgnoreDifference
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos []ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecInfo
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources []ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSource
    Location of the application's manifests or chart.
    SyncPolicy ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Integer
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSource>
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecIgnoreDifference[]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecInfo[]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project string
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSource[]
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignore_differences Sequence[ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecIgnoreDifference]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos Sequence[ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecInfo]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project str
    The project the application belongs to. Defaults to default.
    revision_history_limit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources Sequence[ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSource]
    Location of the application's manifests or chart.
    sync_policy ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination Property Map
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<Property Map>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<Property Map>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<Property Map>
    Location of the application's manifests or chart.
    syncPolicy Property Map
    Controls when and how a sync will be performed.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecDestination, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecDestinationArgs

    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name string
    Name of the target cluster. Can be used instead of server.
    namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name str
    Name of the target cluster. Can be used instead of server.
    namespace str
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server str
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecIgnoreDifference, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecIgnoreDifferenceArgs

    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions List<string>
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers List<string>
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers List<string>
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions []string
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers []string
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers []string
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    group string
    The Kubernetes resource Group to match for.
    jqPathExpressions string[]
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers string[]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind string
    The Kubernetes resource Kind to match for.
    managedFieldsManagers string[]
    List of external controller manager names whose changes to fields should be ignored.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    group str
    The Kubernetes resource Group to match for.
    jq_path_expressions Sequence[str]
    List of JQ path expression strings targeting the field(s) to ignore.
    json_pointers Sequence[str]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind str
    The Kubernetes resource Kind to match for.
    managed_fields_managers Sequence[str]
    List of external controller manager names whose changes to fields should be ignored.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecInfo, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecInfoArgs

    Name string
    Name of the information.
    Value string
    Value of the information.
    Name string
    Name of the information.
    Value string
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.
    name string
    Name of the information.
    value string
    Value of the information.
    name str
    Name of the information.
    value str
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSource, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceArgs

    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceHelm
    Helm specific options.
    Kustomize Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceHelm
    Helm specific options.
    Kustomize ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceKustomize
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceKustomize
    Kustomize specific options.
    path string
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart str
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceKustomize
    Kustomize specific options.
    path str
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref str
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repo_url str
    URL to the repository (Git or Helm) that contains the application manifests.
    target_revision str
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory Property Map
    Path/directory specific options.
    helm Property Map
    Helm specific options.
    kustomize Property Map
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin Property Map
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceDirectory, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryArgs

    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.
    exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse boolean
    Whether to scan a directory recursively for manifests.
    exclude str
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include str
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet Property Map
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnet, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnetArgs

    extVars List<Property Map>
    List of Jsonnet External Variables.
    libs List<String>
    Additional library search dirs.
    tlas List<Property Map>
    List of Jsonnet Top-level Arguments

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnetExtVar, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnetExtVarArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnetTla, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceDirectoryJsonnetTlaArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceHelm, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceHelmArgs

    FileParameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles List<string>
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    FileParameters []ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceHelmFileParameter
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters []ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceHelmParameter
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles []string
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceHelmFileParameter[]
    File parameters for the helm template.
    ignoreMissingValueFiles boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceHelmParameter[]
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName string
    Helm release name. If omitted it will use the application name.
    skipCrds boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles string[]
    List of Helm value files to use when generating a template.
    values string
    Helm values to be passed to 'helm template', typically defined as a block.
    version string
    The Helm version to use for templating. Accepts either v2 or v3
    file_parameters Sequence[ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceHelmFileParameter]
    File parameters for the helm template.
    ignore_missing_value_files bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters Sequence[ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceHelmParameter]
    Helm parameters which are passed to the helm template command upon manifest generation.
    pass_credentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    release_name str
    Helm release name. If omitted it will use the application name.
    skip_crds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    value_files Sequence[str]
    List of Helm value files to use when generating a template.
    values str
    Helm values to be passed to 'helm template', typically defined as a block.
    version str
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<Property Map>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<Property Map>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceHelmFileParameter, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceHelmFileParameterArgs

    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.
    name string
    Name of the Helm parameter.
    path string
    Path to the file containing the values for the Helm parameter.
    name str
    Name of the Helm parameter.
    path str
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceHelmParameter, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceHelmParameterArgs

    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.
    forceString boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name string
    Name of the Helm parameter.
    value string
    Value of the Helm parameter.
    force_string bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name str
    Name of the Helm parameter.
    value str
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceKustomize, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceKustomizeArgs

    CommonAnnotations Dictionary<string, string>
    List of additional annotations to add to rendered manifests.
    CommonLabels Dictionary<string, string>
    List of additional labels to add to rendered manifests.
    Images List<string>
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    CommonAnnotations map[string]string
    List of additional annotations to add to rendered manifests.
    CommonLabels map[string]string
    List of additional labels to add to rendered manifests.
    Images []string
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches []ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatch
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String,String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String,String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.
    commonAnnotations {[key: string]: string}
    List of additional annotations to add to rendered manifests.
    commonLabels {[key: string]: string}
    List of additional labels to add to rendered manifests.
    images string[]
    List of Kustomize image override specifications.
    namePrefix string
    Prefix appended to resources for Kustomize apps.
    nameSuffix string
    Suffix appended to resources for Kustomize apps.
    patches ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatch[]
    A list of Kustomize patches to apply.
    version string
    Version of Kustomize to use for rendering manifests.
    common_annotations Mapping[str, str]
    List of additional annotations to add to rendered manifests.
    common_labels Mapping[str, str]
    List of additional labels to add to rendered manifests.
    images Sequence[str]
    List of Kustomize image override specifications.
    name_prefix str
    Prefix appended to resources for Kustomize apps.
    name_suffix str
    Suffix appended to resources for Kustomize apps.
    patches Sequence[ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatch]
    A list of Kustomize patches to apply.
    version str
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<Property Map>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatch, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatchArgs

    Target Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options Dictionary<string, bool>
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    Target ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options map[string]bool
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Map<String,Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options {[key: string]: boolean}
    Additional options.
    patch string
    Inline Kustomize patch to apply.
    path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Mapping[str, bool]
    Additional options.
    patch str
    Inline Kustomize patch to apply.
    path str
    Path to a file containing the patch to apply.
    target Property Map
    Target(s) to patch
    options Map<Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatchTarget, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourceKustomizePatchTargetArgs

    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.
    annotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    group string
    The Kubernetes resource Group to match for.
    kind string
    The Kubernetes resource Kind to match for.
    labelSelector string
    Label selector to use when matching the Kubernetes resource.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    version string
    The Kubernetes resource Version to match for.
    annotation_selector str
    Annotation selector to use when matching the Kubernetes resource.
    group str
    The Kubernetes resource Group to match for.
    kind str
    The Kubernetes resource Kind to match for.
    label_selector str
    Label selector to use when matching the Kubernetes resource.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    version str
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourcePlugin, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourcePluginArgs

    Envs List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    Envs []ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourcePluginEnv
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourcePluginEnv[]
    Environment variables passed to the plugin.
    name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs Sequence[ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourcePluginEnv]
    Environment variables passed to the plugin.
    name str
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<Property Map>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourcePluginEnv, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSourcePluginEnvArgs

    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.
    name string
    Name of the environment variable.
    value string
    Value of the environment variable.
    name str
    Name of the environment variable.
    value str
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicy, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicyArgs

    Automated Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions List<string>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    Automated ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions []string
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions string[]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managed_namespace_metadata ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    sync_options Sequence[str]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated Property Map
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata Property Map
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry Property Map
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicyAutomated, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicyAutomatedArgs

    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty boolean
    Allows apps have zero live resources.
    prune boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allow_empty bool
    Allows apps have zero live resources.
    prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    self_heal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadata, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicyManagedNamespaceMetadataArgs

    Annotations Dictionary<string, string>
    Annotations to apply to the namespace.
    Labels Dictionary<string, string>
    Labels to apply to the namespace.
    Annotations map[string]string
    Annotations to apply to the namespace.
    Labels map[string]string
    Labels to apply to the namespace.
    annotations Map<String,String>
    Annotations to apply to the namespace.
    labels Map<String,String>
    Labels to apply to the namespace.
    annotations {[key: string]: string}
    Annotations to apply to the namespace.
    labels {[key: string]: string}
    Labels to apply to the namespace.
    annotations Mapping[str, str]
    Annotations to apply to the namespace.
    labels Mapping[str, str]
    Labels to apply to the namespace.
    annotations Map<String>
    Annotations to apply to the namespace.
    labels Map<String>
    Labels to apply to the namespace.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetry, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetryArgs

    Backoff Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    Backoff ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit str
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff Property Map
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetryBackoff, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorListTemplateSpecSyncPolicyRetryBackoffArgs

    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor string
    Factor to multiply the base duration after each failed retry.
    maxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration str
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor str
    Factor to multiply the base duration after each failed retry.
    max_duration str
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequest, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestArgs

    BitbucketServer Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestBitbucketServer
    Fetch pull requests from a repo hosted on a Bitbucket Server.
    Filters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestFilter>
    Filters allow selecting which pull requests to generate for.
    Gitea Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGitea
    Specify the repository from which to fetch the Gitea Pull requests.
    Github Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGithub
    Specify the repository from which to fetch the GitHub Pull requests.
    Gitlab Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGitlab
    Specify the project from which to fetch the GitLab merge requests.
    RequeueAfterSeconds string
    How often to check for changes (in seconds). Default: 30min.
    Template Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplate
    Generator template. Used to override the values of the spec-level template.
    BitbucketServer ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestBitbucketServer
    Fetch pull requests from a repo hosted on a Bitbucket Server.
    Filters []ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestFilter
    Filters allow selecting which pull requests to generate for.
    Gitea ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGitea
    Specify the repository from which to fetch the Gitea Pull requests.
    Github ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGithub
    Specify the repository from which to fetch the GitHub Pull requests.
    Gitlab ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGitlab
    Specify the project from which to fetch the GitLab merge requests.
    RequeueAfterSeconds string
    How often to check for changes (in seconds). Default: 30min.
    Template ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplate
    Generator template. Used to override the values of the spec-level template.
    bitbucketServer ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestBitbucketServer
    Fetch pull requests from a repo hosted on a Bitbucket Server.
    filters List<ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestFilter>
    Filters allow selecting which pull requests to generate for.
    gitea ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGitea
    Specify the repository from which to fetch the Gitea Pull requests.
    github ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGithub
    Specify the repository from which to fetch the GitHub Pull requests.
    gitlab ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGitlab
    Specify the project from which to fetch the GitLab merge requests.
    requeueAfterSeconds String
    How often to check for changes (in seconds). Default: 30min.
    template ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplate
    Generator template. Used to override the values of the spec-level template.
    bitbucketServer ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestBitbucketServer
    Fetch pull requests from a repo hosted on a Bitbucket Server.
    filters ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestFilter[]
    Filters allow selecting which pull requests to generate for.
    gitea ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGitea
    Specify the repository from which to fetch the Gitea Pull requests.
    github ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGithub
    Specify the repository from which to fetch the GitHub Pull requests.
    gitlab ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGitlab
    Specify the project from which to fetch the GitLab merge requests.
    requeueAfterSeconds string
    How often to check for changes (in seconds). Default: 30min.
    template ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplate
    Generator template. Used to override the values of the spec-level template.
    bitbucket_server ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestBitbucketServer
    Fetch pull requests from a repo hosted on a Bitbucket Server.
    filters Sequence[ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestFilter]
    Filters allow selecting which pull requests to generate for.
    gitea ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGitea
    Specify the repository from which to fetch the Gitea Pull requests.
    github ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGithub
    Specify the repository from which to fetch the GitHub Pull requests.
    gitlab ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGitlab
    Specify the project from which to fetch the GitLab merge requests.
    requeue_after_seconds str
    How often to check for changes (in seconds). Default: 30min.
    template ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplate
    Generator template. Used to override the values of the spec-level template.
    bitbucketServer Property Map
    Fetch pull requests from a repo hosted on a Bitbucket Server.
    filters List<Property Map>
    Filters allow selecting which pull requests to generate for.
    gitea Property Map
    Specify the repository from which to fetch the Gitea Pull requests.
    github Property Map
    Specify the repository from which to fetch the GitHub Pull requests.
    gitlab Property Map
    Specify the project from which to fetch the GitLab merge requests.
    requeueAfterSeconds String
    How often to check for changes (in seconds). Default: 30min.
    template Property Map
    Generator template. Used to override the values of the spec-level template.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestBitbucketServer, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestBitbucketServerArgs

    Api string
    The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest.
    Project string
    Project to scan.
    Repo string
    Repo name to scan.
    BasicAuth Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestBitbucketServerBasicAuth
    Credentials for Basic auth.
    Api string
    The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest.
    Project string
    Project to scan.
    Repo string
    Repo name to scan.
    BasicAuth ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestBitbucketServerBasicAuth
    Credentials for Basic auth.
    api String
    The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest.
    project String
    Project to scan.
    repo String
    Repo name to scan.
    basicAuth ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestBitbucketServerBasicAuth
    Credentials for Basic auth.
    api string
    The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest.
    project string
    Project to scan.
    repo string
    Repo name to scan.
    basicAuth ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestBitbucketServerBasicAuth
    Credentials for Basic auth.
    api str
    The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest.
    project str
    Project to scan.
    repo str
    Repo name to scan.
    basic_auth ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestBitbucketServerBasicAuth
    Credentials for Basic auth.
    api String
    The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest.
    project String
    Project to scan.
    repo String
    Repo name to scan.
    basicAuth Property Map
    Credentials for Basic auth.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestBitbucketServerBasicAuth, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestBitbucketServerBasicAuthArgs

    passwordRef Property Map
    Password (or personal access token) reference.
    username String
    Username for Basic auth.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestBitbucketServerBasicAuthPasswordRef, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestBitbucketServerBasicAuthPasswordRefArgs

    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.
    key string
    Key containing information in Kubernetes Secret.
    secretName string
    Name of Kubernetes Secret.
    key str
    Key containing information in Kubernetes Secret.
    secret_name str
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestFilter, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestFilterArgs

    BranchMatch string
    A regex which must match the branch name.
    BranchMatch string
    A regex which must match the branch name.
    branchMatch String
    A regex which must match the branch name.
    branchMatch string
    A regex which must match the branch name.
    branch_match str
    A regex which must match the branch name.
    branchMatch String
    A regex which must match the branch name.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGitea, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGiteaArgs

    Api string
    The Gitea API URL to talk to.
    Owner string
    Gitea org or user to scan.
    Repo string
    Gitea repo name to scan.
    Insecure bool
    Allow insecure tls, for self-signed certificates; default: false.
    TokenRef Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGiteaTokenRef
    Authentication token reference.
    Api string
    The Gitea API URL to talk to.
    Owner string
    Gitea org or user to scan.
    Repo string
    Gitea repo name to scan.
    Insecure bool
    Allow insecure tls, for self-signed certificates; default: false.
    TokenRef ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGiteaTokenRef
    Authentication token reference.
    api String
    The Gitea API URL to talk to.
    owner String
    Gitea org or user to scan.
    repo String
    Gitea repo name to scan.
    insecure Boolean
    Allow insecure tls, for self-signed certificates; default: false.
    tokenRef ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGiteaTokenRef
    Authentication token reference.
    api string
    The Gitea API URL to talk to.
    owner string
    Gitea org or user to scan.
    repo string
    Gitea repo name to scan.
    insecure boolean
    Allow insecure tls, for self-signed certificates; default: false.
    tokenRef ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGiteaTokenRef
    Authentication token reference.
    api str
    The Gitea API URL to talk to.
    owner str
    Gitea org or user to scan.
    repo str
    Gitea repo name to scan.
    insecure bool
    Allow insecure tls, for self-signed certificates; default: false.
    token_ref ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGiteaTokenRef
    Authentication token reference.
    api String
    The Gitea API URL to talk to.
    owner String
    Gitea org or user to scan.
    repo String
    Gitea repo name to scan.
    insecure Boolean
    Allow insecure tls, for self-signed certificates; default: false.
    tokenRef Property Map
    Authentication token reference.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGiteaTokenRef, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGiteaTokenRefArgs

    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.
    key string
    Key containing information in Kubernetes Secret.
    secretName string
    Name of Kubernetes Secret.
    key str
    Key containing information in Kubernetes Secret.
    secret_name str
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGithub, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGithubArgs

    Owner string
    GitHub org or user to scan.
    Repo string
    GitHub repo name to scan.
    Api string
    The GitHub API URL to talk to. Default https://api.github.com/.
    AppSecretName string
    Reference to a GitHub App repo-creds secret with permission to access pull requests.
    Labels List<string>
    Labels is used to filter the PRs that you want to target.
    TokenRef Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGithubTokenRef
    Authentication token reference.
    Owner string
    GitHub org or user to scan.
    Repo string
    GitHub repo name to scan.
    Api string
    The GitHub API URL to talk to. Default https://api.github.com/.
    AppSecretName string
    Reference to a GitHub App repo-creds secret with permission to access pull requests.
    Labels []string
    Labels is used to filter the PRs that you want to target.
    TokenRef ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGithubTokenRef
    Authentication token reference.
    owner String
    GitHub org or user to scan.
    repo String
    GitHub repo name to scan.
    api String
    The GitHub API URL to talk to. Default https://api.github.com/.
    appSecretName String
    Reference to a GitHub App repo-creds secret with permission to access pull requests.
    labels List<String>
    Labels is used to filter the PRs that you want to target.
    tokenRef ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGithubTokenRef
    Authentication token reference.
    owner string
    GitHub org or user to scan.
    repo string
    GitHub repo name to scan.
    api string
    The GitHub API URL to talk to. Default https://api.github.com/.
    appSecretName string
    Reference to a GitHub App repo-creds secret with permission to access pull requests.
    labels string[]
    Labels is used to filter the PRs that you want to target.
    tokenRef ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGithubTokenRef
    Authentication token reference.
    owner str
    GitHub org or user to scan.
    repo str
    GitHub repo name to scan.
    api str
    The GitHub API URL to talk to. Default https://api.github.com/.
    app_secret_name str
    Reference to a GitHub App repo-creds secret with permission to access pull requests.
    labels Sequence[str]
    Labels is used to filter the PRs that you want to target.
    token_ref ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGithubTokenRef
    Authentication token reference.
    owner String
    GitHub org or user to scan.
    repo String
    GitHub repo name to scan.
    api String
    The GitHub API URL to talk to. Default https://api.github.com/.
    appSecretName String
    Reference to a GitHub App repo-creds secret with permission to access pull requests.
    labels List<String>
    Labels is used to filter the PRs that you want to target.
    tokenRef Property Map
    Authentication token reference.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGithubTokenRef, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGithubTokenRefArgs

    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.
    key string
    Key containing information in Kubernetes Secret.
    secretName string
    Name of Kubernetes Secret.
    key str
    Key containing information in Kubernetes Secret.
    secret_name str
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGitlab, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGitlabArgs

    Project string
    GitLab project to scan.
    Api string
    The GitLab API URL to talk to. If blank, uses https://gitlab.com/.
    Labels List<string>
    Labels is used to filter the PRs that you want to target.
    PullRequestState string
    additional MRs filter to get only those with a certain state. Default: "" (all states).
    TokenRef Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGitlabTokenRef
    Authentication token reference.
    Project string
    GitLab project to scan.
    Api string
    The GitLab API URL to talk to. If blank, uses https://gitlab.com/.
    Labels []string
    Labels is used to filter the PRs that you want to target.
    PullRequestState string
    additional MRs filter to get only those with a certain state. Default: "" (all states).
    TokenRef ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGitlabTokenRef
    Authentication token reference.
    project String
    GitLab project to scan.
    api String
    The GitLab API URL to talk to. If blank, uses https://gitlab.com/.
    labels List<String>
    Labels is used to filter the PRs that you want to target.
    pullRequestState String
    additional MRs filter to get only those with a certain state. Default: "" (all states).
    tokenRef ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGitlabTokenRef
    Authentication token reference.
    project string
    GitLab project to scan.
    api string
    The GitLab API URL to talk to. If blank, uses https://gitlab.com/.
    labels string[]
    Labels is used to filter the PRs that you want to target.
    pullRequestState string
    additional MRs filter to get only those with a certain state. Default: "" (all states).
    tokenRef ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGitlabTokenRef
    Authentication token reference.
    project str
    GitLab project to scan.
    api str
    The GitLab API URL to talk to. If blank, uses https://gitlab.com/.
    labels Sequence[str]
    Labels is used to filter the PRs that you want to target.
    pull_request_state str
    additional MRs filter to get only those with a certain state. Default: "" (all states).
    token_ref ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGitlabTokenRef
    Authentication token reference.
    project String
    GitLab project to scan.
    api String
    The GitLab API URL to talk to. If blank, uses https://gitlab.com/.
    labels List<String>
    Labels is used to filter the PRs that you want to target.
    pullRequestState String
    additional MRs filter to get only those with a certain state. Default: "" (all states).
    tokenRef Property Map
    Authentication token reference.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGitlabTokenRef, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestGitlabTokenRefArgs

    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.
    key string
    Key containing information in Kubernetes Secret.
    secretName string
    Name of Kubernetes Secret.
    key str
    Key containing information in Kubernetes Secret.
    secret_name str
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplate, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateArgs

    metadata Property Map
    Kubernetes object metadata for templated Application.
    spec Property Map
    The application specification.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateMetadata, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateMetadataArgs

    Annotations Dictionary<string, string>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers List<string>
    List of finalizers to apply to the resulting Application.
    Labels Dictionary<string, string>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    Annotations map[string]string
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    Finalizers []string
    List of finalizers to apply to the resulting Application.
    Labels map[string]string
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    Name string
    Name of the resulting Application
    Namespace string
    Namespace of the resulting Application
    annotations Map<String,String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String,String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application
    annotations {[key: string]: string}
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers string[]
    List of finalizers to apply to the resulting Application.
    labels {[key: string]: string}
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name string
    Name of the resulting Application
    namespace string
    Namespace of the resulting Application
    annotations Mapping[str, str]
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers Sequence[str]
    List of finalizers to apply to the resulting Application.
    labels Mapping[str, str]
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name str
    Name of the resulting Application
    namespace str
    Namespace of the resulting Application
    annotations Map<String>
    An unstructured key value map that may be used to store arbitrary metadata for the resulting Application.
    finalizers List<String>
    List of finalizers to apply to the resulting Application.
    labels Map<String>
    Map of string keys and values that can be used to organize and categorize (scope and select) the resulting Application.
    name String
    Name of the resulting Application
    namespace String
    Namespace of the resulting Application

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpec, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecArgs

    Destination Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSource>
    Location of the application's manifests or chart.
    SyncPolicy Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    Destination ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    IgnoreDifferences []ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecIgnoreDifference
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    Infos []ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecInfo
    List of information (URLs, email addresses, and plain text) that relates to the application.
    Project string
    The project the application belongs to. Defaults to default.
    RevisionHistoryLimit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    Sources []ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSource
    Location of the application's manifests or chart.
    SyncPolicy ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecIgnoreDifference>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecInfo>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Integer
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSource>
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecIgnoreDifference[]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecInfo[]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project string
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSource[]
    Location of the application's manifests or chart.
    syncPolicy ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecDestination
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignore_differences Sequence[ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecIgnoreDifference]
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos Sequence[ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecInfo]
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project str
    The project the application belongs to. Defaults to default.
    revision_history_limit int
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources Sequence[ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSource]
    Location of the application's manifests or chart.
    sync_policy ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicy
    Controls when and how a sync will be performed.
    destination Property Map
    Reference to the Kubernetes server and namespace in which the application will be deployed.
    ignoreDifferences List<Property Map>
    Resources and their fields which should be ignored during comparison. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/diffing/#application-level-configuration.
    infos List<Property Map>
    List of information (URLs, email addresses, and plain text) that relates to the application.
    project String
    The project the application belongs to. Defaults to default.
    revisionHistoryLimit Number
    Limits the number of items kept in the application's revision history, which is used for informational purposes as well as for rollbacks to previous versions. This should only be changed in exceptional circumstances. Setting to zero will store no history. This will reduce storage used. Increasing will increase the space used to store the history, so we do not recommend increasing it. Default is 10.
    sources List<Property Map>
    Location of the application's manifests or chart.
    syncPolicy Property Map
    Controls when and how a sync will be performed.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecDestination, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecDestinationArgs

    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    Name string
    Name of the target cluster. Can be used instead of server.
    Namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    Server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name string
    Name of the target cluster. Can be used instead of server.
    namespace string
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server string
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name str
    Name of the target cluster. Can be used instead of server.
    namespace str
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server str
    URL of the target cluster and must be set to the Kubernetes control plane API.
    name String
    Name of the target cluster. Can be used instead of server.
    namespace String
    Target namespace for the application's resources. The namespace will only be set for namespace-scoped resources that have not set a value for .metadata.namespace.
    server String
    URL of the target cluster and must be set to the Kubernetes control plane API.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecIgnoreDifference, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecIgnoreDifferenceArgs

    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions List<string>
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers List<string>
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers List<string>
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Group string
    The Kubernetes resource Group to match for.
    JqPathExpressions []string
    List of JQ path expression strings targeting the field(s) to ignore.
    JsonPointers []string
    List of JSONPaths strings targeting the field(s) to ignore.
    Kind string
    The Kubernetes resource Kind to match for.
    ManagedFieldsManagers []string
    List of external controller manager names whose changes to fields should be ignored.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    group string
    The Kubernetes resource Group to match for.
    jqPathExpressions string[]
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers string[]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind string
    The Kubernetes resource Kind to match for.
    managedFieldsManagers string[]
    List of external controller manager names whose changes to fields should be ignored.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    group str
    The Kubernetes resource Group to match for.
    jq_path_expressions Sequence[str]
    List of JQ path expression strings targeting the field(s) to ignore.
    json_pointers Sequence[str]
    List of JSONPaths strings targeting the field(s) to ignore.
    kind str
    The Kubernetes resource Kind to match for.
    managed_fields_managers Sequence[str]
    List of external controller manager names whose changes to fields should be ignored.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    group String
    The Kubernetes resource Group to match for.
    jqPathExpressions List<String>
    List of JQ path expression strings targeting the field(s) to ignore.
    jsonPointers List<String>
    List of JSONPaths strings targeting the field(s) to ignore.
    kind String
    The Kubernetes resource Kind to match for.
    managedFieldsManagers List<String>
    List of external controller manager names whose changes to fields should be ignored.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecInfo, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecInfoArgs

    Name string
    Name of the information.
    Value string
    Value of the information.
    Name string
    Name of the information.
    Value string
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.
    name string
    Name of the information.
    value string
    Value of the information.
    name str
    Name of the information.
    value str
    Value of the information.
    name String
    Name of the information.
    value String
    Value of the information.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSource, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceArgs

    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelm
    Helm specific options.
    Kustomize Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    Chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    Directory ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectory
    Path/directory specific options.
    Helm ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelm
    Helm specific options.
    Kustomize ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomize
    Kustomize specific options.
    Path string
    Directory path within the repository. Only valid for applications sourced from Git.
    Plugin ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePlugin
    Config management plugin specific options.
    Ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    RepoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    TargetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomize
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart string
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomize
    Kustomize specific options.
    path string
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref string
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl string
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision string
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart str
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectory
    Path/directory specific options.
    helm ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelm
    Helm specific options.
    kustomize ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomize
    Kustomize specific options.
    path str
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePlugin
    Config management plugin specific options.
    ref str
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repo_url str
    URL to the repository (Git or Helm) that contains the application manifests.
    target_revision str
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.
    chart String
    Helm chart name. Must be specified for applications sourced from a Helm repo.
    directory Property Map
    Path/directory specific options.
    helm Property Map
    Helm specific options.
    kustomize Property Map
    Kustomize specific options.
    path String
    Directory path within the repository. Only valid for applications sourced from Git.
    plugin Property Map
    Config management plugin specific options.
    ref String
    Reference to another source within defined sources. See associated documentation on Helm value files from external Git repository regarding combining ref with path and/or chart.
    repoUrl String
    URL to the repository (Git or Helm) that contains the application manifests.
    targetRevision String
    Revision of the source to sync the application to. In case of Git, this can be commit, tag, or branch. If omitted, will equal to HEAD. In case of Helm, this is a semver tag for the Chart's version.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectory, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryArgs

    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    Exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    Include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    Jsonnet ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    Recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.
    exclude string
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include string
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse boolean
    Whether to scan a directory recursively for manifests.
    exclude str
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include str
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnet
    Jsonnet specific options.
    recurse bool
    Whether to scan a directory recursively for manifests.
    exclude String
    Glob pattern to match paths against that should be explicitly excluded from being used during manifest generation. This takes precedence over the include field. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{config.yaml,env-use2/*}'
    include String
    Glob pattern to match paths against that should be explicitly included during manifest generation. If this field is set, only matching manifests will be included. To match multiple patterns, wrap the patterns in {} and separate them with commas. For example: '{.yml,.yaml}'
    jsonnet Property Map
    Jsonnet specific options.
    recurse Boolean
    Whether to scan a directory recursively for manifests.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnet, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetArgs

    extVars List<Property Map>
    List of Jsonnet External Variables.
    libs List<String>
    Additional library search dirs.
    tlas List<Property Map>
    List of Jsonnet Top-level Arguments

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetExtVar, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetExtVarArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetTla, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceDirectoryJsonnetTlaArgs

    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    Code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    Name string
    Name of Jsonnet variable.
    Value string
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.
    code boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name string
    Name of Jsonnet variable.
    value string
    Value of Jsonnet variable.
    code bool
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name str
    Name of Jsonnet variable.
    value str
    Value of Jsonnet variable.
    code Boolean
    Determines whether the variable should be evaluated as jsonnet code or treated as string.
    name String
    Name of Jsonnet variable.
    value String
    Value of Jsonnet variable.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelm, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmArgs

    FileParameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles List<string>
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    FileParameters []ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmFileParameter
    File parameters for the helm template.
    IgnoreMissingValueFiles bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    Parameters []ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmParameter
    Helm parameters which are passed to the helm template command upon manifest generation.
    PassCredentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    ReleaseName string
    Helm release name. If omitted it will use the application name.
    SkipCrds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    ValueFiles []string
    List of Helm value files to use when generating a template.
    Values string
    Helm values to be passed to 'helm template', typically defined as a block.
    Version string
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmFileParameter>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmParameter>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmFileParameter[]
    File parameters for the helm template.
    ignoreMissingValueFiles boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmParameter[]
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName string
    Helm release name. If omitted it will use the application name.
    skipCrds boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles string[]
    List of Helm value files to use when generating a template.
    values string
    Helm values to be passed to 'helm template', typically defined as a block.
    version string
    The Helm version to use for templating. Accepts either v2 or v3
    file_parameters Sequence[ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmFileParameter]
    File parameters for the helm template.
    ignore_missing_value_files bool
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters Sequence[ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmParameter]
    Helm parameters which are passed to the helm template command upon manifest generation.
    pass_credentials bool
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    release_name str
    Helm release name. If omitted it will use the application name.
    skip_crds bool
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    value_files Sequence[str]
    List of Helm value files to use when generating a template.
    values str
    Helm values to be passed to 'helm template', typically defined as a block.
    version str
    The Helm version to use for templating. Accepts either v2 or v3
    fileParameters List<Property Map>
    File parameters for the helm template.
    ignoreMissingValueFiles Boolean
    Prevents 'helm template' from failing when value_files do not exist locally by not appending them to 'helm template --values'.
    parameters List<Property Map>
    Helm parameters which are passed to the helm template command upon manifest generation.
    passCredentials Boolean
    If true then adds '--pass-credentials' to Helm commands to pass credentials to all domains.
    releaseName String
    Helm release name. If omitted it will use the application name.
    skipCrds Boolean
    Whether to skip custom resource definition installation step (Helm's --skip-crds).
    valueFiles List<String>
    List of Helm value files to use when generating a template.
    values String
    Helm values to be passed to 'helm template', typically defined as a block.
    version String
    The Helm version to use for templating. Accepts either v2 or v3

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmFileParameter, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmFileParameterArgs

    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    Name string
    Name of the Helm parameter.
    Path string
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.
    name string
    Name of the Helm parameter.
    path string
    Path to the file containing the values for the Helm parameter.
    name str
    Name of the Helm parameter.
    path str
    Path to the file containing the values for the Helm parameter.
    name String
    Name of the Helm parameter.
    path String
    Path to the file containing the values for the Helm parameter.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmParameter, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceHelmParameterArgs

    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    ForceString bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    Name string
    Name of the Helm parameter.
    Value string
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.
    forceString boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name string
    Name of the Helm parameter.
    value string
    Value of the Helm parameter.
    force_string bool
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name str
    Name of the Helm parameter.
    value str
    Value of the Helm parameter.
    forceString Boolean
    Determines whether to tell Helm to interpret booleans and numbers as strings.
    name String
    Name of the Helm parameter.
    value String
    Value of the Helm parameter.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomize, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizeArgs

    CommonAnnotations Dictionary<string, string>
    List of additional annotations to add to rendered manifests.
    CommonLabels Dictionary<string, string>
    List of additional labels to add to rendered manifests.
    Images List<string>
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    CommonAnnotations map[string]string
    List of additional annotations to add to rendered manifests.
    CommonLabels map[string]string
    List of additional labels to add to rendered manifests.
    Images []string
    List of Kustomize image override specifications.
    NamePrefix string
    Prefix appended to resources for Kustomize apps.
    NameSuffix string
    Suffix appended to resources for Kustomize apps.
    Patches []ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatch
    A list of Kustomize patches to apply.
    Version string
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String,String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String,String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatch>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.
    commonAnnotations {[key: string]: string}
    List of additional annotations to add to rendered manifests.
    commonLabels {[key: string]: string}
    List of additional labels to add to rendered manifests.
    images string[]
    List of Kustomize image override specifications.
    namePrefix string
    Prefix appended to resources for Kustomize apps.
    nameSuffix string
    Suffix appended to resources for Kustomize apps.
    patches ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatch[]
    A list of Kustomize patches to apply.
    version string
    Version of Kustomize to use for rendering manifests.
    common_annotations Mapping[str, str]
    List of additional annotations to add to rendered manifests.
    common_labels Mapping[str, str]
    List of additional labels to add to rendered manifests.
    images Sequence[str]
    List of Kustomize image override specifications.
    name_prefix str
    Prefix appended to resources for Kustomize apps.
    name_suffix str
    Suffix appended to resources for Kustomize apps.
    patches Sequence[ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatch]
    A list of Kustomize patches to apply.
    version str
    Version of Kustomize to use for rendering manifests.
    commonAnnotations Map<String>
    List of additional annotations to add to rendered manifests.
    commonLabels Map<String>
    List of additional labels to add to rendered manifests.
    images List<String>
    List of Kustomize image override specifications.
    namePrefix String
    Prefix appended to resources for Kustomize apps.
    nameSuffix String
    Suffix appended to resources for Kustomize apps.
    patches List<Property Map>
    A list of Kustomize patches to apply.
    version String
    Version of Kustomize to use for rendering manifests.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatch, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatchArgs

    Target Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options Dictionary<string, bool>
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    Target ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    Options map[string]bool
    Additional options.
    Patch string
    Inline Kustomize patch to apply.
    Path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Map<String,Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options {[key: string]: boolean}
    Additional options.
    patch string
    Inline Kustomize patch to apply.
    path string
    Path to a file containing the patch to apply.
    target ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatchTarget
    Target(s) to patch
    options Mapping[str, bool]
    Additional options.
    patch str
    Inline Kustomize patch to apply.
    path str
    Path to a file containing the patch to apply.
    target Property Map
    Target(s) to patch
    options Map<Boolean>
    Additional options.
    patch String
    Inline Kustomize patch to apply.
    path String
    Path to a file containing the patch to apply.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatchTarget, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourceKustomizePatchTargetArgs

    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    AnnotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    Group string
    The Kubernetes resource Group to match for.
    Kind string
    The Kubernetes resource Kind to match for.
    LabelSelector string
    Label selector to use when matching the Kubernetes resource.
    Name string
    The Kubernetes resource Name to match for.
    Namespace string
    The Kubernetes resource Namespace to match for.
    Version string
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.
    annotationSelector string
    Annotation selector to use when matching the Kubernetes resource.
    group string
    The Kubernetes resource Group to match for.
    kind string
    The Kubernetes resource Kind to match for.
    labelSelector string
    Label selector to use when matching the Kubernetes resource.
    name string
    The Kubernetes resource Name to match for.
    namespace string
    The Kubernetes resource Namespace to match for.
    version string
    The Kubernetes resource Version to match for.
    annotation_selector str
    Annotation selector to use when matching the Kubernetes resource.
    group str
    The Kubernetes resource Group to match for.
    kind str
    The Kubernetes resource Kind to match for.
    label_selector str
    Label selector to use when matching the Kubernetes resource.
    name str
    The Kubernetes resource Name to match for.
    namespace str
    The Kubernetes resource Namespace to match for.
    version str
    The Kubernetes resource Version to match for.
    annotationSelector String
    Annotation selector to use when matching the Kubernetes resource.
    group String
    The Kubernetes resource Group to match for.
    kind String
    The Kubernetes resource Kind to match for.
    labelSelector String
    Label selector to use when matching the Kubernetes resource.
    name String
    The Kubernetes resource Name to match for.
    namespace String
    The Kubernetes resource Namespace to match for.
    version String
    The Kubernetes resource Version to match for.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePlugin, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePluginArgs

    Envs List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    Envs []ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePluginEnv
    Environment variables passed to the plugin.
    Name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePluginEnv>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePluginEnv[]
    Environment variables passed to the plugin.
    name string
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs Sequence[ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePluginEnv]
    Environment variables passed to the plugin.
    name str
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.
    envs List<Property Map>
    Environment variables passed to the plugin.
    name String
    Name of the plugin. Only set the plugin name if the plugin is defined in argocd-cm. If the plugin is defined as a sidecar, omit the name. The plugin will be automatically matched with the Application according to the plugin's discovery rules.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePluginEnv, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSourcePluginEnvArgs

    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    Name string
    Name of the environment variable.
    Value string
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.
    name string
    Name of the environment variable.
    value string
    Value of the environment variable.
    name str
    Name of the environment variable.
    value str
    Value of the environment variable.
    name String
    Name of the environment variable.
    value String
    Value of the environment variable.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicy, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyArgs

    Automated Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions List<string>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    Automated ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    ManagedNamespaceMetadata ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    Retry ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    SyncOptions []string
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    syncOptions string[]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyAutomated
    Whether to automatically keep an application synced to the target revision.
    managed_namespace_metadata ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyManagedNamespaceMetadata
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetry
    Controls failed sync retry behavior.
    sync_options Sequence[str]
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.
    automated Property Map
    Whether to automatically keep an application synced to the target revision.
    managedNamespaceMetadata Property Map
    Controls metadata in the given namespace (if CreateNamespace=true).
    retry Property Map
    Controls failed sync retry behavior.
    syncOptions List<String>
    List of sync options. More info: https://argo-cd.readthedocs.io/en/stable/user-guide/sync-options/.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyAutomated, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyAutomatedArgs

    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    AllowEmpty bool
    Allows apps have zero live resources.
    Prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    SelfHeal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty boolean
    Allows apps have zero live resources.
    prune boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal boolean
    Whether to revert resources back to their desired state upon modification in the cluster.
    allow_empty bool
    Allows apps have zero live resources.
    prune bool
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    self_heal bool
    Whether to revert resources back to their desired state upon modification in the cluster.
    allowEmpty Boolean
    Allows apps have zero live resources.
    prune Boolean
    Whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync.
    selfHeal Boolean
    Whether to revert resources back to their desired state upon modification in the cluster.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyManagedNamespaceMetadata, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyManagedNamespaceMetadataArgs

    Annotations Dictionary<string, string>
    Annotations to apply to the namespace.
    Labels Dictionary<string, string>
    Labels to apply to the namespace.
    Annotations map[string]string
    Annotations to apply to the namespace.
    Labels map[string]string
    Labels to apply to the namespace.
    annotations Map<String,String>
    Annotations to apply to the namespace.
    labels Map<String,String>
    Labels to apply to the namespace.
    annotations {[key: string]: string}
    Annotations to apply to the namespace.
    labels {[key: string]: string}
    Labels to apply to the namespace.
    annotations Mapping[str, str]
    Annotations to apply to the namespace.
    labels Mapping[str, str]
    Labels to apply to the namespace.
    annotations Map<String>
    Annotations to apply to the namespace.
    labels Map<String>
    Labels to apply to the namespace.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetry, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetryArgs

    Backoff Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    Backoff ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    Limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit string
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetryBackoff
    Controls how to backoff on subsequent retries of failed syncs.
    limit str
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.
    backoff Property Map
    Controls how to backoff on subsequent retries of failed syncs.
    limit String
    Maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetryBackoff, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorPullRequestTemplateSpecSyncPolicyRetryBackoffArgs

    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    Factor string
    Factor to multiply the base duration after each failed retry.
    MaxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration string
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor string
    Factor to multiply the base duration after each failed retry.
    maxDuration string
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration str
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor str
    Factor to multiply the base duration after each failed retry.
    max_duration str
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    duration String
    Duration is the amount to back off. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.
    factor String
    Factor to multiply the base duration after each failed retry.
    maxDuration String
    Maximum amount of time allowed for the backoff strategy. Default unit is seconds, but could also be a duration (e.g. 2m, 1h), as a string.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProvider, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderArgs

    AzureDevops Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderAzureDevops
    Uses the Azure DevOps API to look up eligible repositories based on a team project within an Azure DevOps organization.
    BitbucketCloud Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderBitbucketCloud
    Uses the Bitbucket API V2 to scan a workspace in bitbucket.org.
    BitbucketServer Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderBitbucketServer
    Use the Bitbucket Server API (1.0) to scan repos in a project.
    CloneProtocol string
    Which protocol to use for the SCM URL. Default is provider-specific but ssh if possible. Not all providers necessarily support all protocols.
    Filters List<Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderFilter>
    Filters for which repos should be considered.
    Gitea Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGitea
    Gitea mode uses the Gitea API to scan organizations in your instance.
    Github Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGithub
    Uses the GitHub API to scan an organization in either github.com or GitHub Enterprise.
    Gitlab Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGitlab
    Uses the GitLab API to scan and organization in either gitlab.com or self-hosted GitLab.
    RequeueAfterSeconds string
    How often to check for changes (in seconds). Default: 3min.
    Template Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplate
    Generator template. Used to override the values of the spec-level template.
    AzureDevops ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderAzureDevops
    Uses the Azure DevOps API to look up eligible repositories based on a team project within an Azure DevOps organization.
    BitbucketCloud ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderBitbucketCloud
    Uses the Bitbucket API V2 to scan a workspace in bitbucket.org.
    BitbucketServer ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderBitbucketServer
    Use the Bitbucket Server API (1.0) to scan repos in a project.
    CloneProtocol string
    Which protocol to use for the SCM URL. Default is provider-specific but ssh if possible. Not all providers necessarily support all protocols.
    Filters []ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderFilter
    Filters for which repos should be considered.
    Gitea ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGitea
    Gitea mode uses the Gitea API to scan organizations in your instance.
    Github ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGithub
    Uses the GitHub API to scan an organization in either github.com or GitHub Enterprise.
    Gitlab ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGitlab
    Uses the GitLab API to scan and organization in either gitlab.com or self-hosted GitLab.
    RequeueAfterSeconds string
    How often to check for changes (in seconds). Default: 3min.
    Template ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplate
    Generator template. Used to override the values of the spec-level template.
    azureDevops ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderAzureDevops
    Uses the Azure DevOps API to look up eligible repositories based on a team project within an Azure DevOps organization.
    bitbucketCloud ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderBitbucketCloud
    Uses the Bitbucket API V2 to scan a workspace in bitbucket.org.
    bitbucketServer ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderBitbucketServer
    Use the Bitbucket Server API (1.0) to scan repos in a project.
    cloneProtocol String
    Which protocol to use for the SCM URL. Default is provider-specific but ssh if possible. Not all providers necessarily support all protocols.
    filters List<ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderFilter>
    Filters for which repos should be considered.
    gitea ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGitea
    Gitea mode uses the Gitea API to scan organizations in your instance.
    github ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGithub
    Uses the GitHub API to scan an organization in either github.com or GitHub Enterprise.
    gitlab ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGitlab
    Uses the GitLab API to scan and organization in either gitlab.com or self-hosted GitLab.
    requeueAfterSeconds String
    How often to check for changes (in seconds). Default: 3min.
    template ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplate
    Generator template. Used to override the values of the spec-level template.
    azureDevops ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderAzureDevops
    Uses the Azure DevOps API to look up eligible repositories based on a team project within an Azure DevOps organization.
    bitbucketCloud ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderBitbucketCloud
    Uses the Bitbucket API V2 to scan a workspace in bitbucket.org.
    bitbucketServer ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderBitbucketServer
    Use the Bitbucket Server API (1.0) to scan repos in a project.
    cloneProtocol string
    Which protocol to use for the SCM URL. Default is provider-specific but ssh if possible. Not all providers necessarily support all protocols.
    filters ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderFilter[]
    Filters for which repos should be considered.
    gitea ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGitea
    Gitea mode uses the Gitea API to scan organizations in your instance.
    github ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGithub
    Uses the GitHub API to scan an organization in either github.com or GitHub Enterprise.
    gitlab ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGitlab
    Uses the GitLab API to scan and organization in either gitlab.com or self-hosted GitLab.
    requeueAfterSeconds string
    How often to check for changes (in seconds). Default: 3min.
    template ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplate
    Generator template. Used to override the values of the spec-level template.
    azure_devops ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderAzureDevops
    Uses the Azure DevOps API to look up eligible repositories based on a team project within an Azure DevOps organization.
    bitbucket_cloud ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderBitbucketCloud
    Uses the Bitbucket API V2 to scan a workspace in bitbucket.org.
    bitbucket_server ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderBitbucketServer
    Use the Bitbucket Server API (1.0) to scan repos in a project.
    clone_protocol str
    Which protocol to use for the SCM URL. Default is provider-specific but ssh if possible. Not all providers necessarily support all protocols.
    filters Sequence[ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderFilter]
    Filters for which repos should be considered.
    gitea ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGitea
    Gitea mode uses the Gitea API to scan organizations in your instance.
    github ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGithub
    Uses the GitHub API to scan an organization in either github.com or GitHub Enterprise.
    gitlab ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGitlab
    Uses the GitLab API to scan and organization in either gitlab.com or self-hosted GitLab.
    requeue_after_seconds str
    How often to check for changes (in seconds). Default: 3min.
    template ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplate
    Generator template. Used to override the values of the spec-level template.
    azureDevops Property Map
    Uses the Azure DevOps API to look up eligible repositories based on a team project within an Azure DevOps organization.
    bitbucketCloud Property Map
    Uses the Bitbucket API V2 to scan a workspace in bitbucket.org.
    bitbucketServer Property Map
    Use the Bitbucket Server API (1.0) to scan repos in a project.
    cloneProtocol String
    Which protocol to use for the SCM URL. Default is provider-specific but ssh if possible. Not all providers necessarily support all protocols.
    filters List<Property Map>
    Filters for which repos should be considered.
    gitea Property Map
    Gitea mode uses the Gitea API to scan organizations in your instance.
    github Property Map
    Uses the GitHub API to scan an organization in either github.com or GitHub Enterprise.
    gitlab Property Map
    Uses the GitLab API to scan and organization in either gitlab.com or self-hosted GitLab.
    requeueAfterSeconds String
    How often to check for changes (in seconds). Default: 3min.
    template Property Map
    Generator template. Used to override the values of the spec-level template.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderAzureDevops, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderAzureDevopsArgs

    Organization string
    Azure Devops organization. E.g. "my-organization".
    TeamProject string
    Azure Devops team project. E.g. "my-team".
    AccessTokenRef Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderAzureDevopsAccessTokenRef
    The Personal Access Token (PAT) to use when connecting.
    AllBranches bool
    Scan all branches instead of just the default branch.
    Api string
    The URL to Azure DevOps. Defaults to https://dev.azure.com.
    Organization string
    Azure Devops organization. E.g. "my-organization".
    TeamProject string
    Azure Devops team project. E.g. "my-team".
    AccessTokenRef ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderAzureDevopsAccessTokenRef
    The Personal Access Token (PAT) to use when connecting.
    AllBranches bool
    Scan all branches instead of just the default branch.
    Api string
    The URL to Azure DevOps. Defaults to https://dev.azure.com.
    organization String
    Azure Devops organization. E.g. "my-organization".
    teamProject String
    Azure Devops team project. E.g. "my-team".
    accessTokenRef ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderAzureDevopsAccessTokenRef
    The Personal Access Token (PAT) to use when connecting.
    allBranches Boolean
    Scan all branches instead of just the default branch.
    api String
    The URL to Azure DevOps. Defaults to https://dev.azure.com.
    organization string
    Azure Devops organization. E.g. "my-organization".
    teamProject string
    Azure Devops team project. E.g. "my-team".
    accessTokenRef ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderAzureDevopsAccessTokenRef
    The Personal Access Token (PAT) to use when connecting.
    allBranches boolean
    Scan all branches instead of just the default branch.
    api string
    The URL to Azure DevOps. Defaults to https://dev.azure.com.
    organization str
    Azure Devops organization. E.g. "my-organization".
    team_project str
    Azure Devops team project. E.g. "my-team".
    access_token_ref ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderAzureDevopsAccessTokenRef
    The Personal Access Token (PAT) to use when connecting.
    all_branches bool
    Scan all branches instead of just the default branch.
    api str
    The URL to Azure DevOps. Defaults to https://dev.azure.com.
    organization String
    Azure Devops organization. E.g. "my-organization".
    teamProject String
    Azure Devops team project. E.g. "my-team".
    accessTokenRef Property Map
    The Personal Access Token (PAT) to use when connecting.
    allBranches Boolean
    Scan all branches instead of just the default branch.
    api String
    The URL to Azure DevOps. Defaults to https://dev.azure.com.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderAzureDevopsAccessTokenRef, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderAzureDevopsAccessTokenRefArgs

    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.
    key string
    Key containing information in Kubernetes Secret.
    secretName string
    Name of Kubernetes Secret.
    key str
    Key containing information in Kubernetes Secret.
    secret_name str
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderBitbucketCloud, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderBitbucketCloudArgs

    Owner string
    Bitbucket workspace to scan.
    User string
    Bitbucket user to use when authenticating. Should have a "member" role to be able to read all repositories and branches.
    AllBranches bool
    Scan all branches instead of just the default branch.
    AppPasswordRef Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderBitbucketCloudAppPasswordRef
    The app password to use for the user. See: https://support.atlassian.com/bitbucket-cloud/docs/app-passwords/.
    Owner string
    Bitbucket workspace to scan.
    User string
    Bitbucket user to use when authenticating. Should have a "member" role to be able to read all repositories and branches.
    AllBranches bool
    Scan all branches instead of just the default branch.
    AppPasswordRef ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderBitbucketCloudAppPasswordRef
    The app password to use for the user. See: https://support.atlassian.com/bitbucket-cloud/docs/app-passwords/.
    owner String
    Bitbucket workspace to scan.
    user String
    Bitbucket user to use when authenticating. Should have a "member" role to be able to read all repositories and branches.
    allBranches Boolean
    Scan all branches instead of just the default branch.
    appPasswordRef ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderBitbucketCloudAppPasswordRef
    The app password to use for the user. See: https://support.atlassian.com/bitbucket-cloud/docs/app-passwords/.
    owner string
    Bitbucket workspace to scan.
    user string
    Bitbucket user to use when authenticating. Should have a "member" role to be able to read all repositories and branches.
    allBranches boolean
    Scan all branches instead of just the default branch.
    appPasswordRef ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderBitbucketCloudAppPasswordRef
    The app password to use for the user. See: https://support.atlassian.com/bitbucket-cloud/docs/app-passwords/.
    owner str
    Bitbucket workspace to scan.
    user str
    Bitbucket user to use when authenticating. Should have a "member" role to be able to read all repositories and branches.
    all_branches bool
    Scan all branches instead of just the default branch.
    app_password_ref ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderBitbucketCloudAppPasswordRef
    The app password to use for the user. See: https://support.atlassian.com/bitbucket-cloud/docs/app-passwords/.
    owner String
    Bitbucket workspace to scan.
    user String
    Bitbucket user to use when authenticating. Should have a "member" role to be able to read all repositories and branches.
    allBranches Boolean
    Scan all branches instead of just the default branch.
    appPasswordRef Property Map
    The app password to use for the user. See: https://support.atlassian.com/bitbucket-cloud/docs/app-passwords/.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderBitbucketCloudAppPasswordRef, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderBitbucketCloudAppPasswordRefArgs

    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.
    key string
    Key containing information in Kubernetes Secret.
    secretName string
    Name of Kubernetes Secret.
    key str
    Key containing information in Kubernetes Secret.
    secret_name str
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderBitbucketServer, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderBitbucketServerArgs

    Api string
    The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest.
    Project string
    Project to scan.
    AllBranches bool
    Scan all branches instead of just the default branch.
    BasicAuth Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderBitbucketServerBasicAuth
    Credentials for Basic auth.
    Api string
    The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest.
    Project string
    Project to scan.
    AllBranches bool
    Scan all branches instead of just the default branch.
    BasicAuth ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderBitbucketServerBasicAuth
    Credentials for Basic auth.
    api String
    The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest.
    project String
    Project to scan.
    allBranches Boolean
    Scan all branches instead of just the default branch.
    basicAuth ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderBitbucketServerBasicAuth
    Credentials for Basic auth.
    api string
    The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest.
    project string
    Project to scan.
    allBranches boolean
    Scan all branches instead of just the default branch.
    basicAuth ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderBitbucketServerBasicAuth
    Credentials for Basic auth.
    api str
    The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest.
    project str
    Project to scan.
    all_branches bool
    Scan all branches instead of just the default branch.
    basic_auth ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderBitbucketServerBasicAuth
    Credentials for Basic auth.
    api String
    The Bitbucket REST API URL to talk to e.g. https://bitbucket.org/rest.
    project String
    Project to scan.
    allBranches Boolean
    Scan all branches instead of just the default branch.
    basicAuth Property Map
    Credentials for Basic auth.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderBitbucketServerBasicAuth, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderBitbucketServerBasicAuthArgs

    passwordRef Property Map
    Password (or personal access token) reference.
    username String
    Username for Basic auth.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderBitbucketServerBasicAuthPasswordRef, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderBitbucketServerBasicAuthPasswordRefArgs

    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.
    key string
    Key containing information in Kubernetes Secret.
    secretName string
    Name of Kubernetes Secret.
    key str
    Key containing information in Kubernetes Secret.
    secret_name str
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderFilter, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderFilterArgs

    BranchMatch string
    A regex which must match the branch name.
    LabelMatch string
    A regex which must match at least one label.
    PathsDoNotExists List<string>
    An array of paths, all of which must not exist.
    PathsExists List<string>
    An array of paths, all of which must exist.
    RepositoryMatch string
    A regex for repo names.
    BranchMatch string
    A regex which must match the branch name.
    LabelMatch string
    A regex which must match at least one label.
    PathsDoNotExists []string
    An array of paths, all of which must not exist.
    PathsExists []string
    An array of paths, all of which must exist.
    RepositoryMatch string
    A regex for repo names.
    branchMatch String
    A regex which must match the branch name.
    labelMatch String
    A regex which must match at least one label.
    pathsDoNotExists List<String>
    An array of paths, all of which must not exist.
    pathsExists List<String>
    An array of paths, all of which must exist.
    repositoryMatch String
    A regex for repo names.
    branchMatch string
    A regex which must match the branch name.
    labelMatch string
    A regex which must match at least one label.
    pathsDoNotExists string[]
    An array of paths, all of which must not exist.
    pathsExists string[]
    An array of paths, all of which must exist.
    repositoryMatch string
    A regex for repo names.
    branch_match str
    A regex which must match the branch name.
    label_match str
    A regex which must match at least one label.
    paths_do_not_exists Sequence[str]
    An array of paths, all of which must not exist.
    paths_exists Sequence[str]
    An array of paths, all of which must exist.
    repository_match str
    A regex for repo names.
    branchMatch String
    A regex which must match the branch name.
    labelMatch String
    A regex which must match at least one label.
    pathsDoNotExists List<String>
    An array of paths, all of which must not exist.
    pathsExists List<String>
    An array of paths, all of which must exist.
    repositoryMatch String
    A regex for repo names.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGitea, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGiteaArgs

    Owner string
    Gitea organization or user to scan.
    AllBranches bool
    Scan all branches instead of just the default branch.
    Api string
    The Gitea URL to talk to. For example https://gitea.mydomain.com/.
    Insecure bool
    Allow self-signed TLS / Certificates.
    TokenRef Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGiteaTokenRef
    Authentication token reference.
    Owner string
    Gitea organization or user to scan.
    AllBranches bool
    Scan all branches instead of just the default branch.
    Api string
    The Gitea URL to talk to. For example https://gitea.mydomain.com/.
    Insecure bool
    Allow self-signed TLS / Certificates.
    TokenRef ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGiteaTokenRef
    Authentication token reference.
    owner String
    Gitea organization or user to scan.
    allBranches Boolean
    Scan all branches instead of just the default branch.
    api String
    The Gitea URL to talk to. For example https://gitea.mydomain.com/.
    insecure Boolean
    Allow self-signed TLS / Certificates.
    tokenRef ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGiteaTokenRef
    Authentication token reference.
    owner string
    Gitea organization or user to scan.
    allBranches boolean
    Scan all branches instead of just the default branch.
    api string
    The Gitea URL to talk to. For example https://gitea.mydomain.com/.
    insecure boolean
    Allow self-signed TLS / Certificates.
    tokenRef ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGiteaTokenRef
    Authentication token reference.
    owner str
    Gitea organization or user to scan.
    all_branches bool
    Scan all branches instead of just the default branch.
    api str
    The Gitea URL to talk to. For example https://gitea.mydomain.com/.
    insecure bool
    Allow self-signed TLS / Certificates.
    token_ref ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGiteaTokenRef
    Authentication token reference.
    owner String
    Gitea organization or user to scan.
    allBranches Boolean
    Scan all branches instead of just the default branch.
    api String
    The Gitea URL to talk to. For example https://gitea.mydomain.com/.
    insecure Boolean
    Allow self-signed TLS / Certificates.
    tokenRef Property Map
    Authentication token reference.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGiteaTokenRef, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGiteaTokenRefArgs

    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.
    key string
    Key containing information in Kubernetes Secret.
    secretName string
    Name of Kubernetes Secret.
    key str
    Key containing information in Kubernetes Secret.
    secret_name str
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGithub, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGithubArgs

    Organization string
    GitHub org to scan.
    AllBranches bool
    If true, scan every branch of every repository. If false, scan only the default branch.
    Api string
    The GitHub API URL to talk to. Default https://api.github.com/.
    AppSecretName string
    Reference to a GitHub App repo-creds secret. Uses a GitHub App to access the API instead of a PAT.
    TokenRef Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGithubTokenRef
    Authentication token reference.
    Organization string
    GitHub org to scan.
    AllBranches bool
    If true, scan every branch of every repository. If false, scan only the default branch.
    Api string
    The GitHub API URL to talk to. Default https://api.github.com/.
    AppSecretName string
    Reference to a GitHub App repo-creds secret. Uses a GitHub App to access the API instead of a PAT.
    TokenRef ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGithubTokenRef
    Authentication token reference.
    organization String
    GitHub org to scan.
    allBranches Boolean
    If true, scan every branch of every repository. If false, scan only the default branch.
    api String
    The GitHub API URL to talk to. Default https://api.github.com/.
    appSecretName String
    Reference to a GitHub App repo-creds secret. Uses a GitHub App to access the API instead of a PAT.
    tokenRef ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGithubTokenRef
    Authentication token reference.
    organization string
    GitHub org to scan.
    allBranches boolean
    If true, scan every branch of every repository. If false, scan only the default branch.
    api string
    The GitHub API URL to talk to. Default https://api.github.com/.
    appSecretName string
    Reference to a GitHub App repo-creds secret. Uses a GitHub App to access the API instead of a PAT.
    tokenRef ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGithubTokenRef
    Authentication token reference.
    organization str
    GitHub org to scan.
    all_branches bool
    If true, scan every branch of every repository. If false, scan only the default branch.
    api str
    The GitHub API URL to talk to. Default https://api.github.com/.
    app_secret_name str
    Reference to a GitHub App repo-creds secret. Uses a GitHub App to access the API instead of a PAT.
    token_ref ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGithubTokenRef
    Authentication token reference.
    organization String
    GitHub org to scan.
    allBranches Boolean
    If true, scan every branch of every repository. If false, scan only the default branch.
    api String
    The GitHub API URL to talk to. Default https://api.github.com/.
    appSecretName String
    Reference to a GitHub App repo-creds secret. Uses a GitHub App to access the API instead of a PAT.
    tokenRef Property Map
    Authentication token reference.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGithubTokenRef, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGithubTokenRefArgs

    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.
    key string
    Key containing information in Kubernetes Secret.
    secretName string
    Name of Kubernetes Secret.
    key str
    Key containing information in Kubernetes Secret.
    secret_name str
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGitlab, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGitlabArgs

    Group string
    Gitlab group to scan. You can use either the project id (recommended) or the full namespaced path.
    AllBranches bool
    If true, scan every branch of every repository. If false, scan only the default branch.
    Api string
    The Gitlab API URL to talk to.
    IncludeSubgroups bool
    Recurse through subgroups (true) or scan only the base group (false). Defaults to false.
    TokenRef Three14.Argocd.Inputs.ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGitlabTokenRef
    Authentication token reference.
    Group string
    Gitlab group to scan. You can use either the project id (recommended) or the full namespaced path.
    AllBranches bool
    If true, scan every branch of every repository. If false, scan only the default branch.
    Api string
    The Gitlab API URL to talk to.
    IncludeSubgroups bool
    Recurse through subgroups (true) or scan only the base group (false). Defaults to false.
    TokenRef ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGitlabTokenRef
    Authentication token reference.
    group String
    Gitlab group to scan. You can use either the project id (recommended) or the full namespaced path.
    allBranches Boolean
    If true, scan every branch of every repository. If false, scan only the default branch.
    api String
    The Gitlab API URL to talk to.
    includeSubgroups Boolean
    Recurse through subgroups (true) or scan only the base group (false). Defaults to false.
    tokenRef ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGitlabTokenRef
    Authentication token reference.
    group string
    Gitlab group to scan. You can use either the project id (recommended) or the full namespaced path.
    allBranches boolean
    If true, scan every branch of every repository. If false, scan only the default branch.
    api string
    The Gitlab API URL to talk to.
    includeSubgroups boolean
    Recurse through subgroups (true) or scan only the base group (false). Defaults to false.
    tokenRef ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGitlabTokenRef
    Authentication token reference.
    group str
    Gitlab group to scan. You can use either the project id (recommended) or the full namespaced path.
    all_branches bool
    If true, scan every branch of every repository. If false, scan only the default branch.
    api str
    The Gitlab API URL to talk to.
    include_subgroups bool
    Recurse through subgroups (true) or scan only the base group (false). Defaults to false.
    token_ref ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGitlabTokenRef
    Authentication token reference.
    group String
    Gitlab group to scan. You can use either the project id (recommended) or the full namespaced path.
    allBranches Boolean
    If true, scan every branch of every repository. If false, scan only the default branch.
    api String
    The Gitlab API URL to talk to.
    includeSubgroups Boolean
    Recurse through subgroups (true) or scan only the base group (false). Defaults to false.
    tokenRef Property Map
    Authentication token reference.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGitlabTokenRef, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderGitlabTokenRefArgs

    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    Key string
    Key containing information in Kubernetes Secret.
    SecretName string
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.
    key string
    Key containing information in Kubernetes Secret.
    secretName string
    Name of Kubernetes Secret.
    key str
    Key containing information in Kubernetes Secret.
    secret_name str
    Name of Kubernetes Secret.
    key String
    Key containing information in Kubernetes Secret.
    secretName String
    Name of Kubernetes Secret.

    ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplate, ApplicationSetSpecGeneratorMergeGeneratorMatrixGeneratorScmProviderTemplateArgs

    metadata Property Map
    Kubernetes object metadata for templated Application.
    spec Property Map
    The application specification.

    Package Details

    Repository
    argocd Three141/pulumi-argocd
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the argocd Terraform Provider.
    argocd logo
    Argo CD v1.0.1 published on Friday, Feb 21, 2025 by Three141