diff --git a/argoproj/kcl.mod b/argoproj/kcl.mod index 36263aae..28eb206a 100644 --- a/argoproj/kcl.mod +++ b/argoproj/kcl.mod @@ -1,6 +1,6 @@ [package] name = "argoproj" -version = "3.0.12" +version = "v3.2.1" description = "`argoproj` module contains definitions for argoproj" [dependencies] diff --git a/argoproj/update.sh b/argoproj/update.sh index 511b5b03..a0df811d 100755 --- a/argoproj/update.sh +++ b/argoproj/update.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash set -Eeuo pipefail -./download_crd.sh "v3.0.12" +./download_crd.sh "v3.2.1" kcl import -m crd -o . *.yaml rm -rf v* mv models/v* . diff --git a/argoproj/v1alpha1/argoproj_io_v1alpha1_app_project.k b/argoproj/v1alpha1/argoproj_io_v1alpha1_app_project.k index 95a1d633..67b51e74 100644 --- a/argoproj/v1alpha1/argoproj_io_v1alpha1_app_project.k +++ b/argoproj/v1alpha1/argoproj_io_v1alpha1_app_project.k @@ -106,6 +106,10 @@ schema ArgoprojIoV1alpha1AppProjectSpec: syncWindows?: [ArgoprojIoV1alpha1AppProjectSpecSyncWindowsItems0] + check: + len(description) <= 255 if description + + schema ArgoprojIoV1alpha1AppProjectSpecClusterResourceBlacklistItems0: r""" GroupKind specifies a Group and a Kind, but does not force a version. This is useful for identifying @@ -345,6 +349,8 @@ schema ArgoprojIoV1alpha1AppProjectSpecSyncWindowsItems0: Applications contains a list of applications that the window will apply to clusters : [str], default is Undefined, optional Clusters contains a list of clusters that the window will apply to + description : str, default is Undefined, optional + Description of the sync that will be applied to the schedule, can be used to add any information such as a ticket number for example duration : str, default is Undefined, optional Duration is the amount of time the sync window will be open kind : str, default is Undefined, optional @@ -366,6 +372,8 @@ schema ArgoprojIoV1alpha1AppProjectSpecSyncWindowsItems0: clusters?: [str] + description?: str + duration?: str kind?: str diff --git a/argoproj/v1alpha1/argoproj_io_v1alpha1_application.k b/argoproj/v1alpha1/argoproj_io_v1alpha1_application.k index 686de503..e9ea2632 100644 --- a/argoproj/v1alpha1/argoproj_io_v1alpha1_application.k +++ b/argoproj/v1alpha1/argoproj_io_v1alpha1_application.k @@ -2,7 +2,9 @@ This file was generated by the KCL auto-gen tool. DO NOT EDIT. Editing this file might prove futile when you re-run the KCL auto-gen generate command. """ +import regex import k8s.apimachinery.pkg.apis.meta.v1 +_regex_match = regex.match schema Application: @@ -111,6 +113,8 @@ schema ArgoprojIoV1alpha1ApplicationOperationRetry: backoff limit : int, default is Undefined, optional Limit is the maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed. + refresh : bool, default is Undefined, optional + Refresh indicates if the latest revision should be used on retry instead of the initial one (default: false) """ @@ -118,6 +122,8 @@ schema ArgoprojIoV1alpha1ApplicationOperationRetry: limit?: int + refresh?: bool + schema ArgoprojIoV1alpha1ApplicationOperationRetryBackoff: r""" @@ -1705,9 +1711,11 @@ schema ArgoprojIoV1alpha1ApplicationSpecSourceHydratorSyncSource: ---------- path : str, default is Undefined, required Path is a directory path within the git repository where hydrated manifests should be committed to and synced - from. If hydrateTo is set, this is just the path from which hydrated manifests will be synced. + from. The Path should never point to the root of the repo. If hydrateTo is set, this is just the path from which + hydrated manifests will be synced. targetBranch : str, default is Undefined, required - TargetBranch is the branch to which hydrated manifests should be committed + TargetBranch is the branch from which hydrated manifests will be synced. + If HydrateTo is not set, this is also the branch to which hydrated manifests are committed. """ @@ -1716,6 +1724,11 @@ schema ArgoprojIoV1alpha1ApplicationSpecSourceHydratorSyncSource: targetBranch: str + check: + len(path) >= 1 + _regex_match(str(path), r"^.{2,}|[^./]$") + + schema ArgoprojIoV1alpha1ApplicationSpecSourceKustomize: r""" Kustomize holds kustomize specific options @@ -2470,6 +2483,8 @@ schema ArgoprojIoV1alpha1ApplicationSpecSyncPolicyAutomated: ---------- allowEmpty : bool, default is Undefined, optional AllowEmpty allows apps have zero live resources (default: false) + enabled : bool, default is Undefined, optional + Enable allows apps to explicitly control automated sync prune : bool, default is Undefined, optional Prune specifies whether to delete resources from the cluster that are not found in the sources anymore as part of automated sync (default: false) selfHeal : bool, default is Undefined, optional @@ -2479,6 +2494,8 @@ schema ArgoprojIoV1alpha1ApplicationSpecSyncPolicyAutomated: allowEmpty?: bool + enabled?: bool + prune?: bool selfHeal?: bool @@ -2512,6 +2529,8 @@ schema ArgoprojIoV1alpha1ApplicationSpecSyncPolicyRetry: backoff limit : int, default is Undefined, optional Limit is the maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed. + refresh : bool, default is Undefined, optional + Refresh indicates if the latest revision should be used on retry instead of the initial one (default: false) """ @@ -2519,6 +2538,8 @@ schema ArgoprojIoV1alpha1ApplicationSpecSyncPolicyRetry: limit?: int + refresh?: bool + schema ArgoprojIoV1alpha1ApplicationSpecSyncPolicyRetryBackoff: r""" @@ -2641,8 +2662,10 @@ schema ArgoprojIoV1alpha1ApplicationStatusHealth: LastTransitionTime is the time the HealthStatus was set or updated message : str, default is Undefined, optional Message is a human-readable informational message describing the health status + + Deprecated: this field is not used and will be removed in a future release. status : str, default is Undefined, optional - Status holds the status code of the application or resource + Status holds the status code of the application """ @@ -3799,6 +3822,8 @@ schema ArgoprojIoV1alpha1ApplicationStatusOperationStateOperationRetry: backoff limit : int, default is Undefined, optional Limit is the maximum number of attempts for retrying a failed sync. If set to 0, no retries will be performed. + refresh : bool, default is Undefined, optional + Refresh indicates if the latest revision should be used on retry instead of the initial one (default: false) """ @@ -3806,6 +3831,8 @@ schema ArgoprojIoV1alpha1ApplicationStatusOperationStateOperationRetry: limit?: int + refresh?: bool + schema ArgoprojIoV1alpha1ApplicationStatusOperationStateOperationRetryBackoff: r""" @@ -5004,6 +5031,8 @@ schema ArgoprojIoV1alpha1ApplicationStatusOperationStateSyncResultResourcesItems This can also contain values for non-hook resources. hookType : str, default is Undefined, optional HookType specifies the type of the hook. Empty for non-hook resources + images : [str], default is Undefined, optional + Images contains the images related to the ResourceResult kind : str, default is Undefined, required Kind specifies the API kind of the resource message : str, default is Undefined, optional @@ -5027,6 +5056,8 @@ schema ArgoprojIoV1alpha1ApplicationStatusOperationStateSyncResultResourcesItems hookType?: str + images?: [str] + kind: str message?: str @@ -6081,10 +6112,12 @@ schema ArgoprojIoV1alpha1ApplicationStatusResourcesItems0Health: ---------- lastTransitionTime : str, default is Undefined, optional LastTransitionTime is the time the HealthStatus was set or updated + + Deprecated: this field is not used and will be removed in a future release. message : str, default is Undefined, optional Message is a human-readable informational message describing the health status status : str, default is Undefined, optional - Status holds the status code of the application or resource + Status holds the status code of the resource """ @@ -6218,9 +6251,11 @@ schema ArgoprojIoV1alpha1ApplicationStatusSourceHydratorCurrentOperationSourceHy ---------- path : str, default is Undefined, required Path is a directory path within the git repository where hydrated manifests should be committed to and synced - from. If hydrateTo is set, this is just the path from which hydrated manifests will be synced. + from. The Path should never point to the root of the repo. If hydrateTo is set, this is just the path from which + hydrated manifests will be synced. targetBranch : str, default is Undefined, required - TargetBranch is the branch to which hydrated manifests should be committed + TargetBranch is the branch from which hydrated manifests will be synced. + If HydrateTo is not set, this is also the branch to which hydrated manifests are committed. """ @@ -6229,6 +6264,11 @@ schema ArgoprojIoV1alpha1ApplicationStatusSourceHydratorCurrentOperationSourceHy targetBranch: str + check: + len(path) >= 1 + _regex_match(str(path), r"^.{2,}|[^./]$") + + schema ArgoprojIoV1alpha1ApplicationStatusSourceHydratorLastSuccessfulOperation: r""" LastSuccessfulOperation holds info about the most recent successful hydration @@ -6318,9 +6358,11 @@ schema ArgoprojIoV1alpha1ApplicationStatusSourceHydratorLastSuccessfulOperationS ---------- path : str, default is Undefined, required Path is a directory path within the git repository where hydrated manifests should be committed to and synced - from. If hydrateTo is set, this is just the path from which hydrated manifests will be synced. + from. The Path should never point to the root of the repo. If hydrateTo is set, this is just the path from which + hydrated manifests will be synced. targetBranch : str, default is Undefined, required - TargetBranch is the branch to which hydrated manifests should be committed + TargetBranch is the branch from which hydrated manifests will be synced. + If HydrateTo is not set, this is also the branch to which hydrated manifests are committed. """ @@ -6329,6 +6371,11 @@ schema ArgoprojIoV1alpha1ApplicationStatusSourceHydratorLastSuccessfulOperationS targetBranch: str + check: + len(path) >= 1 + _regex_match(str(path), r"^.{2,}|[^./]$") + + schema ArgoprojIoV1alpha1ApplicationStatusSummary: r""" Summary contains a list of URLs and container images used by this application diff --git a/argoproj/v1alpha1/argoproj_io_v1alpha1_application_set.k b/argoproj/v1alpha1/argoproj_io_v1alpha1_application_set.k index 84904cdc..58040adc 100644 --- a/argoproj/v1alpha1/argoproj_io_v1alpha1_application_set.k +++ b/argoproj/v1alpha1/argoproj_io_v1alpha1_application_set.k @@ -2,7 +2,9 @@ This file was generated by the KCL auto-gen tool. DO NOT EDIT. Editing this file might prove futile when you re-run the KCL auto-gen generate command. """ +import regex import k8s.apimachinery.pkg.apis.meta.v1 +_regex_match = regex.match schema ApplicationSet: @@ -709,6 +711,11 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0ClusterDecisionResour targetBranch: str + check: + len(path) >= 1 + _regex_match(str(path), r"^.{2,}|[^./]$") + + schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0ClusterDecisionResourceTemplateSpecSourceKustomize: r""" argoproj io v1alpha1 application set spec generators items0 cluster decision resource template spec source kustomize @@ -1455,6 +1462,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0ClusterDecisionResour ---------- allowEmpty : bool, default is Undefined, optional allow empty + enabled : bool, default is Undefined, optional + enabled prune : bool, default is Undefined, optional prune selfHeal : bool, default is Undefined, optional @@ -1464,6 +1473,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0ClusterDecisionResour allowEmpty?: bool + enabled?: bool + prune?: bool selfHeal?: bool @@ -1497,6 +1508,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0ClusterDecisionResour backoff limit : int, default is Undefined, optional limit + refresh : bool, default is Undefined, optional + refresh """ @@ -1504,6 +1517,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0ClusterDecisionResour limit?: int + refresh?: bool + schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0ClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoff: r""" @@ -2093,6 +2108,11 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0ClustersTemplateSpecS targetBranch: str + check: + len(path) >= 1 + _regex_match(str(path), r"^.{2,}|[^./]$") + + schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0ClustersTemplateSpecSourceKustomize: r""" argoproj io v1alpha1 application set spec generators items0 clusters template spec source kustomize @@ -2839,6 +2859,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0ClustersTemplateSpecS ---------- allowEmpty : bool, default is Undefined, optional allow empty + enabled : bool, default is Undefined, optional + enabled prune : bool, default is Undefined, optional prune selfHeal : bool, default is Undefined, optional @@ -2848,6 +2870,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0ClustersTemplateSpecS allowEmpty?: bool + enabled?: bool + prune?: bool selfHeal?: bool @@ -2881,6 +2905,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0ClustersTemplateSpecS backoff limit : int, default is Undefined, optional limit + refresh : bool, default is Undefined, optional + refresh """ @@ -2888,6 +2914,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0ClustersTemplateSpecS limit?: int + refresh?: bool + schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0ClustersTemplateSpecSyncPolicyRetryBackoff: r""" @@ -2977,11 +3005,15 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0GitFilesItems0: Attributes ---------- + exclude : bool, default is Undefined, optional + exclude path : str, default is Undefined, required path """ + exclude?: bool + path: str @@ -3485,6 +3517,11 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0GitTemplateSpecSource targetBranch: str + check: + len(path) >= 1 + _regex_match(str(path), r"^.{2,}|[^./]$") + + schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0GitTemplateSpecSourceKustomize: r""" argoproj io v1alpha1 application set spec generators items0 git template spec source kustomize @@ -4231,6 +4268,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0GitTemplateSpecSyncPo ---------- allowEmpty : bool, default is Undefined, optional allow empty + enabled : bool, default is Undefined, optional + enabled prune : bool, default is Undefined, optional prune selfHeal : bool, default is Undefined, optional @@ -4240,6 +4279,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0GitTemplateSpecSyncPo allowEmpty?: bool + enabled?: bool + prune?: bool selfHeal?: bool @@ -4273,6 +4314,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0GitTemplateSpecSyncPo backoff limit : int, default is Undefined, optional limit + refresh : bool, default is Undefined, optional + refresh """ @@ -4280,6 +4323,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0GitTemplateSpecSyncPo limit?: int + refresh?: bool + schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0GitTemplateSpecSyncPolicyRetryBackoff: r""" @@ -4825,6 +4870,11 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0ListTemplateSpecSourc targetBranch: str + check: + len(path) >= 1 + _regex_match(str(path), r"^.{2,}|[^./]$") + + schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0ListTemplateSpecSourceKustomize: r""" argoproj io v1alpha1 application set spec generators items0 list template spec source kustomize @@ -5571,6 +5621,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0ListTemplateSpecSyncP ---------- allowEmpty : bool, default is Undefined, optional allow empty + enabled : bool, default is Undefined, optional + enabled prune : bool, default is Undefined, optional prune selfHeal : bool, default is Undefined, optional @@ -5580,6 +5632,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0ListTemplateSpecSyncP allowEmpty?: bool + enabled?: bool + prune?: bool selfHeal?: bool @@ -5613,6 +5667,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0ListTemplateSpecSyncP backoff limit : int, default is Undefined, optional limit + refresh : bool, default is Undefined, optional + refresh """ @@ -5620,6 +5676,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0ListTemplateSpecSyncP limit?: int + refresh?: bool + schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0ListTemplateSpecSyncPolicyRetryBackoff: r""" @@ -6285,6 +6343,11 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems targetBranch: str + check: + len(path) >= 1 + _regex_match(str(path), r"^.{2,}|[^./]$") + + schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems0ClusterDecisionResourceTemplateSpecSourceKustomize: r""" argoproj io v1alpha1 application set spec generators items0 matrix generators items0 cluster decision resource template spec source kustomize @@ -7031,6 +7094,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems ---------- allowEmpty : bool, default is Undefined, optional allow empty + enabled : bool, default is Undefined, optional + enabled prune : bool, default is Undefined, optional prune selfHeal : bool, default is Undefined, optional @@ -7040,6 +7105,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems allowEmpty?: bool + enabled?: bool + prune?: bool selfHeal?: bool @@ -7073,6 +7140,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems backoff limit : int, default is Undefined, optional limit + refresh : bool, default is Undefined, optional + refresh """ @@ -7080,6 +7149,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems limit?: int + refresh?: bool + schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems0ClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoff: r""" @@ -7669,6 +7740,11 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems targetBranch: str + check: + len(path) >= 1 + _regex_match(str(path), r"^.{2,}|[^./]$") + + schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems0ClustersTemplateSpecSourceKustomize: r""" argoproj io v1alpha1 application set spec generators items0 matrix generators items0 clusters template spec source kustomize @@ -8415,6 +8491,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems ---------- allowEmpty : bool, default is Undefined, optional allow empty + enabled : bool, default is Undefined, optional + enabled prune : bool, default is Undefined, optional prune selfHeal : bool, default is Undefined, optional @@ -8424,6 +8502,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems allowEmpty?: bool + enabled?: bool + prune?: bool selfHeal?: bool @@ -8457,6 +8537,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems backoff limit : int, default is Undefined, optional limit + refresh : bool, default is Undefined, optional + refresh """ @@ -8464,6 +8546,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems limit?: int + refresh?: bool + schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems0ClustersTemplateSpecSyncPolicyRetryBackoff: r""" @@ -8553,11 +8637,15 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems Attributes ---------- + exclude : bool, default is Undefined, optional + exclude path : str, default is Undefined, required path """ + exclude?: bool + path: str @@ -9061,6 +9149,11 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems targetBranch: str + check: + len(path) >= 1 + _regex_match(str(path), r"^.{2,}|[^./]$") + + schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems0GitTemplateSpecSourceKustomize: r""" argoproj io v1alpha1 application set spec generators items0 matrix generators items0 git template spec source kustomize @@ -9807,6 +9900,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems ---------- allowEmpty : bool, default is Undefined, optional allow empty + enabled : bool, default is Undefined, optional + enabled prune : bool, default is Undefined, optional prune selfHeal : bool, default is Undefined, optional @@ -9816,6 +9911,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems allowEmpty?: bool + enabled?: bool + prune?: bool selfHeal?: bool @@ -9849,6 +9946,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems backoff limit : int, default is Undefined, optional limit + refresh : bool, default is Undefined, optional + refresh """ @@ -9856,6 +9955,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems limit?: int + refresh?: bool + schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems0GitTemplateSpecSyncPolicyRetryBackoff: r""" @@ -10401,6 +10502,11 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems targetBranch: str + check: + len(path) >= 1 + _regex_match(str(path), r"^.{2,}|[^./]$") + + schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems0ListTemplateSpecSourceKustomize: r""" argoproj io v1alpha1 application set spec generators items0 matrix generators items0 list template spec source kustomize @@ -11147,6 +11253,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems ---------- allowEmpty : bool, default is Undefined, optional allow empty + enabled : bool, default is Undefined, optional + enabled prune : bool, default is Undefined, optional prune selfHeal : bool, default is Undefined, optional @@ -11156,6 +11264,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems allowEmpty?: bool + enabled?: bool + prune?: bool selfHeal?: bool @@ -11189,6 +11299,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems backoff limit : int, default is Undefined, optional limit + refresh : bool, default is Undefined, optional + refresh """ @@ -11196,6 +11308,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems limit?: int + refresh?: bool + schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems0ListTemplateSpecSyncPolicyRetryBackoff: r""" @@ -11777,6 +11891,11 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems targetBranch: str + check: + len(path) >= 1 + _regex_match(str(path), r"^.{2,}|[^./]$") + + schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems0PluginTemplateSpecSourceKustomize: r""" argoproj io v1alpha1 application set spec generators items0 matrix generators items0 plugin template spec source kustomize @@ -12523,6 +12642,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems ---------- allowEmpty : bool, default is Undefined, optional allow empty + enabled : bool, default is Undefined, optional + enabled prune : bool, default is Undefined, optional prune selfHeal : bool, default is Undefined, optional @@ -12532,6 +12653,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems allowEmpty?: bool + enabled?: bool + prune?: bool selfHeal?: bool @@ -12565,6 +12688,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems backoff limit : int, default is Undefined, optional limit + refresh : bool, default is Undefined, optional + refresh """ @@ -12572,6 +12697,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems limit?: int + refresh?: bool + schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems0PluginTemplateSpecSyncPolicyRetryBackoff: r""" @@ -12607,6 +12734,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems bitbucket bitbucketServer : ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems0PullRequestBitbucketServer, default is Undefined, optional bitbucket server + continueOnRepoNotFoundError : bool, default is Undefined, optional + continue on repo not found error filters : [ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems0PullRequestFiltersItems0], default is Undefined, optional filters gitea : ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems0PullRequestGitea, default is Undefined, optional @@ -12630,6 +12759,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems bitbucketServer?: ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems0PullRequestBitbucketServer + continueOnRepoNotFoundError?: bool + filters?: [ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems0PullRequestFiltersItems0] gitea?: ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems0PullRequestGitea @@ -12929,6 +13060,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems branch match targetBranchMatch : str, default is Undefined, optional target branch match + titleMatch : str, default is Undefined, optional + title match """ @@ -12936,6 +13069,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems targetBranchMatch?: str + titleMatch?: str + schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems0PullRequestGitea: r""" @@ -12947,6 +13082,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems api insecure : bool, default is Undefined, optional insecure + labels : [str], default is Undefined, optional + labels owner : str, default is Undefined, required owner repo : str, default is Undefined, required @@ -12960,6 +13097,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems insecure?: bool + labels?: [str] + owner: str repo: str @@ -13611,6 +13750,11 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems targetBranch: str + check: + len(path) >= 1 + _regex_match(str(path), r"^.{2,}|[^./]$") + + schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems0PullRequestTemplateSpecSourceKustomize: r""" argoproj io v1alpha1 application set spec generators items0 matrix generators items0 pull request template spec source kustomize @@ -14357,6 +14501,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems ---------- allowEmpty : bool, default is Undefined, optional allow empty + enabled : bool, default is Undefined, optional + enabled prune : bool, default is Undefined, optional prune selfHeal : bool, default is Undefined, optional @@ -14366,6 +14512,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems allowEmpty?: bool + enabled?: bool + prune?: bool selfHeal?: bool @@ -14399,6 +14547,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems backoff limit : int, default is Undefined, optional limit + refresh : bool, default is Undefined, optional + refresh """ @@ -14406,6 +14556,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems limit?: int + refresh?: bool + schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems0PullRequestTemplateSpecSyncPolicyRetryBackoff: r""" @@ -15455,6 +15607,11 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems targetBranch: str + check: + len(path) >= 1 + _regex_match(str(path), r"^.{2,}|[^./]$") + + schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems0ScmProviderTemplateSpecSourceKustomize: r""" argoproj io v1alpha1 application set spec generators items0 matrix generators items0 scm provider template spec source kustomize @@ -16201,6 +16358,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems ---------- allowEmpty : bool, default is Undefined, optional allow empty + enabled : bool, default is Undefined, optional + enabled prune : bool, default is Undefined, optional prune selfHeal : bool, default is Undefined, optional @@ -16210,6 +16369,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems allowEmpty?: bool + enabled?: bool + prune?: bool selfHeal?: bool @@ -16243,6 +16404,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems backoff limit : int, default is Undefined, optional limit + refresh : bool, default is Undefined, optional + refresh """ @@ -16250,6 +16413,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems limit?: int + refresh?: bool + schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixGeneratorsItems0ScmProviderTemplateSpecSyncPolicyRetryBackoff: r""" @@ -16813,6 +16978,11 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixTemplateSpecSou targetBranch: str + check: + len(path) >= 1 + _regex_match(str(path), r"^.{2,}|[^./]$") + + schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixTemplateSpecSourceKustomize: r""" argoproj io v1alpha1 application set spec generators items0 matrix template spec source kustomize @@ -17559,6 +17729,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixTemplateSpecSyn ---------- allowEmpty : bool, default is Undefined, optional allow empty + enabled : bool, default is Undefined, optional + enabled prune : bool, default is Undefined, optional prune selfHeal : bool, default is Undefined, optional @@ -17568,6 +17740,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixTemplateSpecSyn allowEmpty?: bool + enabled?: bool + prune?: bool selfHeal?: bool @@ -17601,6 +17775,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixTemplateSpecSyn backoff limit : int, default is Undefined, optional limit + refresh : bool, default is Undefined, optional + refresh """ @@ -17608,6 +17784,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixTemplateSpecSyn limit?: int + refresh?: bool + schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MatrixTemplateSpecSyncPolicyRetryBackoff: r""" @@ -18277,6 +18455,11 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0 targetBranch: str + check: + len(path) >= 1 + _regex_match(str(path), r"^.{2,}|[^./]$") + + schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0ClusterDecisionResourceTemplateSpecSourceKustomize: r""" argoproj io v1alpha1 application set spec generators items0 merge generators items0 cluster decision resource template spec source kustomize @@ -19023,6 +19206,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0 ---------- allowEmpty : bool, default is Undefined, optional allow empty + enabled : bool, default is Undefined, optional + enabled prune : bool, default is Undefined, optional prune selfHeal : bool, default is Undefined, optional @@ -19032,6 +19217,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0 allowEmpty?: bool + enabled?: bool + prune?: bool selfHeal?: bool @@ -19065,6 +19252,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0 backoff limit : int, default is Undefined, optional limit + refresh : bool, default is Undefined, optional + refresh """ @@ -19072,6 +19261,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0 limit?: int + refresh?: bool + schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0ClusterDecisionResourceTemplateSpecSyncPolicyRetryBackoff: r""" @@ -19661,6 +19852,11 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0 targetBranch: str + check: + len(path) >= 1 + _regex_match(str(path), r"^.{2,}|[^./]$") + + schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0ClustersTemplateSpecSourceKustomize: r""" argoproj io v1alpha1 application set spec generators items0 merge generators items0 clusters template spec source kustomize @@ -20407,6 +20603,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0 ---------- allowEmpty : bool, default is Undefined, optional allow empty + enabled : bool, default is Undefined, optional + enabled prune : bool, default is Undefined, optional prune selfHeal : bool, default is Undefined, optional @@ -20416,6 +20614,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0 allowEmpty?: bool + enabled?: bool + prune?: bool selfHeal?: bool @@ -20449,6 +20649,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0 backoff limit : int, default is Undefined, optional limit + refresh : bool, default is Undefined, optional + refresh """ @@ -20456,6 +20658,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0 limit?: int + refresh?: bool + schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0ClustersTemplateSpecSyncPolicyRetryBackoff: r""" @@ -20545,11 +20749,15 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0 Attributes ---------- + exclude : bool, default is Undefined, optional + exclude path : str, default is Undefined, required path """ + exclude?: bool + path: str @@ -21053,6 +21261,11 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0 targetBranch: str + check: + len(path) >= 1 + _regex_match(str(path), r"^.{2,}|[^./]$") + + schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0GitTemplateSpecSourceKustomize: r""" argoproj io v1alpha1 application set spec generators items0 merge generators items0 git template spec source kustomize @@ -21799,6 +22012,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0 ---------- allowEmpty : bool, default is Undefined, optional allow empty + enabled : bool, default is Undefined, optional + enabled prune : bool, default is Undefined, optional prune selfHeal : bool, default is Undefined, optional @@ -21808,6 +22023,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0 allowEmpty?: bool + enabled?: bool + prune?: bool selfHeal?: bool @@ -21841,6 +22058,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0 backoff limit : int, default is Undefined, optional limit + refresh : bool, default is Undefined, optional + refresh """ @@ -21848,6 +22067,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0 limit?: int + refresh?: bool + schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0GitTemplateSpecSyncPolicyRetryBackoff: r""" @@ -22393,6 +22614,11 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0 targetBranch: str + check: + len(path) >= 1 + _regex_match(str(path), r"^.{2,}|[^./]$") + + schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0ListTemplateSpecSourceKustomize: r""" argoproj io v1alpha1 application set spec generators items0 merge generators items0 list template spec source kustomize @@ -23139,6 +23365,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0 ---------- allowEmpty : bool, default is Undefined, optional allow empty + enabled : bool, default is Undefined, optional + enabled prune : bool, default is Undefined, optional prune selfHeal : bool, default is Undefined, optional @@ -23148,6 +23376,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0 allowEmpty?: bool + enabled?: bool + prune?: bool selfHeal?: bool @@ -23181,6 +23411,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0 backoff limit : int, default is Undefined, optional limit + refresh : bool, default is Undefined, optional + refresh """ @@ -23188,6 +23420,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0 limit?: int + refresh?: bool + schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0ListTemplateSpecSyncPolicyRetryBackoff: r""" @@ -23769,6 +24003,11 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0 targetBranch: str + check: + len(path) >= 1 + _regex_match(str(path), r"^.{2,}|[^./]$") + + schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0PluginTemplateSpecSourceKustomize: r""" argoproj io v1alpha1 application set spec generators items0 merge generators items0 plugin template spec source kustomize @@ -24515,6 +24754,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0 ---------- allowEmpty : bool, default is Undefined, optional allow empty + enabled : bool, default is Undefined, optional + enabled prune : bool, default is Undefined, optional prune selfHeal : bool, default is Undefined, optional @@ -24524,6 +24765,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0 allowEmpty?: bool + enabled?: bool + prune?: bool selfHeal?: bool @@ -24557,6 +24800,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0 backoff limit : int, default is Undefined, optional limit + refresh : bool, default is Undefined, optional + refresh """ @@ -24564,6 +24809,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0 limit?: int + refresh?: bool + schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0PluginTemplateSpecSyncPolicyRetryBackoff: r""" @@ -24599,6 +24846,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0 bitbucket bitbucketServer : ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0PullRequestBitbucketServer, default is Undefined, optional bitbucket server + continueOnRepoNotFoundError : bool, default is Undefined, optional + continue on repo not found error filters : [ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0PullRequestFiltersItems0], default is Undefined, optional filters gitea : ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0PullRequestGitea, default is Undefined, optional @@ -24622,6 +24871,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0 bitbucketServer?: ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0PullRequestBitbucketServer + continueOnRepoNotFoundError?: bool + filters?: [ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0PullRequestFiltersItems0] gitea?: ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0PullRequestGitea @@ -24921,6 +25172,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0 branch match targetBranchMatch : str, default is Undefined, optional target branch match + titleMatch : str, default is Undefined, optional + title match """ @@ -24928,6 +25181,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0 targetBranchMatch?: str + titleMatch?: str + schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0PullRequestGitea: r""" @@ -24939,6 +25194,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0 api insecure : bool, default is Undefined, optional insecure + labels : [str], default is Undefined, optional + labels owner : str, default is Undefined, required owner repo : str, default is Undefined, required @@ -24952,6 +25209,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0 insecure?: bool + labels?: [str] + owner: str repo: str @@ -25603,6 +25862,11 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0 targetBranch: str + check: + len(path) >= 1 + _regex_match(str(path), r"^.{2,}|[^./]$") + + schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0PullRequestTemplateSpecSourceKustomize: r""" argoproj io v1alpha1 application set spec generators items0 merge generators items0 pull request template spec source kustomize @@ -26349,6 +26613,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0 ---------- allowEmpty : bool, default is Undefined, optional allow empty + enabled : bool, default is Undefined, optional + enabled prune : bool, default is Undefined, optional prune selfHeal : bool, default is Undefined, optional @@ -26358,6 +26624,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0 allowEmpty?: bool + enabled?: bool + prune?: bool selfHeal?: bool @@ -26391,6 +26659,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0 backoff limit : int, default is Undefined, optional limit + refresh : bool, default is Undefined, optional + refresh """ @@ -26398,6 +26668,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0 limit?: int + refresh?: bool + schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0PullRequestTemplateSpecSyncPolicyRetryBackoff: r""" @@ -27447,6 +27719,11 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0 targetBranch: str + check: + len(path) >= 1 + _regex_match(str(path), r"^.{2,}|[^./]$") + + schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0ScmProviderTemplateSpecSourceKustomize: r""" argoproj io v1alpha1 application set spec generators items0 merge generators items0 scm provider template spec source kustomize @@ -28193,6 +28470,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0 ---------- allowEmpty : bool, default is Undefined, optional allow empty + enabled : bool, default is Undefined, optional + enabled prune : bool, default is Undefined, optional prune selfHeal : bool, default is Undefined, optional @@ -28202,6 +28481,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0 allowEmpty?: bool + enabled?: bool + prune?: bool selfHeal?: bool @@ -28235,6 +28516,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0 backoff limit : int, default is Undefined, optional limit + refresh : bool, default is Undefined, optional + refresh """ @@ -28242,6 +28525,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0 limit?: int + refresh?: bool + schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeGeneratorsItems0ScmProviderTemplateSpecSyncPolicyRetryBackoff: r""" @@ -28805,6 +29090,11 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeTemplateSpecSour targetBranch: str + check: + len(path) >= 1 + _regex_match(str(path), r"^.{2,}|[^./]$") + + schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeTemplateSpecSourceKustomize: r""" argoproj io v1alpha1 application set spec generators items0 merge template spec source kustomize @@ -29551,6 +29841,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeTemplateSpecSync ---------- allowEmpty : bool, default is Undefined, optional allow empty + enabled : bool, default is Undefined, optional + enabled prune : bool, default is Undefined, optional prune selfHeal : bool, default is Undefined, optional @@ -29560,6 +29852,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeTemplateSpecSync allowEmpty?: bool + enabled?: bool + prune?: bool selfHeal?: bool @@ -29593,6 +29887,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeTemplateSpecSync backoff limit : int, default is Undefined, optional limit + refresh : bool, default is Undefined, optional + refresh """ @@ -29600,6 +29896,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeTemplateSpecSync limit?: int + refresh?: bool + schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0MergeTemplateSpecSyncPolicyRetryBackoff: r""" @@ -30181,6 +30479,11 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0PluginTemplateSpecSou targetBranch: str + check: + len(path) >= 1 + _regex_match(str(path), r"^.{2,}|[^./]$") + + schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0PluginTemplateSpecSourceKustomize: r""" argoproj io v1alpha1 application set spec generators items0 plugin template spec source kustomize @@ -30927,6 +31230,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0PluginTemplateSpecSyn ---------- allowEmpty : bool, default is Undefined, optional allow empty + enabled : bool, default is Undefined, optional + enabled prune : bool, default is Undefined, optional prune selfHeal : bool, default is Undefined, optional @@ -30936,6 +31241,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0PluginTemplateSpecSyn allowEmpty?: bool + enabled?: bool + prune?: bool selfHeal?: bool @@ -30969,6 +31276,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0PluginTemplateSpecSyn backoff limit : int, default is Undefined, optional limit + refresh : bool, default is Undefined, optional + refresh """ @@ -30976,6 +31285,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0PluginTemplateSpecSyn limit?: int + refresh?: bool + schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0PluginTemplateSpecSyncPolicyRetryBackoff: r""" @@ -31011,6 +31322,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0PullRequest: bitbucket bitbucketServer : ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0PullRequestBitbucketServer, default is Undefined, optional bitbucket server + continueOnRepoNotFoundError : bool, default is Undefined, optional + continue on repo not found error filters : [ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0PullRequestFiltersItems0], default is Undefined, optional filters gitea : ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0PullRequestGitea, default is Undefined, optional @@ -31034,6 +31347,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0PullRequest: bitbucketServer?: ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0PullRequestBitbucketServer + continueOnRepoNotFoundError?: bool + filters?: [ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0PullRequestFiltersItems0] gitea?: ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0PullRequestGitea @@ -31333,6 +31648,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0PullRequestFiltersIte branch match targetBranchMatch : str, default is Undefined, optional target branch match + titleMatch : str, default is Undefined, optional + title match """ @@ -31340,6 +31657,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0PullRequestFiltersIte targetBranchMatch?: str + titleMatch?: str + schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0PullRequestGitea: r""" @@ -31351,6 +31670,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0PullRequestGitea: api insecure : bool, default is Undefined, optional insecure + labels : [str], default is Undefined, optional + labels owner : str, default is Undefined, required owner repo : str, default is Undefined, required @@ -31364,6 +31685,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0PullRequestGitea: insecure?: bool + labels?: [str] + owner: str repo: str @@ -32015,6 +32338,11 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0PullRequestTemplateSp targetBranch: str + check: + len(path) >= 1 + _regex_match(str(path), r"^.{2,}|[^./]$") + + schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0PullRequestTemplateSpecSourceKustomize: r""" argoproj io v1alpha1 application set spec generators items0 pull request template spec source kustomize @@ -32761,6 +33089,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0PullRequestTemplateSp ---------- allowEmpty : bool, default is Undefined, optional allow empty + enabled : bool, default is Undefined, optional + enabled prune : bool, default is Undefined, optional prune selfHeal : bool, default is Undefined, optional @@ -32770,6 +33100,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0PullRequestTemplateSp allowEmpty?: bool + enabled?: bool + prune?: bool selfHeal?: bool @@ -32803,6 +33135,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0PullRequestTemplateSp backoff limit : int, default is Undefined, optional limit + refresh : bool, default is Undefined, optional + refresh """ @@ -32810,6 +33144,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0PullRequestTemplateSp limit?: int + refresh?: bool + schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0PullRequestTemplateSpecSyncPolicyRetryBackoff: r""" @@ -33859,6 +34195,11 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0ScmProviderTemplateSp targetBranch: str + check: + len(path) >= 1 + _regex_match(str(path), r"^.{2,}|[^./]$") + + schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0ScmProviderTemplateSpecSourceKustomize: r""" argoproj io v1alpha1 application set spec generators items0 scm provider template spec source kustomize @@ -34605,6 +34946,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0ScmProviderTemplateSp ---------- allowEmpty : bool, default is Undefined, optional allow empty + enabled : bool, default is Undefined, optional + enabled prune : bool, default is Undefined, optional prune selfHeal : bool, default is Undefined, optional @@ -34614,6 +34957,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0ScmProviderTemplateSp allowEmpty?: bool + enabled?: bool + prune?: bool selfHeal?: bool @@ -34647,6 +34992,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0ScmProviderTemplateSp backoff limit : int, default is Undefined, optional limit + refresh : bool, default is Undefined, optional + refresh """ @@ -34654,6 +35001,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0ScmProviderTemplateSp limit?: int + refresh?: bool + schema ArgoprojIoV1alpha1ApplicationSetSpecGeneratorsItems0ScmProviderTemplateSpecSyncPolicyRetryBackoff: r""" @@ -34763,6 +35112,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecStrategy: Attributes ---------- + deletionOrder : str, default is Undefined, optional + deletion order rollingSync : ArgoprojIoV1alpha1ApplicationSetSpecStrategyRollingSync, default is Undefined, optional rolling sync $type : str, default is Undefined, optional @@ -34770,6 +35121,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecStrategy: """ + deletionOrder?: str + rollingSync?: ArgoprojIoV1alpha1ApplicationSetSpecStrategyRollingSync $type?: str @@ -35347,6 +35700,11 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecTemplateSpecSourceHydratorSyncSource: targetBranch: str + check: + len(path) >= 1 + _regex_match(str(path), r"^.{2,}|[^./]$") + + schema ArgoprojIoV1alpha1ApplicationSetSpecTemplateSpecSourceKustomize: r""" argoproj io v1alpha1 application set spec template spec source kustomize @@ -36093,6 +36451,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecTemplateSpecSyncPolicyAutomated: ---------- allowEmpty : bool, default is Undefined, optional allow empty + enabled : bool, default is Undefined, optional + enabled prune : bool, default is Undefined, optional prune selfHeal : bool, default is Undefined, optional @@ -36102,6 +36462,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecTemplateSpecSyncPolicyAutomated: allowEmpty?: bool + enabled?: bool + prune?: bool selfHeal?: bool @@ -36135,6 +36497,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecTemplateSpecSyncPolicyRetry: backoff limit : int, default is Undefined, optional limit + refresh : bool, default is Undefined, optional + refresh """ @@ -36142,6 +36506,8 @@ schema ArgoprojIoV1alpha1ApplicationSetSpecTemplateSpecSyncPolicyRetry: limit?: int + refresh?: bool + schema ArgoprojIoV1alpha1ApplicationSetSpecTemplateSpecSyncPolicyRetryBackoff: r""" @@ -36177,6 +36543,8 @@ schema ArgoprojIoV1alpha1ApplicationSetStatus: conditions resources : [ArgoprojIoV1alpha1ApplicationSetStatusResourcesItems0], default is Undefined, optional resources + resourcesCount : int, default is Undefined, optional + resources count """ @@ -36186,6 +36554,8 @@ schema ArgoprojIoV1alpha1ApplicationSetStatus: resources?: [ArgoprojIoV1alpha1ApplicationSetStatusResourcesItems0] + resourcesCount?: int + schema ArgoprojIoV1alpha1ApplicationSetStatusApplicationStatusItems0: r"""