pulumi-digitalocean 4.32.0a1726292068__py3-none-any.whl → 4.32.0a1726481189__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-digitalocean might be problematic. Click here for more details.
- pulumi_digitalocean/_inputs.py +543 -57
- pulumi_digitalocean/app.py +90 -4
- pulumi_digitalocean/database_cluster.py +28 -0
- pulumi_digitalocean/get_app.py +14 -1
- pulumi_digitalocean/outputs.py +1011 -72
- pulumi_digitalocean/pulumi-plugin.json +1 -1
- {pulumi_digitalocean-4.32.0a1726292068.dist-info → pulumi_digitalocean-4.32.0a1726481189.dist-info}/METADATA +1 -1
- {pulumi_digitalocean-4.32.0a1726292068.dist-info → pulumi_digitalocean-4.32.0a1726481189.dist-info}/RECORD +10 -10
- {pulumi_digitalocean-4.32.0a1726292068.dist-info → pulumi_digitalocean-4.32.0a1726481189.dist-info}/WHEEL +1 -1
- {pulumi_digitalocean-4.32.0a1726292068.dist-info → pulumi_digitalocean-4.32.0a1726481189.dist-info}/top_level.txt +0 -0
pulumi_digitalocean/_inputs.py
CHANGED
|
@@ -29,6 +29,8 @@ __all__ = [
|
|
|
29
29
|
'AppSpecFunctionLogDestinationArgs',
|
|
30
30
|
'AppSpecFunctionLogDestinationDatadogArgs',
|
|
31
31
|
'AppSpecFunctionLogDestinationLogtailArgs',
|
|
32
|
+
'AppSpecFunctionLogDestinationOpenSearchArgs',
|
|
33
|
+
'AppSpecFunctionLogDestinationOpenSearchBasicAuthArgs',
|
|
32
34
|
'AppSpecFunctionLogDestinationPapertrailArgs',
|
|
33
35
|
'AppSpecFunctionRouteArgs',
|
|
34
36
|
'AppSpecIngressArgs',
|
|
@@ -50,6 +52,8 @@ __all__ = [
|
|
|
50
52
|
'AppSpecJobLogDestinationArgs',
|
|
51
53
|
'AppSpecJobLogDestinationDatadogArgs',
|
|
52
54
|
'AppSpecJobLogDestinationLogtailArgs',
|
|
55
|
+
'AppSpecJobLogDestinationOpenSearchArgs',
|
|
56
|
+
'AppSpecJobLogDestinationOpenSearchBasicAuthArgs',
|
|
53
57
|
'AppSpecJobLogDestinationPapertrailArgs',
|
|
54
58
|
'AppSpecServiceArgs',
|
|
55
59
|
'AppSpecServiceAlertArgs',
|
|
@@ -68,6 +72,8 @@ __all__ = [
|
|
|
68
72
|
'AppSpecServiceLogDestinationArgs',
|
|
69
73
|
'AppSpecServiceLogDestinationDatadogArgs',
|
|
70
74
|
'AppSpecServiceLogDestinationLogtailArgs',
|
|
75
|
+
'AppSpecServiceLogDestinationOpenSearchArgs',
|
|
76
|
+
'AppSpecServiceLogDestinationOpenSearchBasicAuthArgs',
|
|
71
77
|
'AppSpecServiceLogDestinationPapertrailArgs',
|
|
72
78
|
'AppSpecServiceRouteArgs',
|
|
73
79
|
'AppSpecStaticSiteArgs',
|
|
@@ -89,6 +95,8 @@ __all__ = [
|
|
|
89
95
|
'AppSpecWorkerLogDestinationArgs',
|
|
90
96
|
'AppSpecWorkerLogDestinationDatadogArgs',
|
|
91
97
|
'AppSpecWorkerLogDestinationLogtailArgs',
|
|
98
|
+
'AppSpecWorkerLogDestinationOpenSearchArgs',
|
|
99
|
+
'AppSpecWorkerLogDestinationOpenSearchBasicAuthArgs',
|
|
92
100
|
'AppSpecWorkerLogDestinationPapertrailArgs',
|
|
93
101
|
'DatabaseClusterBackupRestoreArgs',
|
|
94
102
|
'DatabaseClusterMaintenanceWindowArgs',
|
|
@@ -224,11 +232,11 @@ class AppSpecArgs:
|
|
|
224
232
|
static_sites: Optional[pulumi.Input[Sequence[pulumi.Input['AppSpecStaticSiteArgs']]]] = None,
|
|
225
233
|
workers: Optional[pulumi.Input[Sequence[pulumi.Input['AppSpecWorkerArgs']]]] = None):
|
|
226
234
|
"""
|
|
227
|
-
:param pulumi.Input[str] name: The name of the
|
|
228
|
-
:param pulumi.Input[Sequence[pulumi.Input['AppSpecAlertArgs']]] alerts: Describes an alert policy for the
|
|
235
|
+
:param pulumi.Input[str] name: The name of the component.
|
|
236
|
+
:param pulumi.Input[Sequence[pulumi.Input['AppSpecAlertArgs']]] alerts: Describes an alert policy for the component.
|
|
229
237
|
:param pulumi.Input[Sequence[pulumi.Input['AppSpecDomainNameArgs']]] domain_names: Describes a domain where the application will be made available.
|
|
230
238
|
:param pulumi.Input[Sequence[pulumi.Input['AppSpecEgressArgs']]] egresses: Specification for app egress configurations.
|
|
231
|
-
:param pulumi.Input[Sequence[pulumi.Input['AppSpecEnvArgs']]] envs: Describes an
|
|
239
|
+
:param pulumi.Input[Sequence[pulumi.Input['AppSpecEnvArgs']]] envs: Describes an environment variable made available to an app competent.
|
|
232
240
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] features: A list of the features applied to the app. The default buildpack can be overridden here. List of available buildpacks can be found using the [doctl CLI](https://docs.digitalocean.com/reference/doctl/reference/apps/list-buildpacks/)
|
|
233
241
|
:param pulumi.Input['AppSpecIngressArgs'] ingress: Specification for component routing, rewrites, and redirects.
|
|
234
242
|
:param pulumi.Input[str] region: The slug for the DigitalOcean data center region hosting the app.
|
|
@@ -270,7 +278,7 @@ class AppSpecArgs:
|
|
|
270
278
|
@pulumi.getter
|
|
271
279
|
def name(self) -> pulumi.Input[str]:
|
|
272
280
|
"""
|
|
273
|
-
The name of the
|
|
281
|
+
The name of the component.
|
|
274
282
|
"""
|
|
275
283
|
return pulumi.get(self, "name")
|
|
276
284
|
|
|
@@ -282,7 +290,7 @@ class AppSpecArgs:
|
|
|
282
290
|
@pulumi.getter
|
|
283
291
|
def alerts(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['AppSpecAlertArgs']]]]:
|
|
284
292
|
"""
|
|
285
|
-
Describes an alert policy for the
|
|
293
|
+
Describes an alert policy for the component.
|
|
286
294
|
"""
|
|
287
295
|
return pulumi.get(self, "alerts")
|
|
288
296
|
|
|
@@ -337,7 +345,7 @@ class AppSpecArgs:
|
|
|
337
345
|
@pulumi.getter
|
|
338
346
|
def envs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['AppSpecEnvArgs']]]]:
|
|
339
347
|
"""
|
|
340
|
-
Describes an
|
|
348
|
+
Describes an environment variable made available to an app competent.
|
|
341
349
|
"""
|
|
342
350
|
return pulumi.get(self, "envs")
|
|
343
351
|
|
|
@@ -433,7 +441,7 @@ class AppSpecAlertArgs:
|
|
|
433
441
|
rule: pulumi.Input[str],
|
|
434
442
|
disabled: Optional[pulumi.Input[bool]] = None):
|
|
435
443
|
"""
|
|
436
|
-
:param pulumi.Input[str] rule: The type of the alert to configure.
|
|
444
|
+
:param pulumi.Input[str] rule: The type of the alert to configure. Component app alert policies can be: `CPU_UTILIZATION`, `MEM_UTILIZATION`, or `RESTART_COUNT`.
|
|
437
445
|
:param pulumi.Input[bool] disabled: Determines whether or not the alert is disabled (default: `false`).
|
|
438
446
|
"""
|
|
439
447
|
pulumi.set(__self__, "rule", rule)
|
|
@@ -444,7 +452,7 @@ class AppSpecAlertArgs:
|
|
|
444
452
|
@pulumi.getter
|
|
445
453
|
def rule(self) -> pulumi.Input[str]:
|
|
446
454
|
"""
|
|
447
|
-
The type of the alert to configure.
|
|
455
|
+
The type of the alert to configure. Component app alert policies can be: `CPU_UTILIZATION`, `MEM_UTILIZATION`, or `RESTART_COUNT`.
|
|
448
456
|
"""
|
|
449
457
|
return pulumi.get(self, "rule")
|
|
450
458
|
|
|
@@ -776,7 +784,7 @@ class AppSpecFunctionArgs:
|
|
|
776
784
|
:param pulumi.Input[Sequence[pulumi.Input['AppSpecFunctionAlertArgs']]] alerts: Describes an alert policy for the component.
|
|
777
785
|
:param pulumi.Input['AppSpecFunctionCorsArgs'] cors: The [CORS](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS) policies of the app.
|
|
778
786
|
:param pulumi.Input[Sequence[pulumi.Input['AppSpecFunctionEnvArgs']]] envs: Describes an environment variable made available to an app competent.
|
|
779
|
-
:param pulumi.Input['AppSpecFunctionGitArgs'] git: A Git repo to use as the component's source. The repository must be able to be cloned without authentication.
|
|
787
|
+
:param pulumi.Input['AppSpecFunctionGitArgs'] git: A Git repo to use as the component's source. The repository must be able to be cloned without authentication. Only one of `git`, `github` or `gitlab` may be set.
|
|
780
788
|
:param pulumi.Input['AppSpecFunctionGithubArgs'] github: A GitHub repo to use as the component's source. DigitalOcean App Platform must have [access to the repository](https://cloud.digitalocean.com/apps/github/install). Only one of `git`, `github`, `gitlab`, or `image` may be set.
|
|
781
789
|
:param pulumi.Input['AppSpecFunctionGitlabArgs'] gitlab: A Gitlab repo to use as the component's source. DigitalOcean App Platform must have [access to the repository](https://cloud.digitalocean.com/apps/gitlab/install). Only one of `git`, `github`, `gitlab`, or `image` may be set.
|
|
782
790
|
:param pulumi.Input[Sequence[pulumi.Input['AppSpecFunctionLogDestinationArgs']]] log_destinations: Describes a log forwarding destination.
|
|
@@ -862,7 +870,7 @@ class AppSpecFunctionArgs:
|
|
|
862
870
|
@pulumi.getter
|
|
863
871
|
def git(self) -> Optional[pulumi.Input['AppSpecFunctionGitArgs']]:
|
|
864
872
|
"""
|
|
865
|
-
A Git repo to use as the component's source. The repository must be able to be cloned without authentication.
|
|
873
|
+
A Git repo to use as the component's source. The repository must be able to be cloned without authentication. Only one of `git`, `github` or `gitlab` may be set.
|
|
866
874
|
"""
|
|
867
875
|
return pulumi.get(self, "git")
|
|
868
876
|
|
|
@@ -1403,11 +1411,13 @@ class AppSpecFunctionLogDestinationArgs:
|
|
|
1403
1411
|
name: pulumi.Input[str],
|
|
1404
1412
|
datadog: Optional[pulumi.Input['AppSpecFunctionLogDestinationDatadogArgs']] = None,
|
|
1405
1413
|
logtail: Optional[pulumi.Input['AppSpecFunctionLogDestinationLogtailArgs']] = None,
|
|
1414
|
+
open_search: Optional[pulumi.Input['AppSpecFunctionLogDestinationOpenSearchArgs']] = None,
|
|
1406
1415
|
papertrail: Optional[pulumi.Input['AppSpecFunctionLogDestinationPapertrailArgs']] = None):
|
|
1407
1416
|
"""
|
|
1408
1417
|
:param pulumi.Input[str] name: Name of the log destination. Minimum length: 2. Maximum length: 42.
|
|
1409
1418
|
:param pulumi.Input['AppSpecFunctionLogDestinationDatadogArgs'] datadog: Datadog configuration.
|
|
1410
1419
|
:param pulumi.Input['AppSpecFunctionLogDestinationLogtailArgs'] logtail: Logtail configuration.
|
|
1420
|
+
:param pulumi.Input['AppSpecFunctionLogDestinationOpenSearchArgs'] open_search: OpenSearch configuration.
|
|
1411
1421
|
:param pulumi.Input['AppSpecFunctionLogDestinationPapertrailArgs'] papertrail: Papertrail configuration.
|
|
1412
1422
|
"""
|
|
1413
1423
|
pulumi.set(__self__, "name", name)
|
|
@@ -1415,6 +1425,8 @@ class AppSpecFunctionLogDestinationArgs:
|
|
|
1415
1425
|
pulumi.set(__self__, "datadog", datadog)
|
|
1416
1426
|
if logtail is not None:
|
|
1417
1427
|
pulumi.set(__self__, "logtail", logtail)
|
|
1428
|
+
if open_search is not None:
|
|
1429
|
+
pulumi.set(__self__, "open_search", open_search)
|
|
1418
1430
|
if papertrail is not None:
|
|
1419
1431
|
pulumi.set(__self__, "papertrail", papertrail)
|
|
1420
1432
|
|
|
@@ -1454,6 +1466,18 @@ class AppSpecFunctionLogDestinationArgs:
|
|
|
1454
1466
|
def logtail(self, value: Optional[pulumi.Input['AppSpecFunctionLogDestinationLogtailArgs']]):
|
|
1455
1467
|
pulumi.set(self, "logtail", value)
|
|
1456
1468
|
|
|
1469
|
+
@property
|
|
1470
|
+
@pulumi.getter(name="openSearch")
|
|
1471
|
+
def open_search(self) -> Optional[pulumi.Input['AppSpecFunctionLogDestinationOpenSearchArgs']]:
|
|
1472
|
+
"""
|
|
1473
|
+
OpenSearch configuration.
|
|
1474
|
+
"""
|
|
1475
|
+
return pulumi.get(self, "open_search")
|
|
1476
|
+
|
|
1477
|
+
@open_search.setter
|
|
1478
|
+
def open_search(self, value: Optional[pulumi.Input['AppSpecFunctionLogDestinationOpenSearchArgs']]):
|
|
1479
|
+
pulumi.set(self, "open_search", value)
|
|
1480
|
+
|
|
1457
1481
|
@property
|
|
1458
1482
|
@pulumi.getter
|
|
1459
1483
|
def papertrail(self) -> Optional[pulumi.Input['AppSpecFunctionLogDestinationPapertrailArgs']]:
|
|
@@ -1511,8 +1535,6 @@ class AppSpecFunctionLogDestinationLogtailArgs:
|
|
|
1511
1535
|
token: pulumi.Input[str]):
|
|
1512
1536
|
"""
|
|
1513
1537
|
:param pulumi.Input[str] token: Logtail token.
|
|
1514
|
-
|
|
1515
|
-
A `database` can contain:
|
|
1516
1538
|
"""
|
|
1517
1539
|
pulumi.set(__self__, "token", token)
|
|
1518
1540
|
|
|
@@ -1521,8 +1543,6 @@ class AppSpecFunctionLogDestinationLogtailArgs:
|
|
|
1521
1543
|
def token(self) -> pulumi.Input[str]:
|
|
1522
1544
|
"""
|
|
1523
1545
|
Logtail token.
|
|
1524
|
-
|
|
1525
|
-
A `database` can contain:
|
|
1526
1546
|
"""
|
|
1527
1547
|
return pulumi.get(self, "token")
|
|
1528
1548
|
|
|
@@ -1531,6 +1551,115 @@ class AppSpecFunctionLogDestinationLogtailArgs:
|
|
|
1531
1551
|
pulumi.set(self, "token", value)
|
|
1532
1552
|
|
|
1533
1553
|
|
|
1554
|
+
@pulumi.input_type
|
|
1555
|
+
class AppSpecFunctionLogDestinationOpenSearchArgs:
|
|
1556
|
+
def __init__(__self__, *,
|
|
1557
|
+
basic_auth: pulumi.Input['AppSpecFunctionLogDestinationOpenSearchBasicAuthArgs'],
|
|
1558
|
+
cluster_name: Optional[pulumi.Input[str]] = None,
|
|
1559
|
+
endpoint: Optional[pulumi.Input[str]] = None,
|
|
1560
|
+
index_name: Optional[pulumi.Input[str]] = None):
|
|
1561
|
+
"""
|
|
1562
|
+
:param pulumi.Input['AppSpecFunctionLogDestinationOpenSearchBasicAuthArgs'] basic_auth: Basic authentication details.
|
|
1563
|
+
:param pulumi.Input[str] cluster_name: The name of the underlying DigitalOcean DBaaS cluster. This is required for production databases. For dev databases, if `cluster_name` is not set, a new cluster will be provisioned.
|
|
1564
|
+
:param pulumi.Input[str] endpoint: OpenSearch endpoint.
|
|
1565
|
+
:param pulumi.Input[str] index_name: OpenSearch index name.
|
|
1566
|
+
"""
|
|
1567
|
+
pulumi.set(__self__, "basic_auth", basic_auth)
|
|
1568
|
+
if cluster_name is not None:
|
|
1569
|
+
pulumi.set(__self__, "cluster_name", cluster_name)
|
|
1570
|
+
if endpoint is not None:
|
|
1571
|
+
pulumi.set(__self__, "endpoint", endpoint)
|
|
1572
|
+
if index_name is not None:
|
|
1573
|
+
pulumi.set(__self__, "index_name", index_name)
|
|
1574
|
+
|
|
1575
|
+
@property
|
|
1576
|
+
@pulumi.getter(name="basicAuth")
|
|
1577
|
+
def basic_auth(self) -> pulumi.Input['AppSpecFunctionLogDestinationOpenSearchBasicAuthArgs']:
|
|
1578
|
+
"""
|
|
1579
|
+
Basic authentication details.
|
|
1580
|
+
"""
|
|
1581
|
+
return pulumi.get(self, "basic_auth")
|
|
1582
|
+
|
|
1583
|
+
@basic_auth.setter
|
|
1584
|
+
def basic_auth(self, value: pulumi.Input['AppSpecFunctionLogDestinationOpenSearchBasicAuthArgs']):
|
|
1585
|
+
pulumi.set(self, "basic_auth", value)
|
|
1586
|
+
|
|
1587
|
+
@property
|
|
1588
|
+
@pulumi.getter(name="clusterName")
|
|
1589
|
+
def cluster_name(self) -> Optional[pulumi.Input[str]]:
|
|
1590
|
+
"""
|
|
1591
|
+
The name of the underlying DigitalOcean DBaaS cluster. This is required for production databases. For dev databases, if `cluster_name` is not set, a new cluster will be provisioned.
|
|
1592
|
+
"""
|
|
1593
|
+
return pulumi.get(self, "cluster_name")
|
|
1594
|
+
|
|
1595
|
+
@cluster_name.setter
|
|
1596
|
+
def cluster_name(self, value: Optional[pulumi.Input[str]]):
|
|
1597
|
+
pulumi.set(self, "cluster_name", value)
|
|
1598
|
+
|
|
1599
|
+
@property
|
|
1600
|
+
@pulumi.getter
|
|
1601
|
+
def endpoint(self) -> Optional[pulumi.Input[str]]:
|
|
1602
|
+
"""
|
|
1603
|
+
OpenSearch endpoint.
|
|
1604
|
+
"""
|
|
1605
|
+
return pulumi.get(self, "endpoint")
|
|
1606
|
+
|
|
1607
|
+
@endpoint.setter
|
|
1608
|
+
def endpoint(self, value: Optional[pulumi.Input[str]]):
|
|
1609
|
+
pulumi.set(self, "endpoint", value)
|
|
1610
|
+
|
|
1611
|
+
@property
|
|
1612
|
+
@pulumi.getter(name="indexName")
|
|
1613
|
+
def index_name(self) -> Optional[pulumi.Input[str]]:
|
|
1614
|
+
"""
|
|
1615
|
+
OpenSearch index name.
|
|
1616
|
+
"""
|
|
1617
|
+
return pulumi.get(self, "index_name")
|
|
1618
|
+
|
|
1619
|
+
@index_name.setter
|
|
1620
|
+
def index_name(self, value: Optional[pulumi.Input[str]]):
|
|
1621
|
+
pulumi.set(self, "index_name", value)
|
|
1622
|
+
|
|
1623
|
+
|
|
1624
|
+
@pulumi.input_type
|
|
1625
|
+
class AppSpecFunctionLogDestinationOpenSearchBasicAuthArgs:
|
|
1626
|
+
def __init__(__self__, *,
|
|
1627
|
+
password: Optional[pulumi.Input[str]] = None,
|
|
1628
|
+
user: Optional[pulumi.Input[str]] = None):
|
|
1629
|
+
"""
|
|
1630
|
+
:param pulumi.Input[str] password: Password for basic authentication.
|
|
1631
|
+
:param pulumi.Input[str] user: user for basic authentication.
|
|
1632
|
+
"""
|
|
1633
|
+
if password is not None:
|
|
1634
|
+
pulumi.set(__self__, "password", password)
|
|
1635
|
+
if user is not None:
|
|
1636
|
+
pulumi.set(__self__, "user", user)
|
|
1637
|
+
|
|
1638
|
+
@property
|
|
1639
|
+
@pulumi.getter
|
|
1640
|
+
def password(self) -> Optional[pulumi.Input[str]]:
|
|
1641
|
+
"""
|
|
1642
|
+
Password for basic authentication.
|
|
1643
|
+
"""
|
|
1644
|
+
return pulumi.get(self, "password")
|
|
1645
|
+
|
|
1646
|
+
@password.setter
|
|
1647
|
+
def password(self, value: Optional[pulumi.Input[str]]):
|
|
1648
|
+
pulumi.set(self, "password", value)
|
|
1649
|
+
|
|
1650
|
+
@property
|
|
1651
|
+
@pulumi.getter
|
|
1652
|
+
def user(self) -> Optional[pulumi.Input[str]]:
|
|
1653
|
+
"""
|
|
1654
|
+
user for basic authentication.
|
|
1655
|
+
"""
|
|
1656
|
+
return pulumi.get(self, "user")
|
|
1657
|
+
|
|
1658
|
+
@user.setter
|
|
1659
|
+
def user(self, value: Optional[pulumi.Input[str]]):
|
|
1660
|
+
pulumi.set(self, "user", value)
|
|
1661
|
+
|
|
1662
|
+
|
|
1534
1663
|
@pulumi.input_type
|
|
1535
1664
|
class AppSpecFunctionLogDestinationPapertrailArgs:
|
|
1536
1665
|
def __init__(__self__, *,
|
|
@@ -1751,11 +1880,11 @@ class AppSpecIngressRuleCorsArgs:
|
|
|
1751
1880
|
expose_headers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
1752
1881
|
max_age: Optional[pulumi.Input[str]] = None):
|
|
1753
1882
|
"""
|
|
1754
|
-
:param pulumi.Input[bool] allow_credentials: Whether browsers should expose the response to the client-side JavaScript code when the request
|
|
1755
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] allow_headers: The set of allowed HTTP request headers. This configures the Access-Control-Allow-Headers header.
|
|
1756
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] allow_methods: The set of allowed HTTP methods. This configures the Access-Control-Allow-Methods header.
|
|
1883
|
+
:param pulumi.Input[bool] allow_credentials: Whether browsers should expose the response to the client-side JavaScript code when the request's credentials mode is `include`. This configures the `Access-Control-Allow-Credentials` header.
|
|
1884
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] allow_headers: The set of allowed HTTP request headers. This configures the `Access-Control-Allow-Headers` header.
|
|
1885
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] allow_methods: The set of allowed HTTP methods. This configures the `Access-Control-Allow-Methods` header.
|
|
1757
1886
|
:param pulumi.Input['AppSpecIngressRuleCorsAllowOriginsArgs'] allow_origins: The `Access-Control-Allow-Origin` can be
|
|
1758
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] expose_headers: The set of HTTP response headers that browsers are allowed to access. This configures the Access-Control-Expose-Headers header.
|
|
1887
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] expose_headers: The set of HTTP response headers that browsers are allowed to access. This configures the `Access-Control-Expose-Headers` header.
|
|
1759
1888
|
:param pulumi.Input[str] max_age: An optional duration specifying how long browsers can cache the results of a preflight request. This configures the Access-Control-Max-Age header. Example: `5h30m`.
|
|
1760
1889
|
"""
|
|
1761
1890
|
if allow_credentials is not None:
|
|
@@ -1775,7 +1904,7 @@ class AppSpecIngressRuleCorsArgs:
|
|
|
1775
1904
|
@pulumi.getter(name="allowCredentials")
|
|
1776
1905
|
def allow_credentials(self) -> Optional[pulumi.Input[bool]]:
|
|
1777
1906
|
"""
|
|
1778
|
-
Whether browsers should expose the response to the client-side JavaScript code when the request
|
|
1907
|
+
Whether browsers should expose the response to the client-side JavaScript code when the request's credentials mode is `include`. This configures the `Access-Control-Allow-Credentials` header.
|
|
1779
1908
|
"""
|
|
1780
1909
|
return pulumi.get(self, "allow_credentials")
|
|
1781
1910
|
|
|
@@ -1787,7 +1916,7 @@ class AppSpecIngressRuleCorsArgs:
|
|
|
1787
1916
|
@pulumi.getter(name="allowHeaders")
|
|
1788
1917
|
def allow_headers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
1789
1918
|
"""
|
|
1790
|
-
The set of allowed HTTP request headers. This configures the Access-Control-Allow-Headers header.
|
|
1919
|
+
The set of allowed HTTP request headers. This configures the `Access-Control-Allow-Headers` header.
|
|
1791
1920
|
"""
|
|
1792
1921
|
return pulumi.get(self, "allow_headers")
|
|
1793
1922
|
|
|
@@ -1799,7 +1928,7 @@ class AppSpecIngressRuleCorsArgs:
|
|
|
1799
1928
|
@pulumi.getter(name="allowMethods")
|
|
1800
1929
|
def allow_methods(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
1801
1930
|
"""
|
|
1802
|
-
The set of allowed HTTP methods. This configures the Access-Control-Allow-Methods header.
|
|
1931
|
+
The set of allowed HTTP methods. This configures the `Access-Control-Allow-Methods` header.
|
|
1803
1932
|
"""
|
|
1804
1933
|
return pulumi.get(self, "allow_methods")
|
|
1805
1934
|
|
|
@@ -1823,7 +1952,7 @@ class AppSpecIngressRuleCorsArgs:
|
|
|
1823
1952
|
@pulumi.getter(name="exposeHeaders")
|
|
1824
1953
|
def expose_headers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
1825
1954
|
"""
|
|
1826
|
-
The set of HTTP response headers that browsers are allowed to access. This configures the Access-Control-Expose-Headers header.
|
|
1955
|
+
The set of HTTP response headers that browsers are allowed to access. This configures the `Access-Control-Expose-Headers` header.
|
|
1827
1956
|
"""
|
|
1828
1957
|
return pulumi.get(self, "expose_headers")
|
|
1829
1958
|
|
|
@@ -2062,7 +2191,7 @@ class AppSpecJobArgs:
|
|
|
2062
2191
|
:param pulumi.Input[str] dockerfile_path: The path to a Dockerfile relative to the root of the repo. If set, overrides usage of buildpacks.
|
|
2063
2192
|
:param pulumi.Input[str] environment_slug: An environment slug describing the type of this app.
|
|
2064
2193
|
:param pulumi.Input[Sequence[pulumi.Input['AppSpecJobEnvArgs']]] envs: Describes an environment variable made available to an app competent.
|
|
2065
|
-
:param pulumi.Input['AppSpecJobGitArgs'] git: A Git repo to use as the component's source. The repository must be able to be cloned without authentication.
|
|
2194
|
+
:param pulumi.Input['AppSpecJobGitArgs'] git: A Git repo to use as the component's source. The repository must be able to be cloned without authentication. Only one of `git`, `github` or `gitlab` may be set.
|
|
2066
2195
|
:param pulumi.Input['AppSpecJobGithubArgs'] github: A GitHub repo to use as the component's source. DigitalOcean App Platform must have [access to the repository](https://cloud.digitalocean.com/apps/github/install). Only one of `git`, `github`, `gitlab`, or `image` may be set.
|
|
2067
2196
|
:param pulumi.Input['AppSpecJobGitlabArgs'] gitlab: A Gitlab repo to use as the component's source. DigitalOcean App Platform must have [access to the repository](https://cloud.digitalocean.com/apps/gitlab/install). Only one of `git`, `github`, `gitlab`, or `image` may be set.
|
|
2068
2197
|
:param pulumi.Input['AppSpecJobImageArgs'] image: An image to use as the component's source. Only one of `git`, `github`, `gitlab`, or `image` may be set.
|
|
@@ -2185,7 +2314,7 @@ class AppSpecJobArgs:
|
|
|
2185
2314
|
@pulumi.getter
|
|
2186
2315
|
def git(self) -> Optional[pulumi.Input['AppSpecJobGitArgs']]:
|
|
2187
2316
|
"""
|
|
2188
|
-
A Git repo to use as the component's source. The repository must be able to be cloned without authentication.
|
|
2317
|
+
A Git repo to use as the component's source. The repository must be able to be cloned without authentication. Only one of `git`, `github` or `gitlab` may be set.
|
|
2189
2318
|
"""
|
|
2190
2319
|
return pulumi.get(self, "git")
|
|
2191
2320
|
|
|
@@ -2739,11 +2868,13 @@ class AppSpecJobLogDestinationArgs:
|
|
|
2739
2868
|
name: pulumi.Input[str],
|
|
2740
2869
|
datadog: Optional[pulumi.Input['AppSpecJobLogDestinationDatadogArgs']] = None,
|
|
2741
2870
|
logtail: Optional[pulumi.Input['AppSpecJobLogDestinationLogtailArgs']] = None,
|
|
2871
|
+
open_search: Optional[pulumi.Input['AppSpecJobLogDestinationOpenSearchArgs']] = None,
|
|
2742
2872
|
papertrail: Optional[pulumi.Input['AppSpecJobLogDestinationPapertrailArgs']] = None):
|
|
2743
2873
|
"""
|
|
2744
2874
|
:param pulumi.Input[str] name: Name of the log destination. Minimum length: 2. Maximum length: 42.
|
|
2745
2875
|
:param pulumi.Input['AppSpecJobLogDestinationDatadogArgs'] datadog: Datadog configuration.
|
|
2746
2876
|
:param pulumi.Input['AppSpecJobLogDestinationLogtailArgs'] logtail: Logtail configuration.
|
|
2877
|
+
:param pulumi.Input['AppSpecJobLogDestinationOpenSearchArgs'] open_search: OpenSearch configuration.
|
|
2747
2878
|
:param pulumi.Input['AppSpecJobLogDestinationPapertrailArgs'] papertrail: Papertrail configuration.
|
|
2748
2879
|
"""
|
|
2749
2880
|
pulumi.set(__self__, "name", name)
|
|
@@ -2751,6 +2882,8 @@ class AppSpecJobLogDestinationArgs:
|
|
|
2751
2882
|
pulumi.set(__self__, "datadog", datadog)
|
|
2752
2883
|
if logtail is not None:
|
|
2753
2884
|
pulumi.set(__self__, "logtail", logtail)
|
|
2885
|
+
if open_search is not None:
|
|
2886
|
+
pulumi.set(__self__, "open_search", open_search)
|
|
2754
2887
|
if papertrail is not None:
|
|
2755
2888
|
pulumi.set(__self__, "papertrail", papertrail)
|
|
2756
2889
|
|
|
@@ -2790,6 +2923,18 @@ class AppSpecJobLogDestinationArgs:
|
|
|
2790
2923
|
def logtail(self, value: Optional[pulumi.Input['AppSpecJobLogDestinationLogtailArgs']]):
|
|
2791
2924
|
pulumi.set(self, "logtail", value)
|
|
2792
2925
|
|
|
2926
|
+
@property
|
|
2927
|
+
@pulumi.getter(name="openSearch")
|
|
2928
|
+
def open_search(self) -> Optional[pulumi.Input['AppSpecJobLogDestinationOpenSearchArgs']]:
|
|
2929
|
+
"""
|
|
2930
|
+
OpenSearch configuration.
|
|
2931
|
+
"""
|
|
2932
|
+
return pulumi.get(self, "open_search")
|
|
2933
|
+
|
|
2934
|
+
@open_search.setter
|
|
2935
|
+
def open_search(self, value: Optional[pulumi.Input['AppSpecJobLogDestinationOpenSearchArgs']]):
|
|
2936
|
+
pulumi.set(self, "open_search", value)
|
|
2937
|
+
|
|
2793
2938
|
@property
|
|
2794
2939
|
@pulumi.getter
|
|
2795
2940
|
def papertrail(self) -> Optional[pulumi.Input['AppSpecJobLogDestinationPapertrailArgs']]:
|
|
@@ -2847,8 +2992,6 @@ class AppSpecJobLogDestinationLogtailArgs:
|
|
|
2847
2992
|
token: pulumi.Input[str]):
|
|
2848
2993
|
"""
|
|
2849
2994
|
:param pulumi.Input[str] token: Logtail token.
|
|
2850
|
-
|
|
2851
|
-
A `database` can contain:
|
|
2852
2995
|
"""
|
|
2853
2996
|
pulumi.set(__self__, "token", token)
|
|
2854
2997
|
|
|
@@ -2857,8 +3000,6 @@ class AppSpecJobLogDestinationLogtailArgs:
|
|
|
2857
3000
|
def token(self) -> pulumi.Input[str]:
|
|
2858
3001
|
"""
|
|
2859
3002
|
Logtail token.
|
|
2860
|
-
|
|
2861
|
-
A `database` can contain:
|
|
2862
3003
|
"""
|
|
2863
3004
|
return pulumi.get(self, "token")
|
|
2864
3005
|
|
|
@@ -2867,6 +3008,115 @@ class AppSpecJobLogDestinationLogtailArgs:
|
|
|
2867
3008
|
pulumi.set(self, "token", value)
|
|
2868
3009
|
|
|
2869
3010
|
|
|
3011
|
+
@pulumi.input_type
|
|
3012
|
+
class AppSpecJobLogDestinationOpenSearchArgs:
|
|
3013
|
+
def __init__(__self__, *,
|
|
3014
|
+
basic_auth: pulumi.Input['AppSpecJobLogDestinationOpenSearchBasicAuthArgs'],
|
|
3015
|
+
cluster_name: Optional[pulumi.Input[str]] = None,
|
|
3016
|
+
endpoint: Optional[pulumi.Input[str]] = None,
|
|
3017
|
+
index_name: Optional[pulumi.Input[str]] = None):
|
|
3018
|
+
"""
|
|
3019
|
+
:param pulumi.Input['AppSpecJobLogDestinationOpenSearchBasicAuthArgs'] basic_auth: Basic authentication details.
|
|
3020
|
+
:param pulumi.Input[str] cluster_name: The name of the underlying DigitalOcean DBaaS cluster. This is required for production databases. For dev databases, if `cluster_name` is not set, a new cluster will be provisioned.
|
|
3021
|
+
:param pulumi.Input[str] endpoint: OpenSearch endpoint.
|
|
3022
|
+
:param pulumi.Input[str] index_name: OpenSearch index name.
|
|
3023
|
+
"""
|
|
3024
|
+
pulumi.set(__self__, "basic_auth", basic_auth)
|
|
3025
|
+
if cluster_name is not None:
|
|
3026
|
+
pulumi.set(__self__, "cluster_name", cluster_name)
|
|
3027
|
+
if endpoint is not None:
|
|
3028
|
+
pulumi.set(__self__, "endpoint", endpoint)
|
|
3029
|
+
if index_name is not None:
|
|
3030
|
+
pulumi.set(__self__, "index_name", index_name)
|
|
3031
|
+
|
|
3032
|
+
@property
|
|
3033
|
+
@pulumi.getter(name="basicAuth")
|
|
3034
|
+
def basic_auth(self) -> pulumi.Input['AppSpecJobLogDestinationOpenSearchBasicAuthArgs']:
|
|
3035
|
+
"""
|
|
3036
|
+
Basic authentication details.
|
|
3037
|
+
"""
|
|
3038
|
+
return pulumi.get(self, "basic_auth")
|
|
3039
|
+
|
|
3040
|
+
@basic_auth.setter
|
|
3041
|
+
def basic_auth(self, value: pulumi.Input['AppSpecJobLogDestinationOpenSearchBasicAuthArgs']):
|
|
3042
|
+
pulumi.set(self, "basic_auth", value)
|
|
3043
|
+
|
|
3044
|
+
@property
|
|
3045
|
+
@pulumi.getter(name="clusterName")
|
|
3046
|
+
def cluster_name(self) -> Optional[pulumi.Input[str]]:
|
|
3047
|
+
"""
|
|
3048
|
+
The name of the underlying DigitalOcean DBaaS cluster. This is required for production databases. For dev databases, if `cluster_name` is not set, a new cluster will be provisioned.
|
|
3049
|
+
"""
|
|
3050
|
+
return pulumi.get(self, "cluster_name")
|
|
3051
|
+
|
|
3052
|
+
@cluster_name.setter
|
|
3053
|
+
def cluster_name(self, value: Optional[pulumi.Input[str]]):
|
|
3054
|
+
pulumi.set(self, "cluster_name", value)
|
|
3055
|
+
|
|
3056
|
+
@property
|
|
3057
|
+
@pulumi.getter
|
|
3058
|
+
def endpoint(self) -> Optional[pulumi.Input[str]]:
|
|
3059
|
+
"""
|
|
3060
|
+
OpenSearch endpoint.
|
|
3061
|
+
"""
|
|
3062
|
+
return pulumi.get(self, "endpoint")
|
|
3063
|
+
|
|
3064
|
+
@endpoint.setter
|
|
3065
|
+
def endpoint(self, value: Optional[pulumi.Input[str]]):
|
|
3066
|
+
pulumi.set(self, "endpoint", value)
|
|
3067
|
+
|
|
3068
|
+
@property
|
|
3069
|
+
@pulumi.getter(name="indexName")
|
|
3070
|
+
def index_name(self) -> Optional[pulumi.Input[str]]:
|
|
3071
|
+
"""
|
|
3072
|
+
OpenSearch index name.
|
|
3073
|
+
"""
|
|
3074
|
+
return pulumi.get(self, "index_name")
|
|
3075
|
+
|
|
3076
|
+
@index_name.setter
|
|
3077
|
+
def index_name(self, value: Optional[pulumi.Input[str]]):
|
|
3078
|
+
pulumi.set(self, "index_name", value)
|
|
3079
|
+
|
|
3080
|
+
|
|
3081
|
+
@pulumi.input_type
|
|
3082
|
+
class AppSpecJobLogDestinationOpenSearchBasicAuthArgs:
|
|
3083
|
+
def __init__(__self__, *,
|
|
3084
|
+
password: Optional[pulumi.Input[str]] = None,
|
|
3085
|
+
user: Optional[pulumi.Input[str]] = None):
|
|
3086
|
+
"""
|
|
3087
|
+
:param pulumi.Input[str] password: Password for basic authentication.
|
|
3088
|
+
:param pulumi.Input[str] user: user for basic authentication.
|
|
3089
|
+
"""
|
|
3090
|
+
if password is not None:
|
|
3091
|
+
pulumi.set(__self__, "password", password)
|
|
3092
|
+
if user is not None:
|
|
3093
|
+
pulumi.set(__self__, "user", user)
|
|
3094
|
+
|
|
3095
|
+
@property
|
|
3096
|
+
@pulumi.getter
|
|
3097
|
+
def password(self) -> Optional[pulumi.Input[str]]:
|
|
3098
|
+
"""
|
|
3099
|
+
Password for basic authentication.
|
|
3100
|
+
"""
|
|
3101
|
+
return pulumi.get(self, "password")
|
|
3102
|
+
|
|
3103
|
+
@password.setter
|
|
3104
|
+
def password(self, value: Optional[pulumi.Input[str]]):
|
|
3105
|
+
pulumi.set(self, "password", value)
|
|
3106
|
+
|
|
3107
|
+
@property
|
|
3108
|
+
@pulumi.getter
|
|
3109
|
+
def user(self) -> Optional[pulumi.Input[str]]:
|
|
3110
|
+
"""
|
|
3111
|
+
user for basic authentication.
|
|
3112
|
+
"""
|
|
3113
|
+
return pulumi.get(self, "user")
|
|
3114
|
+
|
|
3115
|
+
@user.setter
|
|
3116
|
+
def user(self, value: Optional[pulumi.Input[str]]):
|
|
3117
|
+
pulumi.set(self, "user", value)
|
|
3118
|
+
|
|
3119
|
+
|
|
2870
3120
|
@pulumi.input_type
|
|
2871
3121
|
class AppSpecJobLogDestinationPapertrailArgs:
|
|
2872
3122
|
def __init__(__self__, *,
|
|
@@ -2922,7 +3172,7 @@ class AppSpecServiceArgs:
|
|
|
2922
3172
|
:param pulumi.Input[str] dockerfile_path: The path to a Dockerfile relative to the root of the repo. If set, overrides usage of buildpacks.
|
|
2923
3173
|
:param pulumi.Input[str] environment_slug: An environment slug describing the type of this app.
|
|
2924
3174
|
:param pulumi.Input[Sequence[pulumi.Input['AppSpecServiceEnvArgs']]] envs: Describes an environment variable made available to an app competent.
|
|
2925
|
-
:param pulumi.Input['AppSpecServiceGitArgs'] git: A Git repo to use as the component's source. The repository must be able to be cloned without authentication.
|
|
3175
|
+
:param pulumi.Input['AppSpecServiceGitArgs'] git: A Git repo to use as the component's source. The repository must be able to be cloned without authentication. Only one of `git`, `github` or `gitlab` may be set.
|
|
2926
3176
|
:param pulumi.Input['AppSpecServiceGithubArgs'] github: A GitHub repo to use as the component's source. DigitalOcean App Platform must have [access to the repository](https://cloud.digitalocean.com/apps/github/install). Only one of `git`, `github`, `gitlab`, or `image` may be set.
|
|
2927
3177
|
:param pulumi.Input['AppSpecServiceGitlabArgs'] gitlab: A Gitlab repo to use as the component's source. DigitalOcean App Platform must have [access to the repository](https://cloud.digitalocean.com/apps/gitlab/install). Only one of `git`, `github`, `gitlab`, or `image` may be set.
|
|
2928
3178
|
:param pulumi.Input['AppSpecServiceHealthCheckArgs'] health_check: A health check to determine the availability of this component.
|
|
@@ -3085,7 +3335,7 @@ class AppSpecServiceArgs:
|
|
|
3085
3335
|
@pulumi.getter
|
|
3086
3336
|
def git(self) -> Optional[pulumi.Input['AppSpecServiceGitArgs']]:
|
|
3087
3337
|
"""
|
|
3088
|
-
A Git repo to use as the component's source. The repository must be able to be cloned without authentication.
|
|
3338
|
+
A Git repo to use as the component's source. The repository must be able to be cloned without authentication. Only one of `git`, `github` or `gitlab` may be set.
|
|
3089
3339
|
"""
|
|
3090
3340
|
return pulumi.get(self, "git")
|
|
3091
3341
|
|
|
@@ -4054,11 +4304,13 @@ class AppSpecServiceLogDestinationArgs:
|
|
|
4054
4304
|
name: pulumi.Input[str],
|
|
4055
4305
|
datadog: Optional[pulumi.Input['AppSpecServiceLogDestinationDatadogArgs']] = None,
|
|
4056
4306
|
logtail: Optional[pulumi.Input['AppSpecServiceLogDestinationLogtailArgs']] = None,
|
|
4307
|
+
open_search: Optional[pulumi.Input['AppSpecServiceLogDestinationOpenSearchArgs']] = None,
|
|
4057
4308
|
papertrail: Optional[pulumi.Input['AppSpecServiceLogDestinationPapertrailArgs']] = None):
|
|
4058
4309
|
"""
|
|
4059
4310
|
:param pulumi.Input[str] name: Name of the log destination. Minimum length: 2. Maximum length: 42.
|
|
4060
4311
|
:param pulumi.Input['AppSpecServiceLogDestinationDatadogArgs'] datadog: Datadog configuration.
|
|
4061
4312
|
:param pulumi.Input['AppSpecServiceLogDestinationLogtailArgs'] logtail: Logtail configuration.
|
|
4313
|
+
:param pulumi.Input['AppSpecServiceLogDestinationOpenSearchArgs'] open_search: OpenSearch configuration.
|
|
4062
4314
|
:param pulumi.Input['AppSpecServiceLogDestinationPapertrailArgs'] papertrail: Papertrail configuration.
|
|
4063
4315
|
"""
|
|
4064
4316
|
pulumi.set(__self__, "name", name)
|
|
@@ -4066,6 +4318,8 @@ class AppSpecServiceLogDestinationArgs:
|
|
|
4066
4318
|
pulumi.set(__self__, "datadog", datadog)
|
|
4067
4319
|
if logtail is not None:
|
|
4068
4320
|
pulumi.set(__self__, "logtail", logtail)
|
|
4321
|
+
if open_search is not None:
|
|
4322
|
+
pulumi.set(__self__, "open_search", open_search)
|
|
4069
4323
|
if papertrail is not None:
|
|
4070
4324
|
pulumi.set(__self__, "papertrail", papertrail)
|
|
4071
4325
|
|
|
@@ -4105,6 +4359,18 @@ class AppSpecServiceLogDestinationArgs:
|
|
|
4105
4359
|
def logtail(self, value: Optional[pulumi.Input['AppSpecServiceLogDestinationLogtailArgs']]):
|
|
4106
4360
|
pulumi.set(self, "logtail", value)
|
|
4107
4361
|
|
|
4362
|
+
@property
|
|
4363
|
+
@pulumi.getter(name="openSearch")
|
|
4364
|
+
def open_search(self) -> Optional[pulumi.Input['AppSpecServiceLogDestinationOpenSearchArgs']]:
|
|
4365
|
+
"""
|
|
4366
|
+
OpenSearch configuration.
|
|
4367
|
+
"""
|
|
4368
|
+
return pulumi.get(self, "open_search")
|
|
4369
|
+
|
|
4370
|
+
@open_search.setter
|
|
4371
|
+
def open_search(self, value: Optional[pulumi.Input['AppSpecServiceLogDestinationOpenSearchArgs']]):
|
|
4372
|
+
pulumi.set(self, "open_search", value)
|
|
4373
|
+
|
|
4108
4374
|
@property
|
|
4109
4375
|
@pulumi.getter
|
|
4110
4376
|
def papertrail(self) -> Optional[pulumi.Input['AppSpecServiceLogDestinationPapertrailArgs']]:
|
|
@@ -4162,8 +4428,6 @@ class AppSpecServiceLogDestinationLogtailArgs:
|
|
|
4162
4428
|
token: pulumi.Input[str]):
|
|
4163
4429
|
"""
|
|
4164
4430
|
:param pulumi.Input[str] token: Logtail token.
|
|
4165
|
-
|
|
4166
|
-
A `database` can contain:
|
|
4167
4431
|
"""
|
|
4168
4432
|
pulumi.set(__self__, "token", token)
|
|
4169
4433
|
|
|
@@ -4172,8 +4436,6 @@ class AppSpecServiceLogDestinationLogtailArgs:
|
|
|
4172
4436
|
def token(self) -> pulumi.Input[str]:
|
|
4173
4437
|
"""
|
|
4174
4438
|
Logtail token.
|
|
4175
|
-
|
|
4176
|
-
A `database` can contain:
|
|
4177
4439
|
"""
|
|
4178
4440
|
return pulumi.get(self, "token")
|
|
4179
4441
|
|
|
@@ -4182,6 +4444,115 @@ class AppSpecServiceLogDestinationLogtailArgs:
|
|
|
4182
4444
|
pulumi.set(self, "token", value)
|
|
4183
4445
|
|
|
4184
4446
|
|
|
4447
|
+
@pulumi.input_type
|
|
4448
|
+
class AppSpecServiceLogDestinationOpenSearchArgs:
|
|
4449
|
+
def __init__(__self__, *,
|
|
4450
|
+
basic_auth: pulumi.Input['AppSpecServiceLogDestinationOpenSearchBasicAuthArgs'],
|
|
4451
|
+
cluster_name: Optional[pulumi.Input[str]] = None,
|
|
4452
|
+
endpoint: Optional[pulumi.Input[str]] = None,
|
|
4453
|
+
index_name: Optional[pulumi.Input[str]] = None):
|
|
4454
|
+
"""
|
|
4455
|
+
:param pulumi.Input['AppSpecServiceLogDestinationOpenSearchBasicAuthArgs'] basic_auth: Basic authentication details.
|
|
4456
|
+
:param pulumi.Input[str] cluster_name: The name of the underlying DigitalOcean DBaaS cluster. This is required for production databases. For dev databases, if `cluster_name` is not set, a new cluster will be provisioned.
|
|
4457
|
+
:param pulumi.Input[str] endpoint: OpenSearch endpoint.
|
|
4458
|
+
:param pulumi.Input[str] index_name: OpenSearch index name.
|
|
4459
|
+
"""
|
|
4460
|
+
pulumi.set(__self__, "basic_auth", basic_auth)
|
|
4461
|
+
if cluster_name is not None:
|
|
4462
|
+
pulumi.set(__self__, "cluster_name", cluster_name)
|
|
4463
|
+
if endpoint is not None:
|
|
4464
|
+
pulumi.set(__self__, "endpoint", endpoint)
|
|
4465
|
+
if index_name is not None:
|
|
4466
|
+
pulumi.set(__self__, "index_name", index_name)
|
|
4467
|
+
|
|
4468
|
+
@property
|
|
4469
|
+
@pulumi.getter(name="basicAuth")
|
|
4470
|
+
def basic_auth(self) -> pulumi.Input['AppSpecServiceLogDestinationOpenSearchBasicAuthArgs']:
|
|
4471
|
+
"""
|
|
4472
|
+
Basic authentication details.
|
|
4473
|
+
"""
|
|
4474
|
+
return pulumi.get(self, "basic_auth")
|
|
4475
|
+
|
|
4476
|
+
@basic_auth.setter
|
|
4477
|
+
def basic_auth(self, value: pulumi.Input['AppSpecServiceLogDestinationOpenSearchBasicAuthArgs']):
|
|
4478
|
+
pulumi.set(self, "basic_auth", value)
|
|
4479
|
+
|
|
4480
|
+
@property
|
|
4481
|
+
@pulumi.getter(name="clusterName")
|
|
4482
|
+
def cluster_name(self) -> Optional[pulumi.Input[str]]:
|
|
4483
|
+
"""
|
|
4484
|
+
The name of the underlying DigitalOcean DBaaS cluster. This is required for production databases. For dev databases, if `cluster_name` is not set, a new cluster will be provisioned.
|
|
4485
|
+
"""
|
|
4486
|
+
return pulumi.get(self, "cluster_name")
|
|
4487
|
+
|
|
4488
|
+
@cluster_name.setter
|
|
4489
|
+
def cluster_name(self, value: Optional[pulumi.Input[str]]):
|
|
4490
|
+
pulumi.set(self, "cluster_name", value)
|
|
4491
|
+
|
|
4492
|
+
@property
|
|
4493
|
+
@pulumi.getter
|
|
4494
|
+
def endpoint(self) -> Optional[pulumi.Input[str]]:
|
|
4495
|
+
"""
|
|
4496
|
+
OpenSearch endpoint.
|
|
4497
|
+
"""
|
|
4498
|
+
return pulumi.get(self, "endpoint")
|
|
4499
|
+
|
|
4500
|
+
@endpoint.setter
|
|
4501
|
+
def endpoint(self, value: Optional[pulumi.Input[str]]):
|
|
4502
|
+
pulumi.set(self, "endpoint", value)
|
|
4503
|
+
|
|
4504
|
+
@property
|
|
4505
|
+
@pulumi.getter(name="indexName")
|
|
4506
|
+
def index_name(self) -> Optional[pulumi.Input[str]]:
|
|
4507
|
+
"""
|
|
4508
|
+
OpenSearch index name.
|
|
4509
|
+
"""
|
|
4510
|
+
return pulumi.get(self, "index_name")
|
|
4511
|
+
|
|
4512
|
+
@index_name.setter
|
|
4513
|
+
def index_name(self, value: Optional[pulumi.Input[str]]):
|
|
4514
|
+
pulumi.set(self, "index_name", value)
|
|
4515
|
+
|
|
4516
|
+
|
|
4517
|
+
@pulumi.input_type
|
|
4518
|
+
class AppSpecServiceLogDestinationOpenSearchBasicAuthArgs:
|
|
4519
|
+
def __init__(__self__, *,
|
|
4520
|
+
password: Optional[pulumi.Input[str]] = None,
|
|
4521
|
+
user: Optional[pulumi.Input[str]] = None):
|
|
4522
|
+
"""
|
|
4523
|
+
:param pulumi.Input[str] password: Password for basic authentication.
|
|
4524
|
+
:param pulumi.Input[str] user: user for basic authentication.
|
|
4525
|
+
"""
|
|
4526
|
+
if password is not None:
|
|
4527
|
+
pulumi.set(__self__, "password", password)
|
|
4528
|
+
if user is not None:
|
|
4529
|
+
pulumi.set(__self__, "user", user)
|
|
4530
|
+
|
|
4531
|
+
@property
|
|
4532
|
+
@pulumi.getter
|
|
4533
|
+
def password(self) -> Optional[pulumi.Input[str]]:
|
|
4534
|
+
"""
|
|
4535
|
+
Password for basic authentication.
|
|
4536
|
+
"""
|
|
4537
|
+
return pulumi.get(self, "password")
|
|
4538
|
+
|
|
4539
|
+
@password.setter
|
|
4540
|
+
def password(self, value: Optional[pulumi.Input[str]]):
|
|
4541
|
+
pulumi.set(self, "password", value)
|
|
4542
|
+
|
|
4543
|
+
@property
|
|
4544
|
+
@pulumi.getter
|
|
4545
|
+
def user(self) -> Optional[pulumi.Input[str]]:
|
|
4546
|
+
"""
|
|
4547
|
+
user for basic authentication.
|
|
4548
|
+
"""
|
|
4549
|
+
return pulumi.get(self, "user")
|
|
4550
|
+
|
|
4551
|
+
@user.setter
|
|
4552
|
+
def user(self, value: Optional[pulumi.Input[str]]):
|
|
4553
|
+
pulumi.set(self, "user", value)
|
|
4554
|
+
|
|
4555
|
+
|
|
4185
4556
|
@pulumi.input_type
|
|
4186
4557
|
class AppSpecServiceLogDestinationPapertrailArgs:
|
|
4187
4558
|
def __init__(__self__, *,
|
|
@@ -4270,7 +4641,7 @@ class AppSpecStaticSiteArgs:
|
|
|
4270
4641
|
:param pulumi.Input[str] environment_slug: An environment slug describing the type of this app.
|
|
4271
4642
|
:param pulumi.Input[Sequence[pulumi.Input['AppSpecStaticSiteEnvArgs']]] envs: Describes an environment variable made available to an app competent.
|
|
4272
4643
|
:param pulumi.Input[str] error_document: The name of the error document to use when serving this static site.
|
|
4273
|
-
:param pulumi.Input['AppSpecStaticSiteGitArgs'] git: A Git repo to use as the component's source. The repository must be able to be cloned without authentication.
|
|
4644
|
+
:param pulumi.Input['AppSpecStaticSiteGitArgs'] git: A Git repo to use as the component's source. The repository must be able to be cloned without authentication. Only one of `git`, `github` or `gitlab` may be set.
|
|
4274
4645
|
:param pulumi.Input['AppSpecStaticSiteGithubArgs'] github: A GitHub repo to use as the component's source. DigitalOcean App Platform must have [access to the repository](https://cloud.digitalocean.com/apps/github/install). Only one of `git`, `github`, `gitlab`, or `image` may be set.
|
|
4275
4646
|
:param pulumi.Input['AppSpecStaticSiteGitlabArgs'] gitlab: A Gitlab repo to use as the component's source. DigitalOcean App Platform must have [access to the repository](https://cloud.digitalocean.com/apps/gitlab/install). Only one of `git`, `github`, `gitlab`, or `image` may be set.
|
|
4276
4647
|
:param pulumi.Input[str] index_document: The name of the index document to use when serving this static site.
|
|
@@ -4415,7 +4786,7 @@ class AppSpecStaticSiteArgs:
|
|
|
4415
4786
|
@pulumi.getter
|
|
4416
4787
|
def git(self) -> Optional[pulumi.Input['AppSpecStaticSiteGitArgs']]:
|
|
4417
4788
|
"""
|
|
4418
|
-
A Git repo to use as the component's source. The repository must be able to be cloned without authentication.
|
|
4789
|
+
A Git repo to use as the component's source. The repository must be able to be cloned without authentication. Only one of `git`, `github` or `gitlab` may be set.
|
|
4419
4790
|
"""
|
|
4420
4791
|
return pulumi.get(self, "git")
|
|
4421
4792
|
|
|
@@ -4943,7 +5314,7 @@ class AppSpecWorkerArgs:
|
|
|
4943
5314
|
:param pulumi.Input[str] dockerfile_path: The path to a Dockerfile relative to the root of the repo. If set, overrides usage of buildpacks.
|
|
4944
5315
|
:param pulumi.Input[str] environment_slug: An environment slug describing the type of this app.
|
|
4945
5316
|
:param pulumi.Input[Sequence[pulumi.Input['AppSpecWorkerEnvArgs']]] envs: Describes an environment variable made available to an app competent.
|
|
4946
|
-
:param pulumi.Input['AppSpecWorkerGitArgs'] git: A Git repo to use as the component's source. The repository must be able to be cloned without authentication.
|
|
5317
|
+
:param pulumi.Input['AppSpecWorkerGitArgs'] git: A Git repo to use as the component's source. The repository must be able to be cloned without authentication. Only one of `git`, `github` or `gitlab` may be set.
|
|
4947
5318
|
:param pulumi.Input['AppSpecWorkerGithubArgs'] github: A GitHub repo to use as the component's source. DigitalOcean App Platform must have [access to the repository](https://cloud.digitalocean.com/apps/github/install). Only one of `git`, `github`, `gitlab`, or `image` may be set.
|
|
4948
5319
|
:param pulumi.Input['AppSpecWorkerGitlabArgs'] gitlab: A Gitlab repo to use as the component's source. DigitalOcean App Platform must have [access to the repository](https://cloud.digitalocean.com/apps/gitlab/install). Only one of `git`, `github`, `gitlab`, or `image` may be set.
|
|
4949
5320
|
:param pulumi.Input['AppSpecWorkerImageArgs'] image: An image to use as the component's source. Only one of `git`, `github`, `gitlab`, or `image` may be set.
|
|
@@ -5059,7 +5430,7 @@ class AppSpecWorkerArgs:
|
|
|
5059
5430
|
@pulumi.getter
|
|
5060
5431
|
def git(self) -> Optional[pulumi.Input['AppSpecWorkerGitArgs']]:
|
|
5061
5432
|
"""
|
|
5062
|
-
A Git repo to use as the component's source. The repository must be able to be cloned without authentication.
|
|
5433
|
+
A Git repo to use as the component's source. The repository must be able to be cloned without authentication. Only one of `git`, `github` or `gitlab` may be set.
|
|
5063
5434
|
"""
|
|
5064
5435
|
return pulumi.get(self, "git")
|
|
5065
5436
|
|
|
@@ -5597,11 +5968,13 @@ class AppSpecWorkerLogDestinationArgs:
|
|
|
5597
5968
|
name: pulumi.Input[str],
|
|
5598
5969
|
datadog: Optional[pulumi.Input['AppSpecWorkerLogDestinationDatadogArgs']] = None,
|
|
5599
5970
|
logtail: Optional[pulumi.Input['AppSpecWorkerLogDestinationLogtailArgs']] = None,
|
|
5971
|
+
open_search: Optional[pulumi.Input['AppSpecWorkerLogDestinationOpenSearchArgs']] = None,
|
|
5600
5972
|
papertrail: Optional[pulumi.Input['AppSpecWorkerLogDestinationPapertrailArgs']] = None):
|
|
5601
5973
|
"""
|
|
5602
5974
|
:param pulumi.Input[str] name: Name of the log destination. Minimum length: 2. Maximum length: 42.
|
|
5603
5975
|
:param pulumi.Input['AppSpecWorkerLogDestinationDatadogArgs'] datadog: Datadog configuration.
|
|
5604
5976
|
:param pulumi.Input['AppSpecWorkerLogDestinationLogtailArgs'] logtail: Logtail configuration.
|
|
5977
|
+
:param pulumi.Input['AppSpecWorkerLogDestinationOpenSearchArgs'] open_search: OpenSearch configuration.
|
|
5605
5978
|
:param pulumi.Input['AppSpecWorkerLogDestinationPapertrailArgs'] papertrail: Papertrail configuration.
|
|
5606
5979
|
"""
|
|
5607
5980
|
pulumi.set(__self__, "name", name)
|
|
@@ -5609,6 +5982,8 @@ class AppSpecWorkerLogDestinationArgs:
|
|
|
5609
5982
|
pulumi.set(__self__, "datadog", datadog)
|
|
5610
5983
|
if logtail is not None:
|
|
5611
5984
|
pulumi.set(__self__, "logtail", logtail)
|
|
5985
|
+
if open_search is not None:
|
|
5986
|
+
pulumi.set(__self__, "open_search", open_search)
|
|
5612
5987
|
if papertrail is not None:
|
|
5613
5988
|
pulumi.set(__self__, "papertrail", papertrail)
|
|
5614
5989
|
|
|
@@ -5648,6 +6023,18 @@ class AppSpecWorkerLogDestinationArgs:
|
|
|
5648
6023
|
def logtail(self, value: Optional[pulumi.Input['AppSpecWorkerLogDestinationLogtailArgs']]):
|
|
5649
6024
|
pulumi.set(self, "logtail", value)
|
|
5650
6025
|
|
|
6026
|
+
@property
|
|
6027
|
+
@pulumi.getter(name="openSearch")
|
|
6028
|
+
def open_search(self) -> Optional[pulumi.Input['AppSpecWorkerLogDestinationOpenSearchArgs']]:
|
|
6029
|
+
"""
|
|
6030
|
+
OpenSearch configuration.
|
|
6031
|
+
"""
|
|
6032
|
+
return pulumi.get(self, "open_search")
|
|
6033
|
+
|
|
6034
|
+
@open_search.setter
|
|
6035
|
+
def open_search(self, value: Optional[pulumi.Input['AppSpecWorkerLogDestinationOpenSearchArgs']]):
|
|
6036
|
+
pulumi.set(self, "open_search", value)
|
|
6037
|
+
|
|
5651
6038
|
@property
|
|
5652
6039
|
@pulumi.getter
|
|
5653
6040
|
def papertrail(self) -> Optional[pulumi.Input['AppSpecWorkerLogDestinationPapertrailArgs']]:
|
|
@@ -5705,8 +6092,6 @@ class AppSpecWorkerLogDestinationLogtailArgs:
|
|
|
5705
6092
|
token: pulumi.Input[str]):
|
|
5706
6093
|
"""
|
|
5707
6094
|
:param pulumi.Input[str] token: Logtail token.
|
|
5708
|
-
|
|
5709
|
-
A `database` can contain:
|
|
5710
6095
|
"""
|
|
5711
6096
|
pulumi.set(__self__, "token", token)
|
|
5712
6097
|
|
|
@@ -5715,8 +6100,6 @@ class AppSpecWorkerLogDestinationLogtailArgs:
|
|
|
5715
6100
|
def token(self) -> pulumi.Input[str]:
|
|
5716
6101
|
"""
|
|
5717
6102
|
Logtail token.
|
|
5718
|
-
|
|
5719
|
-
A `database` can contain:
|
|
5720
6103
|
"""
|
|
5721
6104
|
return pulumi.get(self, "token")
|
|
5722
6105
|
|
|
@@ -5725,6 +6108,115 @@ class AppSpecWorkerLogDestinationLogtailArgs:
|
|
|
5725
6108
|
pulumi.set(self, "token", value)
|
|
5726
6109
|
|
|
5727
6110
|
|
|
6111
|
+
@pulumi.input_type
|
|
6112
|
+
class AppSpecWorkerLogDestinationOpenSearchArgs:
|
|
6113
|
+
def __init__(__self__, *,
|
|
6114
|
+
basic_auth: pulumi.Input['AppSpecWorkerLogDestinationOpenSearchBasicAuthArgs'],
|
|
6115
|
+
cluster_name: Optional[pulumi.Input[str]] = None,
|
|
6116
|
+
endpoint: Optional[pulumi.Input[str]] = None,
|
|
6117
|
+
index_name: Optional[pulumi.Input[str]] = None):
|
|
6118
|
+
"""
|
|
6119
|
+
:param pulumi.Input['AppSpecWorkerLogDestinationOpenSearchBasicAuthArgs'] basic_auth: Basic authentication details.
|
|
6120
|
+
:param pulumi.Input[str] cluster_name: The name of the underlying DigitalOcean DBaaS cluster. This is required for production databases. For dev databases, if `cluster_name` is not set, a new cluster will be provisioned.
|
|
6121
|
+
:param pulumi.Input[str] endpoint: OpenSearch endpoint.
|
|
6122
|
+
:param pulumi.Input[str] index_name: OpenSearch index name.
|
|
6123
|
+
"""
|
|
6124
|
+
pulumi.set(__self__, "basic_auth", basic_auth)
|
|
6125
|
+
if cluster_name is not None:
|
|
6126
|
+
pulumi.set(__self__, "cluster_name", cluster_name)
|
|
6127
|
+
if endpoint is not None:
|
|
6128
|
+
pulumi.set(__self__, "endpoint", endpoint)
|
|
6129
|
+
if index_name is not None:
|
|
6130
|
+
pulumi.set(__self__, "index_name", index_name)
|
|
6131
|
+
|
|
6132
|
+
@property
|
|
6133
|
+
@pulumi.getter(name="basicAuth")
|
|
6134
|
+
def basic_auth(self) -> pulumi.Input['AppSpecWorkerLogDestinationOpenSearchBasicAuthArgs']:
|
|
6135
|
+
"""
|
|
6136
|
+
Basic authentication details.
|
|
6137
|
+
"""
|
|
6138
|
+
return pulumi.get(self, "basic_auth")
|
|
6139
|
+
|
|
6140
|
+
@basic_auth.setter
|
|
6141
|
+
def basic_auth(self, value: pulumi.Input['AppSpecWorkerLogDestinationOpenSearchBasicAuthArgs']):
|
|
6142
|
+
pulumi.set(self, "basic_auth", value)
|
|
6143
|
+
|
|
6144
|
+
@property
|
|
6145
|
+
@pulumi.getter(name="clusterName")
|
|
6146
|
+
def cluster_name(self) -> Optional[pulumi.Input[str]]:
|
|
6147
|
+
"""
|
|
6148
|
+
The name of the underlying DigitalOcean DBaaS cluster. This is required for production databases. For dev databases, if `cluster_name` is not set, a new cluster will be provisioned.
|
|
6149
|
+
"""
|
|
6150
|
+
return pulumi.get(self, "cluster_name")
|
|
6151
|
+
|
|
6152
|
+
@cluster_name.setter
|
|
6153
|
+
def cluster_name(self, value: Optional[pulumi.Input[str]]):
|
|
6154
|
+
pulumi.set(self, "cluster_name", value)
|
|
6155
|
+
|
|
6156
|
+
@property
|
|
6157
|
+
@pulumi.getter
|
|
6158
|
+
def endpoint(self) -> Optional[pulumi.Input[str]]:
|
|
6159
|
+
"""
|
|
6160
|
+
OpenSearch endpoint.
|
|
6161
|
+
"""
|
|
6162
|
+
return pulumi.get(self, "endpoint")
|
|
6163
|
+
|
|
6164
|
+
@endpoint.setter
|
|
6165
|
+
def endpoint(self, value: Optional[pulumi.Input[str]]):
|
|
6166
|
+
pulumi.set(self, "endpoint", value)
|
|
6167
|
+
|
|
6168
|
+
@property
|
|
6169
|
+
@pulumi.getter(name="indexName")
|
|
6170
|
+
def index_name(self) -> Optional[pulumi.Input[str]]:
|
|
6171
|
+
"""
|
|
6172
|
+
OpenSearch index name.
|
|
6173
|
+
"""
|
|
6174
|
+
return pulumi.get(self, "index_name")
|
|
6175
|
+
|
|
6176
|
+
@index_name.setter
|
|
6177
|
+
def index_name(self, value: Optional[pulumi.Input[str]]):
|
|
6178
|
+
pulumi.set(self, "index_name", value)
|
|
6179
|
+
|
|
6180
|
+
|
|
6181
|
+
@pulumi.input_type
|
|
6182
|
+
class AppSpecWorkerLogDestinationOpenSearchBasicAuthArgs:
|
|
6183
|
+
def __init__(__self__, *,
|
|
6184
|
+
password: Optional[pulumi.Input[str]] = None,
|
|
6185
|
+
user: Optional[pulumi.Input[str]] = None):
|
|
6186
|
+
"""
|
|
6187
|
+
:param pulumi.Input[str] password: Password for basic authentication.
|
|
6188
|
+
:param pulumi.Input[str] user: user for basic authentication.
|
|
6189
|
+
"""
|
|
6190
|
+
if password is not None:
|
|
6191
|
+
pulumi.set(__self__, "password", password)
|
|
6192
|
+
if user is not None:
|
|
6193
|
+
pulumi.set(__self__, "user", user)
|
|
6194
|
+
|
|
6195
|
+
@property
|
|
6196
|
+
@pulumi.getter
|
|
6197
|
+
def password(self) -> Optional[pulumi.Input[str]]:
|
|
6198
|
+
"""
|
|
6199
|
+
Password for basic authentication.
|
|
6200
|
+
"""
|
|
6201
|
+
return pulumi.get(self, "password")
|
|
6202
|
+
|
|
6203
|
+
@password.setter
|
|
6204
|
+
def password(self, value: Optional[pulumi.Input[str]]):
|
|
6205
|
+
pulumi.set(self, "password", value)
|
|
6206
|
+
|
|
6207
|
+
@property
|
|
6208
|
+
@pulumi.getter
|
|
6209
|
+
def user(self) -> Optional[pulumi.Input[str]]:
|
|
6210
|
+
"""
|
|
6211
|
+
user for basic authentication.
|
|
6212
|
+
"""
|
|
6213
|
+
return pulumi.get(self, "user")
|
|
6214
|
+
|
|
6215
|
+
@user.setter
|
|
6216
|
+
def user(self, value: Optional[pulumi.Input[str]]):
|
|
6217
|
+
pulumi.set(self, "user", value)
|
|
6218
|
+
|
|
6219
|
+
|
|
5728
6220
|
@pulumi.input_type
|
|
5729
6221
|
class AppSpecWorkerLogDestinationPapertrailArgs:
|
|
5730
6222
|
def __init__(__self__, *,
|
|
@@ -6386,24 +6878,18 @@ class DatabasePostgresqlConfigPgbouncerArgs:
|
|
|
6386
6878
|
@pulumi.input_type
|
|
6387
6879
|
class DatabasePostgresqlConfigTimescaledbArgs:
|
|
6388
6880
|
def __init__(__self__, *,
|
|
6389
|
-
|
|
6390
|
-
|
|
6391
|
-
|
|
6392
|
-
"""
|
|
6393
|
-
if timescaledb is not None:
|
|
6394
|
-
pulumi.set(__self__, "timescaledb", timescaledb)
|
|
6881
|
+
max_background_workers: Optional[pulumi.Input[int]] = None):
|
|
6882
|
+
if max_background_workers is not None:
|
|
6883
|
+
pulumi.set(__self__, "max_background_workers", max_background_workers)
|
|
6395
6884
|
|
|
6396
6885
|
@property
|
|
6397
|
-
@pulumi.getter
|
|
6398
|
-
def
|
|
6399
|
-
""
|
|
6400
|
-
TimescaleDB extension configuration values
|
|
6401
|
-
"""
|
|
6402
|
-
return pulumi.get(self, "timescaledb")
|
|
6886
|
+
@pulumi.getter(name="maxBackgroundWorkers")
|
|
6887
|
+
def max_background_workers(self) -> Optional[pulumi.Input[int]]:
|
|
6888
|
+
return pulumi.get(self, "max_background_workers")
|
|
6403
6889
|
|
|
6404
|
-
@
|
|
6405
|
-
def
|
|
6406
|
-
pulumi.set(self, "
|
|
6890
|
+
@max_background_workers.setter
|
|
6891
|
+
def max_background_workers(self, value: Optional[pulumi.Input[int]]):
|
|
6892
|
+
pulumi.set(self, "max_background_workers", value)
|
|
6407
6893
|
|
|
6408
6894
|
|
|
6409
6895
|
@pulumi.input_type
|