pulumi-aiven 6.22.0a1723007981__py3-none-any.whl → 6.22.0a1723820065__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-aiven might be problematic. Click here for more details.
- pulumi_aiven/account_authentication.py +5 -5
- pulumi_aiven/aws_vpc_peering_connection.py +7 -7
- pulumi_aiven/azure_privatelink_connection_approval.py +16 -16
- pulumi_aiven/azure_vpc_peering_connection.py +7 -7
- pulumi_aiven/cassandra.py +39 -39
- pulumi_aiven/clickhouse.py +27 -27
- pulumi_aiven/clickhouse_grant.py +34 -34
- pulumi_aiven/dragonfly.py +33 -33
- pulumi_aiven/flink.py +33 -33
- pulumi_aiven/flink_application_deployment.py +16 -16
- pulumi_aiven/flink_application_version.py +36 -36
- pulumi_aiven/gcp_vpc_peering_connection.py +7 -7
- pulumi_aiven/get_aws_vpc_peering_connection.py +1 -1
- pulumi_aiven/get_azure_vpc_peering_connection.py +1 -1
- pulumi_aiven/get_gcp_vpc_peering_connection.py +1 -1
- pulumi_aiven/get_transit_gateway_vpc_attachment.py +1 -1
- pulumi_aiven/grafana.py +39 -39
- pulumi_aiven/influx_db.py +27 -27
- pulumi_aiven/kafka.py +55 -55
- pulumi_aiven/kafka_connect.py +52 -52
- pulumi_aiven/kafka_connector.py +2 -2
- pulumi_aiven/kafka_mirror_maker.py +38 -38
- pulumi_aiven/kafka_topic.py +18 -18
- pulumi_aiven/m3_aggregator.py +33 -33
- pulumi_aiven/m3_db.py +41 -41
- pulumi_aiven/my_sql.py +47 -47
- pulumi_aiven/open_search.py +49 -49
- pulumi_aiven/organization.py +3 -3
- pulumi_aiven/organization_group_project.py +3 -3
- pulumi_aiven/organization_user_group_member.py +3 -3
- pulumi_aiven/pg.py +27 -27
- pulumi_aiven/project.py +5 -5
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/redis.py +39 -39
- pulumi_aiven/service_integration.py +65 -65
- pulumi_aiven/service_integration_endpoint.py +65 -65
- pulumi_aiven/thanos.py +27 -27
- pulumi_aiven/transit_gateway_vpc_attachment.py +7 -7
- pulumi_aiven/valkey.py +33 -33
- {pulumi_aiven-6.22.0a1723007981.dist-info → pulumi_aiven-6.22.0a1723820065.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.22.0a1723007981.dist-info → pulumi_aiven-6.22.0a1723820065.dist-info}/RECORD +43 -43
- {pulumi_aiven-6.22.0a1723007981.dist-info → pulumi_aiven-6.22.0a1723820065.dist-info}/WHEEL +1 -1
- {pulumi_aiven-6.22.0a1723007981.dist-info → pulumi_aiven-6.22.0a1723820065.dist-info}/top_level.txt +0 -0
|
@@ -369,10 +369,10 @@ class FlinkApplicationVersion(pulumi.CustomResource):
|
|
|
369
369
|
application_id: Optional[pulumi.Input[str]] = None,
|
|
370
370
|
project: Optional[pulumi.Input[str]] = None,
|
|
371
371
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
372
|
-
sink: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
373
|
-
sinks: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
374
|
-
source: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
375
|
-
sources: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
372
|
+
sink: Optional[pulumi.Input[Sequence[pulumi.Input[Union['FlinkApplicationVersionSinkArgs', 'FlinkApplicationVersionSinkArgsDict']]]]] = None,
|
|
373
|
+
sinks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['FlinkApplicationVersionSinkArgs', 'FlinkApplicationVersionSinkArgsDict']]]]] = None,
|
|
374
|
+
source: Optional[pulumi.Input[Sequence[pulumi.Input[Union['FlinkApplicationVersionSourceArgs', 'FlinkApplicationVersionSourceArgsDict']]]]] = None,
|
|
375
|
+
sources: Optional[pulumi.Input[Sequence[pulumi.Input[Union['FlinkApplicationVersionSourceArgs', 'FlinkApplicationVersionSourceArgsDict']]]]] = None,
|
|
376
376
|
statement: Optional[pulumi.Input[str]] = None,
|
|
377
377
|
__props__=None):
|
|
378
378
|
"""
|
|
@@ -393,8 +393,8 @@ class FlinkApplicationVersion(pulumi.CustomResource):
|
|
|
393
393
|
service_name=example_flink["serviceName"],
|
|
394
394
|
application_id=example_app.application_id,
|
|
395
395
|
statement=" INSERT INTO kafka_known_pizza SELECT * FROM kafka_pizza WHERE shop LIKE '%Luigis Pizza%'\\n",
|
|
396
|
-
sinks=[
|
|
397
|
-
create_table
|
|
396
|
+
sinks=[{
|
|
397
|
+
"create_table": \"\"\" CREATE TABLE kafka_known_pizza (
|
|
398
398
|
shop STRING,
|
|
399
399
|
name STRING
|
|
400
400
|
) WITH (
|
|
@@ -405,10 +405,10 @@ class FlinkApplicationVersion(pulumi.CustomResource):
|
|
|
405
405
|
'value.format' = 'json'
|
|
406
406
|
)
|
|
407
407
|
\"\"\",
|
|
408
|
-
integration_id
|
|
409
|
-
|
|
410
|
-
sources=[
|
|
411
|
-
create_table
|
|
408
|
+
"integration_id": flink_to_kafka["integrationId"],
|
|
409
|
+
}],
|
|
410
|
+
sources=[{
|
|
411
|
+
"create_table": \"\"\" CREATE TABLE kafka_pizza (
|
|
412
412
|
shop STRING,
|
|
413
413
|
name STRING
|
|
414
414
|
) WITH (
|
|
@@ -419,8 +419,8 @@ class FlinkApplicationVersion(pulumi.CustomResource):
|
|
|
419
419
|
'value.format' = 'json'
|
|
420
420
|
)
|
|
421
421
|
\"\"\",
|
|
422
|
-
integration_id
|
|
423
|
-
|
|
422
|
+
"integration_id": flink_to_kafka["integrationId"],
|
|
423
|
+
}])
|
|
424
424
|
```
|
|
425
425
|
|
|
426
426
|
## Import
|
|
@@ -434,10 +434,10 @@ class FlinkApplicationVersion(pulumi.CustomResource):
|
|
|
434
434
|
:param pulumi.Input[str] application_id: Application ID.
|
|
435
435
|
:param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
436
436
|
:param pulumi.Input[str] service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
437
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
438
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
439
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
440
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
437
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['FlinkApplicationVersionSinkArgs', 'FlinkApplicationVersionSinkArgsDict']]]] sink: The sink table for the application.
|
|
438
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['FlinkApplicationVersionSinkArgs', 'FlinkApplicationVersionSinkArgsDict']]]] sinks: Application sinks
|
|
439
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['FlinkApplicationVersionSourceArgs', 'FlinkApplicationVersionSourceArgsDict']]]] source: The source table for the application.
|
|
440
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['FlinkApplicationVersionSourceArgs', 'FlinkApplicationVersionSourceArgsDict']]]] sources: Application sources
|
|
441
441
|
:param pulumi.Input[str] statement: Job SQL statement.
|
|
442
442
|
"""
|
|
443
443
|
...
|
|
@@ -464,8 +464,8 @@ class FlinkApplicationVersion(pulumi.CustomResource):
|
|
|
464
464
|
service_name=example_flink["serviceName"],
|
|
465
465
|
application_id=example_app.application_id,
|
|
466
466
|
statement=" INSERT INTO kafka_known_pizza SELECT * FROM kafka_pizza WHERE shop LIKE '%Luigis Pizza%'\\n",
|
|
467
|
-
sinks=[
|
|
468
|
-
create_table
|
|
467
|
+
sinks=[{
|
|
468
|
+
"create_table": \"\"\" CREATE TABLE kafka_known_pizza (
|
|
469
469
|
shop STRING,
|
|
470
470
|
name STRING
|
|
471
471
|
) WITH (
|
|
@@ -476,10 +476,10 @@ class FlinkApplicationVersion(pulumi.CustomResource):
|
|
|
476
476
|
'value.format' = 'json'
|
|
477
477
|
)
|
|
478
478
|
\"\"\",
|
|
479
|
-
integration_id
|
|
480
|
-
|
|
481
|
-
sources=[
|
|
482
|
-
create_table
|
|
479
|
+
"integration_id": flink_to_kafka["integrationId"],
|
|
480
|
+
}],
|
|
481
|
+
sources=[{
|
|
482
|
+
"create_table": \"\"\" CREATE TABLE kafka_pizza (
|
|
483
483
|
shop STRING,
|
|
484
484
|
name STRING
|
|
485
485
|
) WITH (
|
|
@@ -490,8 +490,8 @@ class FlinkApplicationVersion(pulumi.CustomResource):
|
|
|
490
490
|
'value.format' = 'json'
|
|
491
491
|
)
|
|
492
492
|
\"\"\",
|
|
493
|
-
integration_id
|
|
494
|
-
|
|
493
|
+
"integration_id": flink_to_kafka["integrationId"],
|
|
494
|
+
}])
|
|
495
495
|
```
|
|
496
496
|
|
|
497
497
|
## Import
|
|
@@ -518,10 +518,10 @@ class FlinkApplicationVersion(pulumi.CustomResource):
|
|
|
518
518
|
application_id: Optional[pulumi.Input[str]] = None,
|
|
519
519
|
project: Optional[pulumi.Input[str]] = None,
|
|
520
520
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
521
|
-
sink: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
522
|
-
sinks: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
523
|
-
source: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
524
|
-
sources: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
521
|
+
sink: Optional[pulumi.Input[Sequence[pulumi.Input[Union['FlinkApplicationVersionSinkArgs', 'FlinkApplicationVersionSinkArgsDict']]]]] = None,
|
|
522
|
+
sinks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['FlinkApplicationVersionSinkArgs', 'FlinkApplicationVersionSinkArgsDict']]]]] = None,
|
|
523
|
+
source: Optional[pulumi.Input[Sequence[pulumi.Input[Union['FlinkApplicationVersionSourceArgs', 'FlinkApplicationVersionSourceArgsDict']]]]] = None,
|
|
524
|
+
sources: Optional[pulumi.Input[Sequence[pulumi.Input[Union['FlinkApplicationVersionSourceArgs', 'FlinkApplicationVersionSourceArgsDict']]]]] = None,
|
|
525
525
|
statement: Optional[pulumi.Input[str]] = None,
|
|
526
526
|
__props__=None):
|
|
527
527
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
@@ -568,10 +568,10 @@ class FlinkApplicationVersion(pulumi.CustomResource):
|
|
|
568
568
|
created_by: Optional[pulumi.Input[str]] = None,
|
|
569
569
|
project: Optional[pulumi.Input[str]] = None,
|
|
570
570
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
571
|
-
sink: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
572
|
-
sinks: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
573
|
-
source: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
574
|
-
sources: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
571
|
+
sink: Optional[pulumi.Input[Sequence[pulumi.Input[Union['FlinkApplicationVersionSinkArgs', 'FlinkApplicationVersionSinkArgsDict']]]]] = None,
|
|
572
|
+
sinks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['FlinkApplicationVersionSinkArgs', 'FlinkApplicationVersionSinkArgsDict']]]]] = None,
|
|
573
|
+
source: Optional[pulumi.Input[Sequence[pulumi.Input[Union['FlinkApplicationVersionSourceArgs', 'FlinkApplicationVersionSourceArgsDict']]]]] = None,
|
|
574
|
+
sources: Optional[pulumi.Input[Sequence[pulumi.Input[Union['FlinkApplicationVersionSourceArgs', 'FlinkApplicationVersionSourceArgsDict']]]]] = None,
|
|
575
575
|
statement: Optional[pulumi.Input[str]] = None,
|
|
576
576
|
version: Optional[pulumi.Input[int]] = None) -> 'FlinkApplicationVersion':
|
|
577
577
|
"""
|
|
@@ -587,10 +587,10 @@ class FlinkApplicationVersion(pulumi.CustomResource):
|
|
|
587
587
|
:param pulumi.Input[str] created_by: The user who created the application.
|
|
588
588
|
:param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
589
589
|
:param pulumi.Input[str] service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
590
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
591
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
592
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
593
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
590
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['FlinkApplicationVersionSinkArgs', 'FlinkApplicationVersionSinkArgsDict']]]] sink: The sink table for the application.
|
|
591
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['FlinkApplicationVersionSinkArgs', 'FlinkApplicationVersionSinkArgsDict']]]] sinks: Application sinks
|
|
592
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['FlinkApplicationVersionSourceArgs', 'FlinkApplicationVersionSourceArgsDict']]]] source: The source table for the application.
|
|
593
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['FlinkApplicationVersionSourceArgs', 'FlinkApplicationVersionSourceArgsDict']]]] sources: Application sources
|
|
594
594
|
:param pulumi.Input[str] statement: Job SQL statement.
|
|
595
595
|
:param pulumi.Input[int] version: Application version number.
|
|
596
596
|
"""
|
|
@@ -71,7 +71,7 @@ class _GcpVpcPeeringConnectionState:
|
|
|
71
71
|
peer_vpc: Optional[pulumi.Input[str]] = None,
|
|
72
72
|
self_link: Optional[pulumi.Input[str]] = None,
|
|
73
73
|
state: Optional[pulumi.Input[str]] = None,
|
|
74
|
-
state_info: Optional[pulumi.Input[Mapping[str,
|
|
74
|
+
state_info: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
75
75
|
vpc_id: Optional[pulumi.Input[str]] = None):
|
|
76
76
|
"""
|
|
77
77
|
Input properties used for looking up and filtering GcpVpcPeeringConnection resources.
|
|
@@ -79,7 +79,7 @@ class _GcpVpcPeeringConnectionState:
|
|
|
79
79
|
:param pulumi.Input[str] peer_vpc: Google Cloud VPC network name. Changing this property forces recreation of the resource.
|
|
80
80
|
:param pulumi.Input[str] self_link: Computed Google Cloud network peering link.
|
|
81
81
|
:param pulumi.Input[str] state: State of the peering connection.
|
|
82
|
-
:param pulumi.Input[Mapping[str,
|
|
82
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] state_info: State-specific help or error information.
|
|
83
83
|
:param pulumi.Input[str] vpc_id: The VPC the peering connection belongs to. Changing this property forces recreation of the resource.
|
|
84
84
|
"""
|
|
85
85
|
if gcp_project_id is not None:
|
|
@@ -145,14 +145,14 @@ class _GcpVpcPeeringConnectionState:
|
|
|
145
145
|
|
|
146
146
|
@property
|
|
147
147
|
@pulumi.getter(name="stateInfo")
|
|
148
|
-
def state_info(self) -> Optional[pulumi.Input[Mapping[str,
|
|
148
|
+
def state_info(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
149
149
|
"""
|
|
150
150
|
State-specific help or error information.
|
|
151
151
|
"""
|
|
152
152
|
return pulumi.get(self, "state_info")
|
|
153
153
|
|
|
154
154
|
@state_info.setter
|
|
155
|
-
def state_info(self, value: Optional[pulumi.Input[Mapping[str,
|
|
155
|
+
def state_info(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
|
156
156
|
pulumi.set(self, "state_info", value)
|
|
157
157
|
|
|
158
158
|
@property
|
|
@@ -284,7 +284,7 @@ class GcpVpcPeeringConnection(pulumi.CustomResource):
|
|
|
284
284
|
peer_vpc: Optional[pulumi.Input[str]] = None,
|
|
285
285
|
self_link: Optional[pulumi.Input[str]] = None,
|
|
286
286
|
state: Optional[pulumi.Input[str]] = None,
|
|
287
|
-
state_info: Optional[pulumi.Input[Mapping[str,
|
|
287
|
+
state_info: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
288
288
|
vpc_id: Optional[pulumi.Input[str]] = None) -> 'GcpVpcPeeringConnection':
|
|
289
289
|
"""
|
|
290
290
|
Get an existing GcpVpcPeeringConnection resource's state with the given name, id, and optional extra
|
|
@@ -297,7 +297,7 @@ class GcpVpcPeeringConnection(pulumi.CustomResource):
|
|
|
297
297
|
:param pulumi.Input[str] peer_vpc: Google Cloud VPC network name. Changing this property forces recreation of the resource.
|
|
298
298
|
:param pulumi.Input[str] self_link: Computed Google Cloud network peering link.
|
|
299
299
|
:param pulumi.Input[str] state: State of the peering connection.
|
|
300
|
-
:param pulumi.Input[Mapping[str,
|
|
300
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] state_info: State-specific help or error information.
|
|
301
301
|
:param pulumi.Input[str] vpc_id: The VPC the peering connection belongs to. Changing this property forces recreation of the resource.
|
|
302
302
|
"""
|
|
303
303
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
@@ -346,7 +346,7 @@ class GcpVpcPeeringConnection(pulumi.CustomResource):
|
|
|
346
346
|
|
|
347
347
|
@property
|
|
348
348
|
@pulumi.getter(name="stateInfo")
|
|
349
|
-
def state_info(self) -> pulumi.Output[Mapping[str,
|
|
349
|
+
def state_info(self) -> pulumi.Output[Mapping[str, str]]:
|
|
350
350
|
"""
|
|
351
351
|
State-specific help or error information.
|
|
352
352
|
"""
|
|
@@ -111,7 +111,7 @@ class GetAzureVpcPeeringConnectionResult:
|
|
|
111
111
|
|
|
112
112
|
@property
|
|
113
113
|
@pulumi.getter(name="stateInfo")
|
|
114
|
-
def state_info(self) -> Mapping[str,
|
|
114
|
+
def state_info(self) -> Mapping[str, str]:
|
|
115
115
|
"""
|
|
116
116
|
State-specific help or error information.
|
|
117
117
|
"""
|
|
@@ -100,7 +100,7 @@ class GetTransitGatewayVpcAttachmentResult:
|
|
|
100
100
|
|
|
101
101
|
@property
|
|
102
102
|
@pulumi.getter(name="stateInfo")
|
|
103
|
-
def state_info(self) -> Mapping[str,
|
|
103
|
+
def state_info(self) -> Mapping[str, str]:
|
|
104
104
|
"""
|
|
105
105
|
State-specific help or error information
|
|
106
106
|
"""
|
pulumi_aiven/grafana.py
CHANGED
|
@@ -747,18 +747,18 @@ class Grafana(pulumi.CustomResource):
|
|
|
747
747
|
additional_disk_space: Optional[pulumi.Input[str]] = None,
|
|
748
748
|
cloud_name: Optional[pulumi.Input[str]] = None,
|
|
749
749
|
disk_space: Optional[pulumi.Input[str]] = None,
|
|
750
|
-
grafana: Optional[pulumi.Input[
|
|
751
|
-
grafana_user_config: Optional[pulumi.Input[
|
|
750
|
+
grafana: Optional[pulumi.Input[Union['GrafanaGrafanaArgs', 'GrafanaGrafanaArgsDict']]] = None,
|
|
751
|
+
grafana_user_config: Optional[pulumi.Input[Union['GrafanaGrafanaUserConfigArgs', 'GrafanaGrafanaUserConfigArgsDict']]] = None,
|
|
752
752
|
maintenance_window_dow: Optional[pulumi.Input[str]] = None,
|
|
753
753
|
maintenance_window_time: Optional[pulumi.Input[str]] = None,
|
|
754
754
|
plan: Optional[pulumi.Input[str]] = None,
|
|
755
755
|
project: Optional[pulumi.Input[str]] = None,
|
|
756
756
|
project_vpc_id: Optional[pulumi.Input[str]] = None,
|
|
757
|
-
service_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
757
|
+
service_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['GrafanaServiceIntegrationArgs', 'GrafanaServiceIntegrationArgsDict']]]]] = None,
|
|
758
758
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
759
759
|
static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
760
|
-
tags: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
761
|
-
tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
760
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['GrafanaTagArgs', 'GrafanaTagArgsDict']]]]] = None,
|
|
761
|
+
tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[Union['GrafanaTechEmailArgs', 'GrafanaTechEmailArgsDict']]]]] = None,
|
|
762
762
|
termination_protection: Optional[pulumi.Input[bool]] = None,
|
|
763
763
|
__props__=None):
|
|
764
764
|
"""
|
|
@@ -777,12 +777,12 @@ class Grafana(pulumi.CustomResource):
|
|
|
777
777
|
service_name="my-gr1",
|
|
778
778
|
maintenance_window_dow="monday",
|
|
779
779
|
maintenance_window_time="10:00:00",
|
|
780
|
-
grafana_user_config=
|
|
781
|
-
alerting_enabled
|
|
782
|
-
public_access
|
|
783
|
-
grafana
|
|
784
|
-
|
|
785
|
-
)
|
|
780
|
+
grafana_user_config={
|
|
781
|
+
"alerting_enabled": True,
|
|
782
|
+
"public_access": {
|
|
783
|
+
"grafana": True,
|
|
784
|
+
},
|
|
785
|
+
})
|
|
786
786
|
```
|
|
787
787
|
|
|
788
788
|
## Import
|
|
@@ -796,18 +796,18 @@ class Grafana(pulumi.CustomResource):
|
|
|
796
796
|
:param pulumi.Input[str] additional_disk_space: Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
797
797
|
:param pulumi.Input[str] cloud_name: Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (`aws`, `azure`, `do` `google`, `upcloud`, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like [here for Google](https://cloud.google.com/compute/docs/regions-zones/) and [here for AWS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
|
|
798
798
|
:param pulumi.Input[str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
799
|
-
:param pulumi.Input[
|
|
800
|
-
:param pulumi.Input[
|
|
799
|
+
:param pulumi.Input[Union['GrafanaGrafanaArgs', 'GrafanaGrafanaArgsDict']] grafana: Grafana server provided values
|
|
800
|
+
:param pulumi.Input[Union['GrafanaGrafanaUserConfigArgs', 'GrafanaGrafanaUserConfigArgsDict']] grafana_user_config: Grafana user configurable settings
|
|
801
801
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
802
802
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
803
803
|
:param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the [Aiven pricing page](https://aiven.io/pricing).
|
|
804
804
|
:param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
805
805
|
:param pulumi.Input[str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
|
|
806
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
806
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['GrafanaServiceIntegrationArgs', 'GrafanaServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
807
807
|
:param pulumi.Input[str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
808
808
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] static_ips: Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
|
|
809
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
810
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
809
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['GrafanaTagArgs', 'GrafanaTagArgsDict']]]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
810
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['GrafanaTechEmailArgs', 'GrafanaTechEmailArgsDict']]]] tech_emails: The email addresses for [service contacts](https://aiven.io/docs/platform/howto/technical-emails), who will receive important alerts and updates about this service. You can also set email contacts at the project level.
|
|
811
811
|
:param pulumi.Input[bool] termination_protection: Prevents the service from being deleted. It is recommended to set this to `true` for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
|
|
812
812
|
"""
|
|
813
813
|
...
|
|
@@ -832,12 +832,12 @@ class Grafana(pulumi.CustomResource):
|
|
|
832
832
|
service_name="my-gr1",
|
|
833
833
|
maintenance_window_dow="monday",
|
|
834
834
|
maintenance_window_time="10:00:00",
|
|
835
|
-
grafana_user_config=
|
|
836
|
-
alerting_enabled
|
|
837
|
-
public_access
|
|
838
|
-
grafana
|
|
839
|
-
|
|
840
|
-
)
|
|
835
|
+
grafana_user_config={
|
|
836
|
+
"alerting_enabled": True,
|
|
837
|
+
"public_access": {
|
|
838
|
+
"grafana": True,
|
|
839
|
+
},
|
|
840
|
+
})
|
|
841
841
|
```
|
|
842
842
|
|
|
843
843
|
## Import
|
|
@@ -864,18 +864,18 @@ class Grafana(pulumi.CustomResource):
|
|
|
864
864
|
additional_disk_space: Optional[pulumi.Input[str]] = None,
|
|
865
865
|
cloud_name: Optional[pulumi.Input[str]] = None,
|
|
866
866
|
disk_space: Optional[pulumi.Input[str]] = None,
|
|
867
|
-
grafana: Optional[pulumi.Input[
|
|
868
|
-
grafana_user_config: Optional[pulumi.Input[
|
|
867
|
+
grafana: Optional[pulumi.Input[Union['GrafanaGrafanaArgs', 'GrafanaGrafanaArgsDict']]] = None,
|
|
868
|
+
grafana_user_config: Optional[pulumi.Input[Union['GrafanaGrafanaUserConfigArgs', 'GrafanaGrafanaUserConfigArgsDict']]] = None,
|
|
869
869
|
maintenance_window_dow: Optional[pulumi.Input[str]] = None,
|
|
870
870
|
maintenance_window_time: Optional[pulumi.Input[str]] = None,
|
|
871
871
|
plan: Optional[pulumi.Input[str]] = None,
|
|
872
872
|
project: Optional[pulumi.Input[str]] = None,
|
|
873
873
|
project_vpc_id: Optional[pulumi.Input[str]] = None,
|
|
874
|
-
service_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
874
|
+
service_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['GrafanaServiceIntegrationArgs', 'GrafanaServiceIntegrationArgsDict']]]]] = None,
|
|
875
875
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
876
876
|
static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
877
|
-
tags: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
878
|
-
tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
877
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['GrafanaTagArgs', 'GrafanaTagArgsDict']]]]] = None,
|
|
878
|
+
tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[Union['GrafanaTechEmailArgs', 'GrafanaTechEmailArgsDict']]]]] = None,
|
|
879
879
|
termination_protection: Optional[pulumi.Input[bool]] = None,
|
|
880
880
|
__props__=None):
|
|
881
881
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
@@ -932,21 +932,21 @@ class Grafana(pulumi.CustomResource):
|
|
|
932
932
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
933
933
|
additional_disk_space: Optional[pulumi.Input[str]] = None,
|
|
934
934
|
cloud_name: Optional[pulumi.Input[str]] = None,
|
|
935
|
-
components: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
935
|
+
components: Optional[pulumi.Input[Sequence[pulumi.Input[Union['GrafanaComponentArgs', 'GrafanaComponentArgsDict']]]]] = None,
|
|
936
936
|
disk_space: Optional[pulumi.Input[str]] = None,
|
|
937
937
|
disk_space_cap: Optional[pulumi.Input[str]] = None,
|
|
938
938
|
disk_space_default: Optional[pulumi.Input[str]] = None,
|
|
939
939
|
disk_space_step: Optional[pulumi.Input[str]] = None,
|
|
940
940
|
disk_space_used: Optional[pulumi.Input[str]] = None,
|
|
941
|
-
grafana: Optional[pulumi.Input[
|
|
942
|
-
grafana_user_config: Optional[pulumi.Input[
|
|
941
|
+
grafana: Optional[pulumi.Input[Union['GrafanaGrafanaArgs', 'GrafanaGrafanaArgsDict']]] = None,
|
|
942
|
+
grafana_user_config: Optional[pulumi.Input[Union['GrafanaGrafanaUserConfigArgs', 'GrafanaGrafanaUserConfigArgsDict']]] = None,
|
|
943
943
|
maintenance_window_dow: Optional[pulumi.Input[str]] = None,
|
|
944
944
|
maintenance_window_time: Optional[pulumi.Input[str]] = None,
|
|
945
945
|
plan: Optional[pulumi.Input[str]] = None,
|
|
946
946
|
project: Optional[pulumi.Input[str]] = None,
|
|
947
947
|
project_vpc_id: Optional[pulumi.Input[str]] = None,
|
|
948
948
|
service_host: Optional[pulumi.Input[str]] = None,
|
|
949
|
-
service_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
949
|
+
service_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['GrafanaServiceIntegrationArgs', 'GrafanaServiceIntegrationArgsDict']]]]] = None,
|
|
950
950
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
951
951
|
service_password: Optional[pulumi.Input[str]] = None,
|
|
952
952
|
service_port: Optional[pulumi.Input[int]] = None,
|
|
@@ -955,8 +955,8 @@ class Grafana(pulumi.CustomResource):
|
|
|
955
955
|
service_username: Optional[pulumi.Input[str]] = None,
|
|
956
956
|
state: Optional[pulumi.Input[str]] = None,
|
|
957
957
|
static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
958
|
-
tags: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
959
|
-
tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
958
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['GrafanaTagArgs', 'GrafanaTagArgsDict']]]]] = None,
|
|
959
|
+
tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[Union['GrafanaTechEmailArgs', 'GrafanaTechEmailArgsDict']]]]] = None,
|
|
960
960
|
termination_protection: Optional[pulumi.Input[bool]] = None) -> 'Grafana':
|
|
961
961
|
"""
|
|
962
962
|
Get an existing Grafana resource's state with the given name, id, and optional extra
|
|
@@ -967,21 +967,21 @@ class Grafana(pulumi.CustomResource):
|
|
|
967
967
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
968
968
|
:param pulumi.Input[str] additional_disk_space: Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
969
969
|
:param pulumi.Input[str] cloud_name: Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (`aws`, `azure`, `do` `google`, `upcloud`, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like [here for Google](https://cloud.google.com/compute/docs/regions-zones/) and [here for AWS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
|
|
970
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
970
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['GrafanaComponentArgs', 'GrafanaComponentArgsDict']]]] components: Service component information objects
|
|
971
971
|
:param pulumi.Input[str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
972
972
|
:param pulumi.Input[str] disk_space_cap: The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
|
|
973
973
|
:param pulumi.Input[str] disk_space_default: The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for `disk_space`
|
|
974
974
|
:param pulumi.Input[str] disk_space_step: The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. `disk_space` needs to increment from `disk_space_default` by increments of this size.
|
|
975
975
|
:param pulumi.Input[str] disk_space_used: Disk space that service is currently using
|
|
976
|
-
:param pulumi.Input[
|
|
977
|
-
:param pulumi.Input[
|
|
976
|
+
:param pulumi.Input[Union['GrafanaGrafanaArgs', 'GrafanaGrafanaArgsDict']] grafana: Grafana server provided values
|
|
977
|
+
:param pulumi.Input[Union['GrafanaGrafanaUserConfigArgs', 'GrafanaGrafanaUserConfigArgsDict']] grafana_user_config: Grafana user configurable settings
|
|
978
978
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
979
979
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
980
980
|
:param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the [Aiven pricing page](https://aiven.io/pricing).
|
|
981
981
|
:param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
982
982
|
:param pulumi.Input[str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
|
|
983
983
|
:param pulumi.Input[str] service_host: The hostname of the service.
|
|
984
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
984
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['GrafanaServiceIntegrationArgs', 'GrafanaServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
985
985
|
:param pulumi.Input[str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
986
986
|
:param pulumi.Input[str] service_password: Password used for connecting to the service, if applicable
|
|
987
987
|
:param pulumi.Input[int] service_port: The port of the service
|
|
@@ -990,8 +990,8 @@ class Grafana(pulumi.CustomResource):
|
|
|
990
990
|
:param pulumi.Input[str] service_username: Username used for connecting to the service, if applicable
|
|
991
991
|
:param pulumi.Input[str] state: Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
|
|
992
992
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] static_ips: Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
|
|
993
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
994
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
993
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['GrafanaTagArgs', 'GrafanaTagArgsDict']]]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
994
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['GrafanaTechEmailArgs', 'GrafanaTechEmailArgsDict']]]] tech_emails: The email addresses for [service contacts](https://aiven.io/docs/platform/howto/technical-emails), who will receive important alerts and updates about this service. You can also set email contacts at the project level.
|
|
995
995
|
:param pulumi.Input[bool] termination_protection: Prevents the service from being deleted. It is recommended to set this to `true` for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
|
|
996
996
|
"""
|
|
997
997
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|