pulumi-aiven 6.22.0a1722921580__py3-none-any.whl → 6.22.0a1723454180__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.

Files changed (35) hide show
  1. pulumi_aiven/account_authentication.py +5 -5
  2. pulumi_aiven/azure_privatelink_connection_approval.py +16 -16
  3. pulumi_aiven/cassandra.py +39 -39
  4. pulumi_aiven/clickhouse.py +27 -27
  5. pulumi_aiven/clickhouse_grant.py +34 -34
  6. pulumi_aiven/dragonfly.py +33 -33
  7. pulumi_aiven/flink.py +33 -33
  8. pulumi_aiven/flink_application_deployment.py +16 -16
  9. pulumi_aiven/flink_application_version.py +36 -36
  10. pulumi_aiven/grafana.py +39 -39
  11. pulumi_aiven/influx_db.py +27 -27
  12. pulumi_aiven/kafka.py +55 -55
  13. pulumi_aiven/kafka_connect.py +52 -52
  14. pulumi_aiven/kafka_connector.py +2 -2
  15. pulumi_aiven/kafka_mirror_maker.py +38 -38
  16. pulumi_aiven/kafka_topic.py +18 -18
  17. pulumi_aiven/m3_aggregator.py +33 -33
  18. pulumi_aiven/m3_db.py +41 -41
  19. pulumi_aiven/my_sql.py +47 -47
  20. pulumi_aiven/open_search.py +49 -49
  21. pulumi_aiven/organization.py +3 -3
  22. pulumi_aiven/organization_group_project.py +3 -3
  23. pulumi_aiven/organization_user_group_member.py +3 -3
  24. pulumi_aiven/pg.py +27 -27
  25. pulumi_aiven/project.py +5 -5
  26. pulumi_aiven/pulumi-plugin.json +1 -1
  27. pulumi_aiven/redis.py +39 -39
  28. pulumi_aiven/service_integration.py +65 -65
  29. pulumi_aiven/service_integration_endpoint.py +65 -65
  30. pulumi_aiven/thanos.py +27 -27
  31. pulumi_aiven/valkey.py +33 -33
  32. {pulumi_aiven-6.22.0a1722921580.dist-info → pulumi_aiven-6.22.0a1723454180.dist-info}/METADATA +1 -1
  33. {pulumi_aiven-6.22.0a1722921580.dist-info → pulumi_aiven-6.22.0a1723454180.dist-info}/RECORD +35 -35
  34. {pulumi_aiven-6.22.0a1722921580.dist-info → pulumi_aiven-6.22.0a1723454180.dist-info}/WHEEL +0 -0
  35. {pulumi_aiven-6.22.0a1722921580.dist-info → pulumi_aiven-6.22.0a1723454180.dist-info}/top_level.txt +0 -0
@@ -748,16 +748,16 @@ class OpenSearch(pulumi.CustomResource):
748
748
  disk_space: Optional[pulumi.Input[str]] = None,
749
749
  maintenance_window_dow: Optional[pulumi.Input[str]] = None,
750
750
  maintenance_window_time: Optional[pulumi.Input[str]] = None,
751
- opensearch_user_config: Optional[pulumi.Input[pulumi.InputType['OpenSearchOpensearchUserConfigArgs']]] = None,
752
- opensearches: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['OpenSearchOpensearchArgs']]]]] = None,
751
+ opensearch_user_config: Optional[pulumi.Input[Union['OpenSearchOpensearchUserConfigArgs', 'OpenSearchOpensearchUserConfigArgsDict']]] = None,
752
+ opensearches: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OpenSearchOpensearchArgs', 'OpenSearchOpensearchArgsDict']]]]] = None,
753
753
  plan: Optional[pulumi.Input[str]] = None,
754
754
  project: Optional[pulumi.Input[str]] = None,
755
755
  project_vpc_id: Optional[pulumi.Input[str]] = None,
756
- service_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['OpenSearchServiceIntegrationArgs']]]]] = None,
756
+ service_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OpenSearchServiceIntegrationArgs', 'OpenSearchServiceIntegrationArgsDict']]]]] = None,
757
757
  service_name: Optional[pulumi.Input[str]] = None,
758
758
  static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
759
- tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['OpenSearchTagArgs']]]]] = None,
760
- tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['OpenSearchTechEmailArgs']]]]] = None,
759
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OpenSearchTagArgs', 'OpenSearchTagArgsDict']]]]] = None,
760
+ tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OpenSearchTechEmailArgs', 'OpenSearchTechEmailArgsDict']]]]] = None,
761
761
  termination_protection: Optional[pulumi.Input[bool]] = None,
762
762
  __props__=None):
763
763
  """
@@ -776,17 +776,17 @@ class OpenSearch(pulumi.CustomResource):
776
776
  service_name="my-os1",
777
777
  maintenance_window_dow="monday",
778
778
  maintenance_window_time="10:00:00",
779
- opensearch_user_config=aiven.OpenSearchOpensearchUserConfigArgs(
780
- opensearch_version="1",
781
- opensearch_dashboards=aiven.OpenSearchOpensearchUserConfigOpensearchDashboardsArgs(
782
- enabled=True,
783
- opensearch_request_timeout=30000,
784
- ),
785
- public_access=aiven.OpenSearchOpensearchUserConfigPublicAccessArgs(
786
- opensearch=True,
787
- opensearch_dashboards=True,
788
- ),
789
- ))
779
+ opensearch_user_config={
780
+ "opensearch_version": "1",
781
+ "opensearch_dashboards": {
782
+ "enabled": True,
783
+ "opensearch_request_timeout": 30000,
784
+ },
785
+ "public_access": {
786
+ "opensearch": True,
787
+ "opensearch_dashboards": True,
788
+ },
789
+ })
790
790
  ```
791
791
 
792
792
  ## Import
@@ -802,16 +802,16 @@ class OpenSearch(pulumi.CustomResource):
802
802
  :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.
803
803
  :param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
804
804
  :param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
805
- :param pulumi.Input[pulumi.InputType['OpenSearchOpensearchUserConfigArgs']] opensearch_user_config: Opensearch user configurable settings
806
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['OpenSearchOpensearchArgs']]]] opensearches: OpenSearch server provided values
805
+ :param pulumi.Input[Union['OpenSearchOpensearchUserConfigArgs', 'OpenSearchOpensearchUserConfigArgsDict']] opensearch_user_config: Opensearch user configurable settings
806
+ :param pulumi.Input[Sequence[pulumi.Input[Union['OpenSearchOpensearchArgs', 'OpenSearchOpensearchArgsDict']]]] opensearches: OpenSearch server provided values
807
807
  :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).
808
808
  :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.
809
809
  :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.
810
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['OpenSearchServiceIntegrationArgs']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
810
+ :param pulumi.Input[Sequence[pulumi.Input[Union['OpenSearchServiceIntegrationArgs', 'OpenSearchServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
811
811
  :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.
812
812
  :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
813
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['OpenSearchTagArgs']]]] tags: Tags are key-value pairs that allow you to categorize services.
814
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['OpenSearchTechEmailArgs']]]] 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.
813
+ :param pulumi.Input[Sequence[pulumi.Input[Union['OpenSearchTagArgs', 'OpenSearchTagArgsDict']]]] tags: Tags are key-value pairs that allow you to categorize services.
814
+ :param pulumi.Input[Sequence[pulumi.Input[Union['OpenSearchTechEmailArgs', 'OpenSearchTechEmailArgsDict']]]] 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.
815
815
  :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.
816
816
  """
817
817
  ...
@@ -836,17 +836,17 @@ class OpenSearch(pulumi.CustomResource):
836
836
  service_name="my-os1",
837
837
  maintenance_window_dow="monday",
838
838
  maintenance_window_time="10:00:00",
839
- opensearch_user_config=aiven.OpenSearchOpensearchUserConfigArgs(
840
- opensearch_version="1",
841
- opensearch_dashboards=aiven.OpenSearchOpensearchUserConfigOpensearchDashboardsArgs(
842
- enabled=True,
843
- opensearch_request_timeout=30000,
844
- ),
845
- public_access=aiven.OpenSearchOpensearchUserConfigPublicAccessArgs(
846
- opensearch=True,
847
- opensearch_dashboards=True,
848
- ),
849
- ))
839
+ opensearch_user_config={
840
+ "opensearch_version": "1",
841
+ "opensearch_dashboards": {
842
+ "enabled": True,
843
+ "opensearch_request_timeout": 30000,
844
+ },
845
+ "public_access": {
846
+ "opensearch": True,
847
+ "opensearch_dashboards": True,
848
+ },
849
+ })
850
850
  ```
851
851
 
852
852
  ## Import
@@ -875,16 +875,16 @@ class OpenSearch(pulumi.CustomResource):
875
875
  disk_space: Optional[pulumi.Input[str]] = None,
876
876
  maintenance_window_dow: Optional[pulumi.Input[str]] = None,
877
877
  maintenance_window_time: Optional[pulumi.Input[str]] = None,
878
- opensearch_user_config: Optional[pulumi.Input[pulumi.InputType['OpenSearchOpensearchUserConfigArgs']]] = None,
879
- opensearches: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['OpenSearchOpensearchArgs']]]]] = None,
878
+ opensearch_user_config: Optional[pulumi.Input[Union['OpenSearchOpensearchUserConfigArgs', 'OpenSearchOpensearchUserConfigArgsDict']]] = None,
879
+ opensearches: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OpenSearchOpensearchArgs', 'OpenSearchOpensearchArgsDict']]]]] = None,
880
880
  plan: Optional[pulumi.Input[str]] = None,
881
881
  project: Optional[pulumi.Input[str]] = None,
882
882
  project_vpc_id: Optional[pulumi.Input[str]] = None,
883
- service_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['OpenSearchServiceIntegrationArgs']]]]] = None,
883
+ service_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OpenSearchServiceIntegrationArgs', 'OpenSearchServiceIntegrationArgsDict']]]]] = None,
884
884
  service_name: Optional[pulumi.Input[str]] = None,
885
885
  static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
886
- tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['OpenSearchTagArgs']]]]] = None,
887
- tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['OpenSearchTechEmailArgs']]]]] = None,
886
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OpenSearchTagArgs', 'OpenSearchTagArgsDict']]]]] = None,
887
+ tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OpenSearchTechEmailArgs', 'OpenSearchTechEmailArgsDict']]]]] = None,
888
888
  termination_protection: Optional[pulumi.Input[bool]] = None,
889
889
  __props__=None):
890
890
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
@@ -943,7 +943,7 @@ class OpenSearch(pulumi.CustomResource):
943
943
  opts: Optional[pulumi.ResourceOptions] = None,
944
944
  additional_disk_space: Optional[pulumi.Input[str]] = None,
945
945
  cloud_name: Optional[pulumi.Input[str]] = None,
946
- components: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['OpenSearchComponentArgs']]]]] = None,
946
+ components: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OpenSearchComponentArgs', 'OpenSearchComponentArgsDict']]]]] = None,
947
947
  disk_space: Optional[pulumi.Input[str]] = None,
948
948
  disk_space_cap: Optional[pulumi.Input[str]] = None,
949
949
  disk_space_default: Optional[pulumi.Input[str]] = None,
@@ -951,13 +951,13 @@ class OpenSearch(pulumi.CustomResource):
951
951
  disk_space_used: Optional[pulumi.Input[str]] = None,
952
952
  maintenance_window_dow: Optional[pulumi.Input[str]] = None,
953
953
  maintenance_window_time: Optional[pulumi.Input[str]] = None,
954
- opensearch_user_config: Optional[pulumi.Input[pulumi.InputType['OpenSearchOpensearchUserConfigArgs']]] = None,
955
- opensearches: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['OpenSearchOpensearchArgs']]]]] = None,
954
+ opensearch_user_config: Optional[pulumi.Input[Union['OpenSearchOpensearchUserConfigArgs', 'OpenSearchOpensearchUserConfigArgsDict']]] = None,
955
+ opensearches: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OpenSearchOpensearchArgs', 'OpenSearchOpensearchArgsDict']]]]] = None,
956
956
  plan: Optional[pulumi.Input[str]] = None,
957
957
  project: Optional[pulumi.Input[str]] = None,
958
958
  project_vpc_id: Optional[pulumi.Input[str]] = None,
959
959
  service_host: Optional[pulumi.Input[str]] = None,
960
- service_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['OpenSearchServiceIntegrationArgs']]]]] = None,
960
+ service_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OpenSearchServiceIntegrationArgs', 'OpenSearchServiceIntegrationArgsDict']]]]] = None,
961
961
  service_name: Optional[pulumi.Input[str]] = None,
962
962
  service_password: Optional[pulumi.Input[str]] = None,
963
963
  service_port: Optional[pulumi.Input[int]] = None,
@@ -966,8 +966,8 @@ class OpenSearch(pulumi.CustomResource):
966
966
  service_username: Optional[pulumi.Input[str]] = None,
967
967
  state: Optional[pulumi.Input[str]] = None,
968
968
  static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
969
- tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['OpenSearchTagArgs']]]]] = None,
970
- tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['OpenSearchTechEmailArgs']]]]] = None,
969
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OpenSearchTagArgs', 'OpenSearchTagArgsDict']]]]] = None,
970
+ tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[Union['OpenSearchTechEmailArgs', 'OpenSearchTechEmailArgsDict']]]]] = None,
971
971
  termination_protection: Optional[pulumi.Input[bool]] = None) -> 'OpenSearch':
972
972
  """
973
973
  Get an existing OpenSearch resource's state with the given name, id, and optional extra
@@ -978,7 +978,7 @@ class OpenSearch(pulumi.CustomResource):
978
978
  :param pulumi.ResourceOptions opts: Options for the resource.
979
979
  :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.
980
980
  :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).
981
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['OpenSearchComponentArgs']]]] components: Service component information objects
981
+ :param pulumi.Input[Sequence[pulumi.Input[Union['OpenSearchComponentArgs', 'OpenSearchComponentArgsDict']]]] components: Service component information objects
982
982
  :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.
983
983
  :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.
984
984
  :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`
@@ -986,13 +986,13 @@ class OpenSearch(pulumi.CustomResource):
986
986
  :param pulumi.Input[str] disk_space_used: Disk space that service is currently using
987
987
  :param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
988
988
  :param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
989
- :param pulumi.Input[pulumi.InputType['OpenSearchOpensearchUserConfigArgs']] opensearch_user_config: Opensearch user configurable settings
990
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['OpenSearchOpensearchArgs']]]] opensearches: OpenSearch server provided values
989
+ :param pulumi.Input[Union['OpenSearchOpensearchUserConfigArgs', 'OpenSearchOpensearchUserConfigArgsDict']] opensearch_user_config: Opensearch user configurable settings
990
+ :param pulumi.Input[Sequence[pulumi.Input[Union['OpenSearchOpensearchArgs', 'OpenSearchOpensearchArgsDict']]]] opensearches: OpenSearch server provided values
991
991
  :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).
992
992
  :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.
993
993
  :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.
994
994
  :param pulumi.Input[str] service_host: The hostname of the service.
995
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['OpenSearchServiceIntegrationArgs']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
995
+ :param pulumi.Input[Sequence[pulumi.Input[Union['OpenSearchServiceIntegrationArgs', 'OpenSearchServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
996
996
  :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.
997
997
  :param pulumi.Input[str] service_password: Password used for connecting to the service, if applicable
998
998
  :param pulumi.Input[int] service_port: The port of the service
@@ -1001,8 +1001,8 @@ class OpenSearch(pulumi.CustomResource):
1001
1001
  :param pulumi.Input[str] service_username: Username used for connecting to the service, if applicable
1002
1002
  :param pulumi.Input[str] state: Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
1003
1003
  :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
1004
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['OpenSearchTagArgs']]]] tags: Tags are key-value pairs that allow you to categorize services.
1005
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['OpenSearchTechEmailArgs']]]] 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.
1004
+ :param pulumi.Input[Sequence[pulumi.Input[Union['OpenSearchTagArgs', 'OpenSearchTagArgsDict']]]] tags: Tags are key-value pairs that allow you to categorize services.
1005
+ :param pulumi.Input[Sequence[pulumi.Input[Union['OpenSearchTechEmailArgs', 'OpenSearchTechEmailArgsDict']]]] 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.
1006
1006
  :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.
1007
1007
  """
1008
1008
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -139,7 +139,7 @@ class Organization(pulumi.CustomResource):
139
139
  resource_name: str,
140
140
  opts: Optional[pulumi.ResourceOptions] = None,
141
141
  name: Optional[pulumi.Input[str]] = None,
142
- timeouts: Optional[pulumi.Input[pulumi.InputType['OrganizationTimeoutsArgs']]] = None,
142
+ timeouts: Optional[pulumi.Input[Union['OrganizationTimeoutsArgs', 'OrganizationTimeoutsArgsDict']]] = None,
143
143
  __props__=None):
144
144
  """
145
145
  Creates and manages an [organization](https://aiven.io/docs/platform/concepts/orgs-units-projects).
@@ -203,7 +203,7 @@ class Organization(pulumi.CustomResource):
203
203
  resource_name: str,
204
204
  opts: Optional[pulumi.ResourceOptions] = None,
205
205
  name: Optional[pulumi.Input[str]] = None,
206
- timeouts: Optional[pulumi.Input[pulumi.InputType['OrganizationTimeoutsArgs']]] = None,
206
+ timeouts: Optional[pulumi.Input[Union['OrganizationTimeoutsArgs', 'OrganizationTimeoutsArgsDict']]] = None,
207
207
  __props__=None):
208
208
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
209
209
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -231,7 +231,7 @@ class Organization(pulumi.CustomResource):
231
231
  create_time: Optional[pulumi.Input[str]] = None,
232
232
  name: Optional[pulumi.Input[str]] = None,
233
233
  tenant_id: Optional[pulumi.Input[str]] = None,
234
- timeouts: Optional[pulumi.Input[pulumi.InputType['OrganizationTimeoutsArgs']]] = None,
234
+ timeouts: Optional[pulumi.Input[Union['OrganizationTimeoutsArgs', 'OrganizationTimeoutsArgsDict']]] = None,
235
235
  update_time: Optional[pulumi.Input[str]] = None) -> 'Organization':
236
236
  """
237
237
  Get an existing Organization resource's state with the given name, id, and optional extra
@@ -154,7 +154,7 @@ class OrganizationGroupProject(pulumi.CustomResource):
154
154
  group_id: Optional[pulumi.Input[str]] = None,
155
155
  project: Optional[pulumi.Input[str]] = None,
156
156
  role: Optional[pulumi.Input[str]] = None,
157
- timeouts: Optional[pulumi.Input[pulumi.InputType['OrganizationGroupProjectTimeoutsArgs']]] = None,
157
+ timeouts: Optional[pulumi.Input[Union['OrganizationGroupProjectTimeoutsArgs', 'OrganizationGroupProjectTimeoutsArgsDict']]] = None,
158
158
  __props__=None):
159
159
  """
160
160
  Adds and manages a [group](https://aiven.io/docs/platform/howto/list-groups) of users as members of a project.
@@ -250,7 +250,7 @@ class OrganizationGroupProject(pulumi.CustomResource):
250
250
  group_id: Optional[pulumi.Input[str]] = None,
251
251
  project: Optional[pulumi.Input[str]] = None,
252
252
  role: Optional[pulumi.Input[str]] = None,
253
- timeouts: Optional[pulumi.Input[pulumi.InputType['OrganizationGroupProjectTimeoutsArgs']]] = None,
253
+ timeouts: Optional[pulumi.Input[Union['OrganizationGroupProjectTimeoutsArgs', 'OrganizationGroupProjectTimeoutsArgsDict']]] = None,
254
254
  __props__=None):
255
255
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
256
256
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -283,7 +283,7 @@ class OrganizationGroupProject(pulumi.CustomResource):
283
283
  group_id: Optional[pulumi.Input[str]] = None,
284
284
  project: Optional[pulumi.Input[str]] = None,
285
285
  role: Optional[pulumi.Input[str]] = None,
286
- timeouts: Optional[pulumi.Input[pulumi.InputType['OrganizationGroupProjectTimeoutsArgs']]] = None) -> 'OrganizationGroupProject':
286
+ timeouts: Optional[pulumi.Input[Union['OrganizationGroupProjectTimeoutsArgs', 'OrganizationGroupProjectTimeoutsArgsDict']]] = None) -> 'OrganizationGroupProject':
287
287
  """
288
288
  Get an existing OrganizationGroupProject resource's state with the given name, id, and optional extra
289
289
  properties used to qualify the lookup.
@@ -169,7 +169,7 @@ class OrganizationUserGroupMember(pulumi.CustomResource):
169
169
  opts: Optional[pulumi.ResourceOptions] = None,
170
170
  group_id: Optional[pulumi.Input[str]] = None,
171
171
  organization_id: Optional[pulumi.Input[str]] = None,
172
- timeouts: Optional[pulumi.Input[pulumi.InputType['OrganizationUserGroupMemberTimeoutsArgs']]] = None,
172
+ timeouts: Optional[pulumi.Input[Union['OrganizationUserGroupMemberTimeoutsArgs', 'OrganizationUserGroupMemberTimeoutsArgsDict']]] = None,
173
173
  user_id: Optional[pulumi.Input[str]] = None,
174
174
  __props__=None):
175
175
  """
@@ -255,7 +255,7 @@ class OrganizationUserGroupMember(pulumi.CustomResource):
255
255
  opts: Optional[pulumi.ResourceOptions] = None,
256
256
  group_id: Optional[pulumi.Input[str]] = None,
257
257
  organization_id: Optional[pulumi.Input[str]] = None,
258
- timeouts: Optional[pulumi.Input[pulumi.InputType['OrganizationUserGroupMemberTimeoutsArgs']]] = None,
258
+ timeouts: Optional[pulumi.Input[Union['OrganizationUserGroupMemberTimeoutsArgs', 'OrganizationUserGroupMemberTimeoutsArgsDict']]] = None,
259
259
  user_id: Optional[pulumi.Input[str]] = None,
260
260
  __props__=None):
261
261
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
@@ -290,7 +290,7 @@ class OrganizationUserGroupMember(pulumi.CustomResource):
290
290
  group_id: Optional[pulumi.Input[str]] = None,
291
291
  last_activity_time: Optional[pulumi.Input[str]] = None,
292
292
  organization_id: Optional[pulumi.Input[str]] = None,
293
- timeouts: Optional[pulumi.Input[pulumi.InputType['OrganizationUserGroupMemberTimeoutsArgs']]] = None,
293
+ timeouts: Optional[pulumi.Input[Union['OrganizationUserGroupMemberTimeoutsArgs', 'OrganizationUserGroupMemberTimeoutsArgsDict']]] = None,
294
294
  user_id: Optional[pulumi.Input[str]] = None) -> 'OrganizationUserGroupMember':
295
295
  """
296
296
  Get an existing OrganizationUserGroupMember resource's state with the given name, id, and optional extra
pulumi_aiven/pg.py CHANGED
@@ -749,16 +749,16 @@ class Pg(pulumi.CustomResource):
749
749
  disk_space: Optional[pulumi.Input[str]] = None,
750
750
  maintenance_window_dow: Optional[pulumi.Input[str]] = None,
751
751
  maintenance_window_time: Optional[pulumi.Input[str]] = None,
752
- pg: Optional[pulumi.Input[pulumi.InputType['PgPgArgs']]] = None,
753
- pg_user_config: Optional[pulumi.Input[pulumi.InputType['PgPgUserConfigArgs']]] = None,
752
+ pg: Optional[pulumi.Input[Union['PgPgArgs', 'PgPgArgsDict']]] = None,
753
+ pg_user_config: Optional[pulumi.Input[Union['PgPgUserConfigArgs', 'PgPgUserConfigArgsDict']]] = 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[pulumi.InputType['PgServiceIntegrationArgs']]]]] = None,
757
+ service_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['PgServiceIntegrationArgs', 'PgServiceIntegrationArgsDict']]]]] = 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[pulumi.InputType['PgTagArgs']]]]] = None,
761
- tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['PgTechEmailArgs']]]]] = None,
760
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['PgTagArgs', 'PgTagArgsDict']]]]] = None,
761
+ tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[Union['PgTechEmailArgs', 'PgTechEmailArgsDict']]]]] = None,
762
762
  termination_protection: Optional[pulumi.Input[bool]] = None,
763
763
  __props__=None):
764
764
  """
@@ -777,16 +777,16 @@ class Pg(pulumi.CustomResource):
777
777
  :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.
778
778
  :param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
779
779
  :param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
780
- :param pulumi.Input[pulumi.InputType['PgPgArgs']] pg: PostgreSQL specific server provided values
781
- :param pulumi.Input[pulumi.InputType['PgPgUserConfigArgs']] pg_user_config: Pg user configurable settings
780
+ :param pulumi.Input[Union['PgPgArgs', 'PgPgArgsDict']] pg: PostgreSQL specific server provided values
781
+ :param pulumi.Input[Union['PgPgUserConfigArgs', 'PgPgUserConfigArgsDict']] pg_user_config: Pg user configurable settings
782
782
  :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).
783
783
  :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.
784
784
  :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.
785
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['PgServiceIntegrationArgs']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
785
+ :param pulumi.Input[Sequence[pulumi.Input[Union['PgServiceIntegrationArgs', 'PgServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
786
786
  :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.
787
787
  :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
788
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['PgTagArgs']]]] tags: Tags are key-value pairs that allow you to categorize services.
789
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['PgTechEmailArgs']]]] 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.
788
+ :param pulumi.Input[Sequence[pulumi.Input[Union['PgTagArgs', 'PgTagArgsDict']]]] tags: Tags are key-value pairs that allow you to categorize services.
789
+ :param pulumi.Input[Sequence[pulumi.Input[Union['PgTechEmailArgs', 'PgTechEmailArgsDict']]]] 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.
790
790
  :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.
791
791
  """
792
792
  ...
@@ -824,16 +824,16 @@ class Pg(pulumi.CustomResource):
824
824
  disk_space: Optional[pulumi.Input[str]] = None,
825
825
  maintenance_window_dow: Optional[pulumi.Input[str]] = None,
826
826
  maintenance_window_time: Optional[pulumi.Input[str]] = None,
827
- pg: Optional[pulumi.Input[pulumi.InputType['PgPgArgs']]] = None,
828
- pg_user_config: Optional[pulumi.Input[pulumi.InputType['PgPgUserConfigArgs']]] = None,
827
+ pg: Optional[pulumi.Input[Union['PgPgArgs', 'PgPgArgsDict']]] = None,
828
+ pg_user_config: Optional[pulumi.Input[Union['PgPgUserConfigArgs', 'PgPgUserConfigArgsDict']]] = None,
829
829
  plan: Optional[pulumi.Input[str]] = None,
830
830
  project: Optional[pulumi.Input[str]] = None,
831
831
  project_vpc_id: Optional[pulumi.Input[str]] = None,
832
- service_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['PgServiceIntegrationArgs']]]]] = None,
832
+ service_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['PgServiceIntegrationArgs', 'PgServiceIntegrationArgsDict']]]]] = None,
833
833
  service_name: Optional[pulumi.Input[str]] = None,
834
834
  static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
835
- tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['PgTagArgs']]]]] = None,
836
- tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['PgTechEmailArgs']]]]] = None,
835
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['PgTagArgs', 'PgTagArgsDict']]]]] = None,
836
+ tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[Union['PgTechEmailArgs', 'PgTechEmailArgsDict']]]]] = None,
837
837
  termination_protection: Optional[pulumi.Input[bool]] = None,
838
838
  __props__=None):
839
839
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
@@ -890,7 +890,7 @@ class Pg(pulumi.CustomResource):
890
890
  opts: Optional[pulumi.ResourceOptions] = None,
891
891
  additional_disk_space: Optional[pulumi.Input[str]] = None,
892
892
  cloud_name: Optional[pulumi.Input[str]] = None,
893
- components: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['PgComponentArgs']]]]] = None,
893
+ components: Optional[pulumi.Input[Sequence[pulumi.Input[Union['PgComponentArgs', 'PgComponentArgsDict']]]]] = None,
894
894
  disk_space: Optional[pulumi.Input[str]] = None,
895
895
  disk_space_cap: Optional[pulumi.Input[str]] = None,
896
896
  disk_space_default: Optional[pulumi.Input[str]] = None,
@@ -898,13 +898,13 @@ class Pg(pulumi.CustomResource):
898
898
  disk_space_used: Optional[pulumi.Input[str]] = None,
899
899
  maintenance_window_dow: Optional[pulumi.Input[str]] = None,
900
900
  maintenance_window_time: Optional[pulumi.Input[str]] = None,
901
- pg: Optional[pulumi.Input[pulumi.InputType['PgPgArgs']]] = None,
902
- pg_user_config: Optional[pulumi.Input[pulumi.InputType['PgPgUserConfigArgs']]] = None,
901
+ pg: Optional[pulumi.Input[Union['PgPgArgs', 'PgPgArgsDict']]] = None,
902
+ pg_user_config: Optional[pulumi.Input[Union['PgPgUserConfigArgs', 'PgPgUserConfigArgsDict']]] = None,
903
903
  plan: Optional[pulumi.Input[str]] = None,
904
904
  project: Optional[pulumi.Input[str]] = None,
905
905
  project_vpc_id: Optional[pulumi.Input[str]] = None,
906
906
  service_host: Optional[pulumi.Input[str]] = None,
907
- service_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['PgServiceIntegrationArgs']]]]] = None,
907
+ service_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['PgServiceIntegrationArgs', 'PgServiceIntegrationArgsDict']]]]] = None,
908
908
  service_name: Optional[pulumi.Input[str]] = None,
909
909
  service_password: Optional[pulumi.Input[str]] = None,
910
910
  service_port: Optional[pulumi.Input[int]] = None,
@@ -913,8 +913,8 @@ class Pg(pulumi.CustomResource):
913
913
  service_username: Optional[pulumi.Input[str]] = None,
914
914
  state: Optional[pulumi.Input[str]] = None,
915
915
  static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
916
- tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['PgTagArgs']]]]] = None,
917
- tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['PgTechEmailArgs']]]]] = None,
916
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['PgTagArgs', 'PgTagArgsDict']]]]] = None,
917
+ tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[Union['PgTechEmailArgs', 'PgTechEmailArgsDict']]]]] = None,
918
918
  termination_protection: Optional[pulumi.Input[bool]] = None) -> 'Pg':
919
919
  """
920
920
  Get an existing Pg resource's state with the given name, id, and optional extra
@@ -925,7 +925,7 @@ class Pg(pulumi.CustomResource):
925
925
  :param pulumi.ResourceOptions opts: Options for the resource.
926
926
  :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.
927
927
  :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).
928
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['PgComponentArgs']]]] components: Service component information objects
928
+ :param pulumi.Input[Sequence[pulumi.Input[Union['PgComponentArgs', 'PgComponentArgsDict']]]] components: Service component information objects
929
929
  :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.
930
930
  :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.
931
931
  :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`
@@ -933,13 +933,13 @@ class Pg(pulumi.CustomResource):
933
933
  :param pulumi.Input[str] disk_space_used: Disk space that service is currently using
934
934
  :param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
935
935
  :param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
936
- :param pulumi.Input[pulumi.InputType['PgPgArgs']] pg: PostgreSQL specific server provided values
937
- :param pulumi.Input[pulumi.InputType['PgPgUserConfigArgs']] pg_user_config: Pg user configurable settings
936
+ :param pulumi.Input[Union['PgPgArgs', 'PgPgArgsDict']] pg: PostgreSQL specific server provided values
937
+ :param pulumi.Input[Union['PgPgUserConfigArgs', 'PgPgUserConfigArgsDict']] pg_user_config: Pg user configurable settings
938
938
  :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).
939
939
  :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.
940
940
  :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.
941
941
  :param pulumi.Input[str] service_host: The hostname of the service.
942
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['PgServiceIntegrationArgs']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
942
+ :param pulumi.Input[Sequence[pulumi.Input[Union['PgServiceIntegrationArgs', 'PgServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
943
943
  :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.
944
944
  :param pulumi.Input[str] service_password: Password used for connecting to the service, if applicable
945
945
  :param pulumi.Input[int] service_port: The port of the service
@@ -948,8 +948,8 @@ class Pg(pulumi.CustomResource):
948
948
  :param pulumi.Input[str] service_username: Username used for connecting to the service, if applicable
949
949
  :param pulumi.Input[str] state: Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
950
950
  :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
951
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['PgTagArgs']]]] tags: Tags are key-value pairs that allow you to categorize services.
952
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['PgTechEmailArgs']]]] 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.
951
+ :param pulumi.Input[Sequence[pulumi.Input[Union['PgTagArgs', 'PgTagArgsDict']]]] tags: Tags are key-value pairs that allow you to categorize services.
952
+ :param pulumi.Input[Sequence[pulumi.Input[Union['PgTechEmailArgs', 'PgTechEmailArgsDict']]]] 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.
953
953
  :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.
954
954
  """
955
955
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
pulumi_aiven/project.py CHANGED
@@ -448,7 +448,7 @@ class Project(pulumi.CustomResource):
448
448
  default_cloud: Optional[pulumi.Input[str]] = None,
449
449
  parent_id: Optional[pulumi.Input[str]] = None,
450
450
  project: Optional[pulumi.Input[str]] = None,
451
- tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ProjectTagArgs']]]]] = None,
451
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ProjectTagArgs', 'ProjectTagArgsDict']]]]] = None,
452
452
  technical_emails: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
453
453
  use_source_project_billing_group: Optional[pulumi.Input[bool]] = None,
454
454
  __props__=None):
@@ -481,7 +481,7 @@ class Project(pulumi.CustomResource):
481
481
  :param pulumi.Input[str] default_cloud: Default cloud provider and region where services are hosted. This can be changed after the project is created and will not affect existing services.
482
482
  :param pulumi.Input[str] parent_id: Link a project to an [organization, organizational unit,](https://aiven.io/docs/platform/concepts/orgs-units-projects) or account by using its ID. To set up proper dependencies please refer to this variable as a reference.
483
483
  :param pulumi.Input[str] project: The name of the project. Names must be globally unique among all Aiven customers and cannot be changed later without destroying and re-creating the project, including all sub-resources.
484
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ProjectTagArgs']]]] tags: Tags are key-value pairs that allow you to categorize projects.
484
+ :param pulumi.Input[Sequence[pulumi.Input[Union['ProjectTagArgs', 'ProjectTagArgsDict']]]] tags: Tags are key-value pairs that allow you to categorize projects.
485
485
  :param pulumi.Input[Sequence[pulumi.Input[str]]] technical_emails: The email addresses for [project contacts](https://aiven.io/docs/platform/howto/technical-emails), who will receive important alerts and updates about this project and its services. You can also set email contacts at the service level. It's good practice to keep these up-to-date to be aware of any potential issues with your project.
486
486
  :param pulumi.Input[bool] use_source_project_billing_group: Use the same billing group that is used in source project.
487
487
  """
@@ -533,7 +533,7 @@ class Project(pulumi.CustomResource):
533
533
  default_cloud: Optional[pulumi.Input[str]] = None,
534
534
  parent_id: Optional[pulumi.Input[str]] = None,
535
535
  project: Optional[pulumi.Input[str]] = None,
536
- tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ProjectTagArgs']]]]] = None,
536
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ProjectTagArgs', 'ProjectTagArgsDict']]]]] = None,
537
537
  technical_emails: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
538
538
  use_source_project_billing_group: Optional[pulumi.Input[bool]] = None,
539
539
  __props__=None):
@@ -584,7 +584,7 @@ class Project(pulumi.CustomResource):
584
584
  parent_id: Optional[pulumi.Input[str]] = None,
585
585
  payment_method: Optional[pulumi.Input[str]] = None,
586
586
  project: Optional[pulumi.Input[str]] = None,
587
- tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ProjectTagArgs']]]]] = None,
587
+ tags: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ProjectTagArgs', 'ProjectTagArgsDict']]]]] = None,
588
588
  technical_emails: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
589
589
  use_source_project_billing_group: Optional[pulumi.Input[bool]] = None) -> 'Project':
590
590
  """
@@ -605,7 +605,7 @@ class Project(pulumi.CustomResource):
605
605
  :param pulumi.Input[str] parent_id: Link a project to an [organization, organizational unit,](https://aiven.io/docs/platform/concepts/orgs-units-projects) or account by using its ID. To set up proper dependencies please refer to this variable as a reference.
606
606
  :param pulumi.Input[str] payment_method: The payment type used for this project. For example,`card`.
607
607
  :param pulumi.Input[str] project: The name of the project. Names must be globally unique among all Aiven customers and cannot be changed later without destroying and re-creating the project, including all sub-resources.
608
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ProjectTagArgs']]]] tags: Tags are key-value pairs that allow you to categorize projects.
608
+ :param pulumi.Input[Sequence[pulumi.Input[Union['ProjectTagArgs', 'ProjectTagArgsDict']]]] tags: Tags are key-value pairs that allow you to categorize projects.
609
609
  :param pulumi.Input[Sequence[pulumi.Input[str]]] technical_emails: The email addresses for [project contacts](https://aiven.io/docs/platform/howto/technical-emails), who will receive important alerts and updates about this project and its services. You can also set email contacts at the service level. It's good practice to keep these up-to-date to be aware of any potential issues with your project.
610
610
  :param pulumi.Input[bool] use_source_project_billing_group: Use the same billing group that is used in source project.
611
611
  """
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "aiven",
4
- "version": "6.22.0-alpha.1722921580"
4
+ "version": "6.22.0-alpha.1723454180"
5
5
  }