1
1
### ** time**
2
+
2
3
Time related functions.
3
4
4
5
<hr >
5
6
** ` time.Now() Time ` **
6
7
7
- Executes function built-in Golang [ time.Now] ( https://golang.org/pkg/time/#Now ) function.
8
- Returns an instance of Golang [ Time] ( https://golang.org/pkg/time/#Time ) .
8
+ Executes function built-in Golang [ time.Now] ( https://golang.org/pkg/time/#Now ) function. Returns an instance of
9
+ Golang [ Time] ( https://golang.org/pkg/time/#Time ) .
9
10
10
11
<hr >
11
12
** ` time.Parse(val string) Time ` **
12
13
13
14
Parses specified string using RFC3339 layout. Returns an instance of Golang [ Time] ( https://golang.org/pkg/time/#Time ) .
14
15
15
16
### ** strings**
17
+
16
18
String related functions.
17
19
18
20
<hr >
19
21
** ` strings.ReplaceAll() string ` **
20
22
21
23
Executes function built-in Golang [ strings.ReplaceAll] ( https://pkg.go.dev/strings#ReplaceAll ) function.
22
24
25
+ <hr >
26
+ ** ` strings.ToUpper() string ` **
27
+
28
+ Executes function built-in Golang [ strings.ToUpper] ( https://pkg.go.dev/strings#ToUpper ) function.
29
+
30
+ <hr >
31
+ ** ` strings.ToLower() string ` **
32
+
33
+ Executes function built-in Golang [ strings.ToLower] ( https://pkg.go.dev/strings#ToLower ) function.
34
+
23
35
### ** sync**
24
36
25
37
<hr >
@@ -28,6 +40,7 @@ Executes function built-in Golang [strings.ReplaceAll](https://pkg.go.dev/string
28
40
Returns the ` info ` item value by given name stored in the Argo CD App sync operation.
29
41
30
42
### ** repo**
43
+
31
44
Functions that provide additional information about Application source repository.
32
45
<hr >
33
46
** ` repo.RepoURLToHTTPS(url string) string ` **
@@ -46,7 +59,7 @@ Returns commit metadata. The commit must belong to the application source reposi
46
59
47
60
* ` Message string ` commit message
48
61
* ` Author string ` - commit author
49
- * ` Date time.Time ` - commit creation date
62
+ * ` Date time.Time ` - commit creation date
50
63
* ` Tags []string ` - Associated tags
51
64
52
65
<hr >
@@ -56,15 +69,15 @@ Returns application details. `AppDetail` fields:
56
69
57
70
* ` Type string ` - AppDetail type
58
71
* ` Helm HelmAppSpec ` - Helm details
59
- * Fields :
60
- * ` Name string `
61
- * ` ValueFiles []string `
62
- * ` Parameters []*v1alpha1.HelmParameter `
63
- * ` Values string `
64
- * ` FileParameters []*v1alpha1.HelmFileParameter `
65
- * Methods :
66
- * ` GetParameterValueByName(Name string) ` Retrieve value by name in Parameters field
67
- * ` GetFileParameterPathByName(Name string) ` Retrieve path by name in FileParameters field
72
+ * Fields :
73
+ * ` Name string `
74
+ * ` ValueFiles []string `
75
+ * ` Parameters []*v1alpha1.HelmParameter `
76
+ * ` Values string `
77
+ * ` FileParameters []*v1alpha1.HelmFileParameter `
78
+ * Methods :
79
+ * ` GetParameterValueByName(Name string) ` Retrieve value by name in Parameters field
80
+ * ` GetFileParameterPathByName(Name string) ` Retrieve path by name in FileParameters field
68
81
* ` Ksonnet *apiclient.KsonnetAppSpec ` - Ksonnet details
69
82
* ` Kustomize *apiclient.KustomizeAppSpec ` - Kustomize details
70
83
* ` Directory *apiclient.DirectoryAppSpec ` - Directory details
0 commit comments