You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description: "Status information for the application. **Note**: this is not guaranteed to be up to date immediately after creating/updating an application unless `wait=true`.",
1821
+
Computed: true,
1822
+
Elem: &schema.Resource{
1823
+
Schema: map[string]*schema.Schema{
1824
+
"conditions": {
1825
+
Type: schema.TypeList,
1826
+
Description: "List of currently observed application conditions.",
1827
+
Computed: true,
1828
+
Elem: &schema.Resource{
1829
+
Schema: map[string]*schema.Schema{
1830
+
"message": {
1831
+
Type: schema.TypeString,
1832
+
Description: "Human-readable message indicating details about condition.",
1833
+
Computed: true,
1834
+
},
1835
+
"last_transition_time": {
1836
+
Type: schema.TypeString,
1837
+
Description: "The time the condition was last observed.",
1838
+
Computed: true,
1839
+
},
1840
+
"type": {
1841
+
Type: schema.TypeString,
1842
+
Description: "Application condition type.",
1843
+
Computed: true,
1844
+
},
1845
+
},
1846
+
},
1847
+
},
1848
+
"health": {
1849
+
Type: schema.TypeList,
1850
+
Description: "Application's current health status.",
1851
+
Computed: true,
1852
+
Elem: resourceApplicationHealthStatus(),
1853
+
},
1854
+
"operation_state": {
1855
+
Type: schema.TypeList,
1856
+
Description: "Information about any ongoing operations, such as a sync.",
1857
+
Computed: true,
1858
+
Elem: &schema.Resource{
1859
+
Schema: map[string]*schema.Schema{
1860
+
"finished_at": {
1861
+
Type: schema.TypeString,
1862
+
Description: "Time of operation completion.",
1863
+
Computed: true,
1864
+
},
1865
+
"message": {
1866
+
Type: schema.TypeString,
1867
+
Description: "Any pertinent messages when attempting to perform operation (typically errors).",
1868
+
Computed: true,
1869
+
},
1870
+
"phase": {
1871
+
Type: schema.TypeString,
1872
+
Description: "The current phase of the operation.",
1873
+
Computed: true,
1874
+
},
1875
+
"retry_count": {
1876
+
Type: schema.TypeString,
1877
+
Description: "Count of operation retries.",
1878
+
Computed: true,
1879
+
},
1880
+
"started_at": {
1881
+
Type: schema.TypeString,
1882
+
Description: "Time of operation start.",
1883
+
Computed: true,
1884
+
},
1885
+
},
1886
+
},
1887
+
},
1888
+
"reconciled_at": {
1889
+
Type: schema.TypeString,
1890
+
Description: "When the application state was reconciled using the latest git version.",
1891
+
Computed: true,
1892
+
},
1893
+
"resources": {
1894
+
Type: schema.TypeList,
1895
+
Description: "List of Kubernetes resources managed by this application.",
1896
+
Computed: true,
1897
+
Elem: &schema.Resource{
1898
+
Schema: map[string]*schema.Schema{
1899
+
"group": {
1900
+
Type: schema.TypeString,
1901
+
Description: "The Kubernetes resource Group.",
1902
+
Computed: true,
1903
+
},
1904
+
"health": {
1905
+
Type: schema.TypeList,
1906
+
Description: "Resource health status.",
1907
+
Computed: true,
1908
+
Elem: resourceApplicationHealthStatus(),
1909
+
},
1910
+
"kind": {
1911
+
Type: schema.TypeString,
1912
+
Description: "The Kubernetes resource Kind.",
1913
+
Computed: true,
1914
+
},
1915
+
"hook": {
1916
+
Type: schema.TypeBool,
1917
+
Description: "Indicates whether or not this resource has a hook annotation.",
1918
+
Computed: true,
1919
+
},
1920
+
"name": {
1921
+
Type: schema.TypeString,
1922
+
Description: "The Kubernetes resource Name.",
1923
+
Computed: true,
1924
+
},
1925
+
"namespace": {
1926
+
Type: schema.TypeString,
1927
+
Description: "The Kubernetes resource Namespace.",
1928
+
Computed: true,
1929
+
},
1930
+
"requires_pruning": {
1931
+
Type: schema.TypeBool,
1932
+
Description: "Indicates if the resources requires pruning or not.",
1933
+
Computed: true,
1934
+
},
1935
+
"status": {
1936
+
Type: schema.TypeString,
1937
+
Description: "Resource sync status.",
1938
+
Computed: true,
1939
+
},
1940
+
"sync_wave": {
1941
+
Type: schema.TypeString,
1942
+
Description: "Sync wave.",
1943
+
Computed: true,
1944
+
},
1945
+
"version": {
1946
+
Type: schema.TypeString,
1947
+
Description: "The Kubernetes resource Version.",
1948
+
Computed: true,
1949
+
},
1950
+
},
1951
+
},
1952
+
},
1953
+
"summary": {
1954
+
Type: schema.TypeList,
1955
+
Description: "List of URLs and container images used by this application.",
1956
+
Computed: true,
1957
+
Elem: &schema.Resource{
1958
+
Schema: map[string]*schema.Schema{
1959
+
"external_urls": {
1960
+
Type: schema.TypeList,
1961
+
Description: "All external URLs of application child resources.",
1962
+
Computed: true,
1963
+
Elem: schema.TypeString,
1964
+
},
1965
+
"images": {
1966
+
Type: schema.TypeList,
1967
+
Description: "All images of application child resources.",
1968
+
Computed: true,
1969
+
Elem: schema.TypeString,
1970
+
},
1971
+
},
1972
+
},
1973
+
},
1974
+
"sync": {
1975
+
Type: schema.TypeList,
1976
+
Description: "Application's current sync status",
1977
+
Computed: true,
1978
+
Elem: &schema.Resource{
1979
+
Schema: map[string]*schema.Schema{
1980
+
"revision": {
1981
+
Type: schema.TypeString,
1982
+
Description: "Information about the revision the comparison has been performed to.",
1983
+
Computed: true,
1984
+
},
1985
+
"revisions": {
1986
+
Type: schema.TypeList,
1987
+
Description: "Information about the revision(s) the comparison has been performed to.",
0 commit comments