pulumi-aiven 6.38.0a1747372094__py3-none-any.whl → 6.38.0a1747647727__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 (31) hide show
  1. pulumi_aiven/__init__.py +9 -0
  2. pulumi_aiven/_inputs.py +1302 -160
  3. pulumi_aiven/clickhouse_grant.py +18 -0
  4. pulumi_aiven/get_external_identity.py +5 -5
  5. pulumi_aiven/get_open_search.py +7 -7
  6. pulumi_aiven/get_open_search_acl_config.py +7 -7
  7. pulumi_aiven/get_open_search_acl_rule.py +19 -19
  8. pulumi_aiven/get_opensearch_security_plugin_config.py +7 -7
  9. pulumi_aiven/get_opensearch_user.py +13 -13
  10. pulumi_aiven/get_organization.py +24 -6
  11. pulumi_aiven/get_organization_address.py +52 -29
  12. pulumi_aiven/get_organization_billing_group.py +38 -15
  13. pulumi_aiven/get_organization_billing_group_list.py +40 -12
  14. pulumi_aiven/get_organization_project.py +50 -14
  15. pulumi_aiven/governance_access.py +418 -0
  16. pulumi_aiven/open_search.py +17 -19
  17. pulumi_aiven/open_search_acl_config.py +29 -41
  18. pulumi_aiven/open_search_acl_rule.py +47 -47
  19. pulumi_aiven/opensearch_security_plugin_config.py +14 -42
  20. pulumi_aiven/opensearch_user.py +32 -32
  21. pulumi_aiven/organization.py +24 -19
  22. pulumi_aiven/organization_address.py +102 -96
  23. pulumi_aiven/organization_application_user.py +9 -0
  24. pulumi_aiven/organization_billing_group.py +66 -60
  25. pulumi_aiven/organization_project.py +111 -62
  26. pulumi_aiven/outputs.py +1039 -189
  27. pulumi_aiven/pulumi-plugin.json +1 -1
  28. {pulumi_aiven-6.38.0a1747372094.dist-info → pulumi_aiven-6.38.0a1747647727.dist-info}/METADATA +1 -1
  29. {pulumi_aiven-6.38.0a1747372094.dist-info → pulumi_aiven-6.38.0a1747647727.dist-info}/RECORD +31 -30
  30. {pulumi_aiven-6.38.0a1747372094.dist-info → pulumi_aiven-6.38.0a1747647727.dist-info}/WHEEL +0 -0
  31. {pulumi_aiven-6.38.0a1747372094.dist-info → pulumi_aiven-6.38.0a1747647727.dist-info}/top_level.txt +0 -0
@@ -35,15 +35,15 @@ class OrganizationBillingGroupArgs:
35
35
  vat_id: Optional[pulumi.Input[builtins.str]] = None):
36
36
  """
37
37
  The set of arguments for constructing a OrganizationBillingGroup resource.
38
- :param pulumi.Input[builtins.str] billing_address_id: ID of the billing address.
38
+ :param pulumi.Input[builtins.str] billing_address_id: Billing address ID. Maximum length: `36`.
39
39
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] billing_contact_emails: List of billing contact emails.
40
- :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] billing_emails: List of billing emails.
41
- :param pulumi.Input[builtins.str] billing_group_name: Name of the billing group.
42
- :param pulumi.Input[builtins.str] organization_id: ID of the organization.
43
- :param pulumi.Input[builtins.str] payment_method_id: ID of the payment method.
44
- :param pulumi.Input[builtins.str] shipping_address_id: ID of the shipping address.
45
- :param pulumi.Input[builtins.str] billing_currency: Billing currency.
46
- :param pulumi.Input[builtins.str] custom_invoice_text: Custom invoice text.
40
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] billing_emails: List of billing contact emails.
41
+ :param pulumi.Input[builtins.str] billing_group_name: Billing Group Name. Maximum length: `128`.
42
+ :param pulumi.Input[builtins.str] organization_id: ID of an organization. Maximum length: `36`. Changing this property forces recreation of the resource.
43
+ :param pulumi.Input[builtins.str] payment_method_id: Payment method ID.
44
+ :param pulumi.Input[builtins.str] shipping_address_id: Shipping address ID. Maximum length: `36`.
45
+ :param pulumi.Input[builtins.str] billing_currency: Acceptable currencies for a billing group. The possible values are `AUD`, `CAD`, `CHF`, `DKK`, `EUR`, `GBP`, `JPY`, `NOK`, `NZD`, `SEK`, `SGD` and `USD`.
46
+ :param pulumi.Input[builtins.str] custom_invoice_text: Extra billing text. Maximum length: `254`.
47
47
  :param pulumi.Input[builtins.str] vat_id: VAT ID.
48
48
  """
49
49
  pulumi.set(__self__, "billing_address_id", billing_address_id)
@@ -66,7 +66,7 @@ class OrganizationBillingGroupArgs:
66
66
  @pulumi.getter(name="billingAddressId")
67
67
  def billing_address_id(self) -> pulumi.Input[builtins.str]:
68
68
  """
69
- ID of the billing address.
69
+ Billing address ID. Maximum length: `36`.
70
70
  """
71
71
  return pulumi.get(self, "billing_address_id")
72
72
 
@@ -90,7 +90,7 @@ class OrganizationBillingGroupArgs:
90
90
  @pulumi.getter(name="billingEmails")
91
91
  def billing_emails(self) -> pulumi.Input[Sequence[pulumi.Input[builtins.str]]]:
92
92
  """
93
- List of billing emails.
93
+ List of billing contact emails.
94
94
  """
95
95
  return pulumi.get(self, "billing_emails")
96
96
 
@@ -102,7 +102,7 @@ class OrganizationBillingGroupArgs:
102
102
  @pulumi.getter(name="billingGroupName")
103
103
  def billing_group_name(self) -> pulumi.Input[builtins.str]:
104
104
  """
105
- Name of the billing group.
105
+ Billing Group Name. Maximum length: `128`.
106
106
  """
107
107
  return pulumi.get(self, "billing_group_name")
108
108
 
@@ -114,7 +114,7 @@ class OrganizationBillingGroupArgs:
114
114
  @pulumi.getter(name="organizationId")
115
115
  def organization_id(self) -> pulumi.Input[builtins.str]:
116
116
  """
117
- ID of the organization.
117
+ ID of an organization. Maximum length: `36`. Changing this property forces recreation of the resource.
118
118
  """
119
119
  return pulumi.get(self, "organization_id")
120
120
 
@@ -126,7 +126,7 @@ class OrganizationBillingGroupArgs:
126
126
  @pulumi.getter(name="paymentMethodId")
127
127
  def payment_method_id(self) -> pulumi.Input[builtins.str]:
128
128
  """
129
- ID of the payment method.
129
+ Payment method ID.
130
130
  """
131
131
  return pulumi.get(self, "payment_method_id")
132
132
 
@@ -138,7 +138,7 @@ class OrganizationBillingGroupArgs:
138
138
  @pulumi.getter(name="shippingAddressId")
139
139
  def shipping_address_id(self) -> pulumi.Input[builtins.str]:
140
140
  """
141
- ID of the shipping address.
141
+ Shipping address ID. Maximum length: `36`.
142
142
  """
143
143
  return pulumi.get(self, "shipping_address_id")
144
144
 
@@ -150,7 +150,7 @@ class OrganizationBillingGroupArgs:
150
150
  @pulumi.getter(name="billingCurrency")
151
151
  def billing_currency(self) -> Optional[pulumi.Input[builtins.str]]:
152
152
  """
153
- Billing currency.
153
+ Acceptable currencies for a billing group. The possible values are `AUD`, `CAD`, `CHF`, `DKK`, `EUR`, `GBP`, `JPY`, `NOK`, `NZD`, `SEK`, `SGD` and `USD`.
154
154
  """
155
155
  return pulumi.get(self, "billing_currency")
156
156
 
@@ -162,7 +162,7 @@ class OrganizationBillingGroupArgs:
162
162
  @pulumi.getter(name="customInvoiceText")
163
163
  def custom_invoice_text(self) -> Optional[pulumi.Input[builtins.str]]:
164
164
  """
165
- Custom invoice text.
165
+ Extra billing text. Maximum length: `254`.
166
166
  """
167
167
  return pulumi.get(self, "custom_invoice_text")
168
168
 
@@ -209,16 +209,16 @@ class _OrganizationBillingGroupState:
209
209
  vat_id: Optional[pulumi.Input[builtins.str]] = None):
210
210
  """
211
211
  Input properties used for looking up and filtering OrganizationBillingGroup resources.
212
- :param pulumi.Input[builtins.str] billing_address_id: ID of the billing address.
212
+ :param pulumi.Input[builtins.str] billing_address_id: Billing address ID. Maximum length: `36`.
213
213
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] billing_contact_emails: List of billing contact emails.
214
- :param pulumi.Input[builtins.str] billing_currency: Billing currency.
215
- :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] billing_emails: List of billing emails.
216
- :param pulumi.Input[builtins.str] billing_group_id: ID of the billing group.
217
- :param pulumi.Input[builtins.str] billing_group_name: Name of the billing group.
218
- :param pulumi.Input[builtins.str] custom_invoice_text: Custom invoice text.
219
- :param pulumi.Input[builtins.str] organization_id: ID of the organization.
220
- :param pulumi.Input[builtins.str] payment_method_id: ID of the payment method.
221
- :param pulumi.Input[builtins.str] shipping_address_id: ID of the shipping address.
214
+ :param pulumi.Input[builtins.str] billing_currency: Acceptable currencies for a billing group. The possible values are `AUD`, `CAD`, `CHF`, `DKK`, `EUR`, `GBP`, `JPY`, `NOK`, `NZD`, `SEK`, `SGD` and `USD`.
215
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] billing_emails: List of billing contact emails.
216
+ :param pulumi.Input[builtins.str] billing_group_id: Billing group ID.
217
+ :param pulumi.Input[builtins.str] billing_group_name: Billing Group Name. Maximum length: `128`.
218
+ :param pulumi.Input[builtins.str] custom_invoice_text: Extra billing text. Maximum length: `254`.
219
+ :param pulumi.Input[builtins.str] organization_id: ID of an organization. Maximum length: `36`. Changing this property forces recreation of the resource.
220
+ :param pulumi.Input[builtins.str] payment_method_id: Payment method ID.
221
+ :param pulumi.Input[builtins.str] shipping_address_id: Shipping address ID. Maximum length: `36`.
222
222
  :param pulumi.Input[builtins.str] vat_id: VAT ID.
223
223
  """
224
224
  if billing_address_id is not None:
@@ -250,7 +250,7 @@ class _OrganizationBillingGroupState:
250
250
  @pulumi.getter(name="billingAddressId")
251
251
  def billing_address_id(self) -> Optional[pulumi.Input[builtins.str]]:
252
252
  """
253
- ID of the billing address.
253
+ Billing address ID. Maximum length: `36`.
254
254
  """
255
255
  return pulumi.get(self, "billing_address_id")
256
256
 
@@ -274,7 +274,7 @@ class _OrganizationBillingGroupState:
274
274
  @pulumi.getter(name="billingCurrency")
275
275
  def billing_currency(self) -> Optional[pulumi.Input[builtins.str]]:
276
276
  """
277
- Billing currency.
277
+ Acceptable currencies for a billing group. The possible values are `AUD`, `CAD`, `CHF`, `DKK`, `EUR`, `GBP`, `JPY`, `NOK`, `NZD`, `SEK`, `SGD` and `USD`.
278
278
  """
279
279
  return pulumi.get(self, "billing_currency")
280
280
 
@@ -286,7 +286,7 @@ class _OrganizationBillingGroupState:
286
286
  @pulumi.getter(name="billingEmails")
287
287
  def billing_emails(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
288
288
  """
289
- List of billing emails.
289
+ List of billing contact emails.
290
290
  """
291
291
  return pulumi.get(self, "billing_emails")
292
292
 
@@ -298,7 +298,7 @@ class _OrganizationBillingGroupState:
298
298
  @pulumi.getter(name="billingGroupId")
299
299
  def billing_group_id(self) -> Optional[pulumi.Input[builtins.str]]:
300
300
  """
301
- ID of the billing group.
301
+ Billing group ID.
302
302
  """
303
303
  return pulumi.get(self, "billing_group_id")
304
304
 
@@ -310,7 +310,7 @@ class _OrganizationBillingGroupState:
310
310
  @pulumi.getter(name="billingGroupName")
311
311
  def billing_group_name(self) -> Optional[pulumi.Input[builtins.str]]:
312
312
  """
313
- Name of the billing group.
313
+ Billing Group Name. Maximum length: `128`.
314
314
  """
315
315
  return pulumi.get(self, "billing_group_name")
316
316
 
@@ -322,7 +322,7 @@ class _OrganizationBillingGroupState:
322
322
  @pulumi.getter(name="customInvoiceText")
323
323
  def custom_invoice_text(self) -> Optional[pulumi.Input[builtins.str]]:
324
324
  """
325
- Custom invoice text.
325
+ Extra billing text. Maximum length: `254`.
326
326
  """
327
327
  return pulumi.get(self, "custom_invoice_text")
328
328
 
@@ -334,7 +334,7 @@ class _OrganizationBillingGroupState:
334
334
  @pulumi.getter(name="organizationId")
335
335
  def organization_id(self) -> Optional[pulumi.Input[builtins.str]]:
336
336
  """
337
- ID of the organization.
337
+ ID of an organization. Maximum length: `36`. Changing this property forces recreation of the resource.
338
338
  """
339
339
  return pulumi.get(self, "organization_id")
340
340
 
@@ -346,7 +346,7 @@ class _OrganizationBillingGroupState:
346
346
  @pulumi.getter(name="paymentMethodId")
347
347
  def payment_method_id(self) -> Optional[pulumi.Input[builtins.str]]:
348
348
  """
349
- ID of the payment method.
349
+ Payment method ID.
350
350
  """
351
351
  return pulumi.get(self, "payment_method_id")
352
352
 
@@ -358,7 +358,7 @@ class _OrganizationBillingGroupState:
358
358
  @pulumi.getter(name="shippingAddressId")
359
359
  def shipping_address_id(self) -> Optional[pulumi.Input[builtins.str]]:
360
360
  """
361
- ID of the shipping address.
361
+ Shipping address ID. Maximum length: `36`.
362
362
  """
363
363
  return pulumi.get(self, "shipping_address_id")
364
364
 
@@ -409,17 +409,20 @@ class OrganizationBillingGroup(pulumi.CustomResource):
409
409
  """
410
410
  Creates and manages an organization billing group.
411
411
 
412
+ **This resource is in the beta stage and may change without notice.** Set
413
+ the `PROVIDER_AIVEN_ENABLE_BETA` environment variable to use the resource.
414
+
412
415
  :param str resource_name: The name of the resource.
413
416
  :param pulumi.ResourceOptions opts: Options for the resource.
414
- :param pulumi.Input[builtins.str] billing_address_id: ID of the billing address.
417
+ :param pulumi.Input[builtins.str] billing_address_id: Billing address ID. Maximum length: `36`.
415
418
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] billing_contact_emails: List of billing contact emails.
416
- :param pulumi.Input[builtins.str] billing_currency: Billing currency.
417
- :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] billing_emails: List of billing emails.
418
- :param pulumi.Input[builtins.str] billing_group_name: Name of the billing group.
419
- :param pulumi.Input[builtins.str] custom_invoice_text: Custom invoice text.
420
- :param pulumi.Input[builtins.str] organization_id: ID of the organization.
421
- :param pulumi.Input[builtins.str] payment_method_id: ID of the payment method.
422
- :param pulumi.Input[builtins.str] shipping_address_id: ID of the shipping address.
419
+ :param pulumi.Input[builtins.str] billing_currency: Acceptable currencies for a billing group. The possible values are `AUD`, `CAD`, `CHF`, `DKK`, `EUR`, `GBP`, `JPY`, `NOK`, `NZD`, `SEK`, `SGD` and `USD`.
420
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] billing_emails: List of billing contact emails.
421
+ :param pulumi.Input[builtins.str] billing_group_name: Billing Group Name. Maximum length: `128`.
422
+ :param pulumi.Input[builtins.str] custom_invoice_text: Extra billing text. Maximum length: `254`.
423
+ :param pulumi.Input[builtins.str] organization_id: ID of an organization. Maximum length: `36`. Changing this property forces recreation of the resource.
424
+ :param pulumi.Input[builtins.str] payment_method_id: Payment method ID.
425
+ :param pulumi.Input[builtins.str] shipping_address_id: Shipping address ID. Maximum length: `36`.
423
426
  :param pulumi.Input[builtins.str] vat_id: VAT ID.
424
427
  """
425
428
  ...
@@ -431,6 +434,9 @@ class OrganizationBillingGroup(pulumi.CustomResource):
431
434
  """
432
435
  Creates and manages an organization billing group.
433
436
 
437
+ **This resource is in the beta stage and may change without notice.** Set
438
+ the `PROVIDER_AIVEN_ENABLE_BETA` environment variable to use the resource.
439
+
434
440
  :param str resource_name: The name of the resource.
435
441
  :param OrganizationBillingGroupArgs args: The arguments to use to populate this resource's properties.
436
442
  :param pulumi.ResourceOptions opts: Options for the resource.
@@ -521,16 +527,16 @@ class OrganizationBillingGroup(pulumi.CustomResource):
521
527
  :param str resource_name: The unique name of the resulting resource.
522
528
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
523
529
  :param pulumi.ResourceOptions opts: Options for the resource.
524
- :param pulumi.Input[builtins.str] billing_address_id: ID of the billing address.
530
+ :param pulumi.Input[builtins.str] billing_address_id: Billing address ID. Maximum length: `36`.
525
531
  :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] billing_contact_emails: List of billing contact emails.
526
- :param pulumi.Input[builtins.str] billing_currency: Billing currency.
527
- :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] billing_emails: List of billing emails.
528
- :param pulumi.Input[builtins.str] billing_group_id: ID of the billing group.
529
- :param pulumi.Input[builtins.str] billing_group_name: Name of the billing group.
530
- :param pulumi.Input[builtins.str] custom_invoice_text: Custom invoice text.
531
- :param pulumi.Input[builtins.str] organization_id: ID of the organization.
532
- :param pulumi.Input[builtins.str] payment_method_id: ID of the payment method.
533
- :param pulumi.Input[builtins.str] shipping_address_id: ID of the shipping address.
532
+ :param pulumi.Input[builtins.str] billing_currency: Acceptable currencies for a billing group. The possible values are `AUD`, `CAD`, `CHF`, `DKK`, `EUR`, `GBP`, `JPY`, `NOK`, `NZD`, `SEK`, `SGD` and `USD`.
533
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] billing_emails: List of billing contact emails.
534
+ :param pulumi.Input[builtins.str] billing_group_id: Billing group ID.
535
+ :param pulumi.Input[builtins.str] billing_group_name: Billing Group Name. Maximum length: `128`.
536
+ :param pulumi.Input[builtins.str] custom_invoice_text: Extra billing text. Maximum length: `254`.
537
+ :param pulumi.Input[builtins.str] organization_id: ID of an organization. Maximum length: `36`. Changing this property forces recreation of the resource.
538
+ :param pulumi.Input[builtins.str] payment_method_id: Payment method ID.
539
+ :param pulumi.Input[builtins.str] shipping_address_id: Shipping address ID. Maximum length: `36`.
534
540
  :param pulumi.Input[builtins.str] vat_id: VAT ID.
535
541
  """
536
542
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -555,7 +561,7 @@ class OrganizationBillingGroup(pulumi.CustomResource):
555
561
  @pulumi.getter(name="billingAddressId")
556
562
  def billing_address_id(self) -> pulumi.Output[builtins.str]:
557
563
  """
558
- ID of the billing address.
564
+ Billing address ID. Maximum length: `36`.
559
565
  """
560
566
  return pulumi.get(self, "billing_address_id")
561
567
 
@@ -571,7 +577,7 @@ class OrganizationBillingGroup(pulumi.CustomResource):
571
577
  @pulumi.getter(name="billingCurrency")
572
578
  def billing_currency(self) -> pulumi.Output[Optional[builtins.str]]:
573
579
  """
574
- Billing currency.
580
+ Acceptable currencies for a billing group. The possible values are `AUD`, `CAD`, `CHF`, `DKK`, `EUR`, `GBP`, `JPY`, `NOK`, `NZD`, `SEK`, `SGD` and `USD`.
575
581
  """
576
582
  return pulumi.get(self, "billing_currency")
577
583
 
@@ -579,7 +585,7 @@ class OrganizationBillingGroup(pulumi.CustomResource):
579
585
  @pulumi.getter(name="billingEmails")
580
586
  def billing_emails(self) -> pulumi.Output[Sequence[builtins.str]]:
581
587
  """
582
- List of billing emails.
588
+ List of billing contact emails.
583
589
  """
584
590
  return pulumi.get(self, "billing_emails")
585
591
 
@@ -587,7 +593,7 @@ class OrganizationBillingGroup(pulumi.CustomResource):
587
593
  @pulumi.getter(name="billingGroupId")
588
594
  def billing_group_id(self) -> pulumi.Output[builtins.str]:
589
595
  """
590
- ID of the billing group.
596
+ Billing group ID.
591
597
  """
592
598
  return pulumi.get(self, "billing_group_id")
593
599
 
@@ -595,7 +601,7 @@ class OrganizationBillingGroup(pulumi.CustomResource):
595
601
  @pulumi.getter(name="billingGroupName")
596
602
  def billing_group_name(self) -> pulumi.Output[builtins.str]:
597
603
  """
598
- Name of the billing group.
604
+ Billing Group Name. Maximum length: `128`.
599
605
  """
600
606
  return pulumi.get(self, "billing_group_name")
601
607
 
@@ -603,7 +609,7 @@ class OrganizationBillingGroup(pulumi.CustomResource):
603
609
  @pulumi.getter(name="customInvoiceText")
604
610
  def custom_invoice_text(self) -> pulumi.Output[Optional[builtins.str]]:
605
611
  """
606
- Custom invoice text.
612
+ Extra billing text. Maximum length: `254`.
607
613
  """
608
614
  return pulumi.get(self, "custom_invoice_text")
609
615
 
@@ -611,7 +617,7 @@ class OrganizationBillingGroup(pulumi.CustomResource):
611
617
  @pulumi.getter(name="organizationId")
612
618
  def organization_id(self) -> pulumi.Output[builtins.str]:
613
619
  """
614
- ID of the organization.
620
+ ID of an organization. Maximum length: `36`. Changing this property forces recreation of the resource.
615
621
  """
616
622
  return pulumi.get(self, "organization_id")
617
623
 
@@ -619,7 +625,7 @@ class OrganizationBillingGroup(pulumi.CustomResource):
619
625
  @pulumi.getter(name="paymentMethodId")
620
626
  def payment_method_id(self) -> pulumi.Output[builtins.str]:
621
627
  """
622
- ID of the payment method.
628
+ Payment method ID.
623
629
  """
624
630
  return pulumi.get(self, "payment_method_id")
625
631
 
@@ -627,7 +633,7 @@ class OrganizationBillingGroup(pulumi.CustomResource):
627
633
  @pulumi.getter(name="shippingAddressId")
628
634
  def shipping_address_id(self) -> pulumi.Output[builtins.str]:
629
635
  """
630
- ID of the shipping address.
636
+ Shipping address ID. Maximum length: `36`.
631
637
  """
632
638
  return pulumi.get(self, "shipping_address_id")
633
639