pulumi-aiven 6.39.0a1748900807__py3-none-any.whl → 6.40.0__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/_inputs.py +723 -314
- pulumi_aiven/alloydbomni.py +8 -8
- pulumi_aiven/cassandra.py +8 -8
- pulumi_aiven/clickhouse.py +8 -8
- pulumi_aiven/clickhouse_database.py +0 -10
- pulumi_aiven/clickhouse_grant.py +0 -16
- pulumi_aiven/dragonfly.py +8 -8
- pulumi_aiven/flink.py +8 -8
- pulumi_aiven/get_alloydbomni.py +1 -1
- pulumi_aiven/get_cassanda.py +1 -1
- pulumi_aiven/get_cassandra.py +1 -1
- pulumi_aiven/get_clickhouse.py +1 -1
- pulumi_aiven/get_dragonfly.py +1 -1
- pulumi_aiven/get_flink.py +1 -1
- pulumi_aiven/get_grafana.py +1 -1
- pulumi_aiven/get_kafka.py +1 -1
- pulumi_aiven/get_kafka_connect.py +1 -1
- pulumi_aiven/get_kafka_mirror_maker.py +1 -1
- pulumi_aiven/get_m3_aggregator.py +1 -1
- pulumi_aiven/get_m3_db.py +1 -1
- pulumi_aiven/get_my_sql.py +1 -1
- pulumi_aiven/get_open_search.py +1 -1
- pulumi_aiven/get_organization_billing_group.py +15 -15
- pulumi_aiven/get_pg.py +1 -1
- pulumi_aiven/get_redis.py +1 -1
- pulumi_aiven/get_thanos.py +1 -1
- pulumi_aiven/get_valkey.py +1 -1
- pulumi_aiven/governance_access.py +87 -54
- pulumi_aiven/grafana.py +8 -8
- pulumi_aiven/influx_db.py +36 -29
- pulumi_aiven/kafka.py +8 -8
- pulumi_aiven/kafka_connect.py +8 -8
- pulumi_aiven/kafka_mirror_maker.py +8 -8
- pulumi_aiven/m3_aggregator.py +8 -8
- pulumi_aiven/m3_db.py +8 -8
- pulumi_aiven/my_sql.py +8 -8
- pulumi_aiven/open_search.py +8 -8
- pulumi_aiven/organization_billing_group.py +41 -41
- pulumi_aiven/organization_permission.py +0 -18
- pulumi_aiven/outputs.py +863 -370
- pulumi_aiven/pg.py +8 -8
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/redis.py +8 -8
- pulumi_aiven/thanos.py +8 -8
- pulumi_aiven/valkey.py +8 -8
- {pulumi_aiven-6.39.0a1748900807.dist-info → pulumi_aiven-6.40.0.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.39.0a1748900807.dist-info → pulumi_aiven-6.40.0.dist-info}/RECORD +49 -49
- {pulumi_aiven-6.39.0a1748900807.dist-info → pulumi_aiven-6.40.0.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.39.0a1748900807.dist-info → pulumi_aiven-6.40.0.dist-info}/top_level.txt +0 -0
|
@@ -230,7 +230,7 @@ class GetKafkaMirrorMakerResult:
|
|
|
230
230
|
@pulumi.getter(name="projectVpcId")
|
|
231
231
|
def project_vpc_id(self) -> builtins.str:
|
|
232
232
|
"""
|
|
233
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
233
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
234
234
|
"""
|
|
235
235
|
return pulumi.get(self, "project_vpc_id")
|
|
236
236
|
|
|
@@ -241,7 +241,7 @@ class GetM3AggregatorResult:
|
|
|
241
241
|
@pulumi.getter(name="projectVpcId")
|
|
242
242
|
def project_vpc_id(self) -> builtins.str:
|
|
243
243
|
"""
|
|
244
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
244
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
245
245
|
"""
|
|
246
246
|
return pulumi.get(self, "project_vpc_id")
|
|
247
247
|
|
pulumi_aiven/get_m3_db.py
CHANGED
|
@@ -241,7 +241,7 @@ class GetM3DbResult:
|
|
|
241
241
|
@pulumi.getter(name="projectVpcId")
|
|
242
242
|
def project_vpc_id(self) -> builtins.str:
|
|
243
243
|
"""
|
|
244
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
244
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
245
245
|
"""
|
|
246
246
|
return pulumi.get(self, "project_vpc_id")
|
|
247
247
|
|
pulumi_aiven/get_my_sql.py
CHANGED
|
@@ -241,7 +241,7 @@ class GetMySqlResult:
|
|
|
241
241
|
@pulumi.getter(name="projectVpcId")
|
|
242
242
|
def project_vpc_id(self) -> builtins.str:
|
|
243
243
|
"""
|
|
244
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
244
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
245
245
|
"""
|
|
246
246
|
return pulumi.get(self, "project_vpc_id")
|
|
247
247
|
|
pulumi_aiven/get_open_search.py
CHANGED
|
@@ -241,7 +241,7 @@ class GetOpenSearchResult:
|
|
|
241
241
|
@pulumi.getter(name="projectVpcId")
|
|
242
242
|
def project_vpc_id(self) -> builtins.str:
|
|
243
243
|
"""
|
|
244
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
244
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
245
245
|
"""
|
|
246
246
|
return pulumi.get(self, "project_vpc_id")
|
|
247
247
|
|
|
@@ -29,16 +29,13 @@ class GetOrganizationBillingGroupResult:
|
|
|
29
29
|
"""
|
|
30
30
|
A collection of values returned by getOrganizationBillingGroup.
|
|
31
31
|
"""
|
|
32
|
-
def __init__(__self__, billing_address_id=None, billing_contact_emails=None,
|
|
32
|
+
def __init__(__self__, billing_address_id=None, billing_contact_emails=None, billing_emails=None, billing_group_id=None, billing_group_name=None, currency=None, custom_invoice_text=None, id=None, organization_id=None, payment_method_id=None, shipping_address_id=None, timeouts=None, vat_id=None):
|
|
33
33
|
if billing_address_id and not isinstance(billing_address_id, str):
|
|
34
34
|
raise TypeError("Expected argument 'billing_address_id' to be a str")
|
|
35
35
|
pulumi.set(__self__, "billing_address_id", billing_address_id)
|
|
36
36
|
if billing_contact_emails and not isinstance(billing_contact_emails, list):
|
|
37
37
|
raise TypeError("Expected argument 'billing_contact_emails' to be a list")
|
|
38
38
|
pulumi.set(__self__, "billing_contact_emails", billing_contact_emails)
|
|
39
|
-
if billing_currency and not isinstance(billing_currency, str):
|
|
40
|
-
raise TypeError("Expected argument 'billing_currency' to be a str")
|
|
41
|
-
pulumi.set(__self__, "billing_currency", billing_currency)
|
|
42
39
|
if billing_emails and not isinstance(billing_emails, list):
|
|
43
40
|
raise TypeError("Expected argument 'billing_emails' to be a list")
|
|
44
41
|
pulumi.set(__self__, "billing_emails", billing_emails)
|
|
@@ -48,6 +45,9 @@ class GetOrganizationBillingGroupResult:
|
|
|
48
45
|
if billing_group_name and not isinstance(billing_group_name, str):
|
|
49
46
|
raise TypeError("Expected argument 'billing_group_name' to be a str")
|
|
50
47
|
pulumi.set(__self__, "billing_group_name", billing_group_name)
|
|
48
|
+
if currency and not isinstance(currency, str):
|
|
49
|
+
raise TypeError("Expected argument 'currency' to be a str")
|
|
50
|
+
pulumi.set(__self__, "currency", currency)
|
|
51
51
|
if custom_invoice_text and not isinstance(custom_invoice_text, str):
|
|
52
52
|
raise TypeError("Expected argument 'custom_invoice_text' to be a str")
|
|
53
53
|
pulumi.set(__self__, "custom_invoice_text", custom_invoice_text)
|
|
@@ -86,14 +86,6 @@ class GetOrganizationBillingGroupResult:
|
|
|
86
86
|
"""
|
|
87
87
|
return pulumi.get(self, "billing_contact_emails")
|
|
88
88
|
|
|
89
|
-
@property
|
|
90
|
-
@pulumi.getter(name="billingCurrency")
|
|
91
|
-
def billing_currency(self) -> builtins.str:
|
|
92
|
-
"""
|
|
93
|
-
Acceptable currencies for a billing group. The possible values are `AUD`, `CAD`, `CHF`, `DKK`, `EUR`, `GBP`, `JPY`, `NOK`, `NZD`, `SEK`, `SGD` and `USD`.
|
|
94
|
-
"""
|
|
95
|
-
return pulumi.get(self, "billing_currency")
|
|
96
|
-
|
|
97
89
|
@property
|
|
98
90
|
@pulumi.getter(name="billingEmails")
|
|
99
91
|
def billing_emails(self) -> Sequence[builtins.str]:
|
|
@@ -118,6 +110,14 @@ class GetOrganizationBillingGroupResult:
|
|
|
118
110
|
"""
|
|
119
111
|
return pulumi.get(self, "billing_group_name")
|
|
120
112
|
|
|
113
|
+
@property
|
|
114
|
+
@pulumi.getter
|
|
115
|
+
def currency(self) -> builtins.str:
|
|
116
|
+
"""
|
|
117
|
+
Acceptable currencies for a billing group. The possible values are `AUD`, `CAD`, `CHF`, `DKK`, `EUR`, `GBP`, `JPY`, `NOK`, `NZD`, `SEK`, `SGD` and `USD`.
|
|
118
|
+
"""
|
|
119
|
+
return pulumi.get(self, "currency")
|
|
120
|
+
|
|
121
121
|
@property
|
|
122
122
|
@pulumi.getter(name="customInvoiceText")
|
|
123
123
|
def custom_invoice_text(self) -> builtins.str:
|
|
@@ -180,10 +180,10 @@ class AwaitableGetOrganizationBillingGroupResult(GetOrganizationBillingGroupResu
|
|
|
180
180
|
return GetOrganizationBillingGroupResult(
|
|
181
181
|
billing_address_id=self.billing_address_id,
|
|
182
182
|
billing_contact_emails=self.billing_contact_emails,
|
|
183
|
-
billing_currency=self.billing_currency,
|
|
184
183
|
billing_emails=self.billing_emails,
|
|
185
184
|
billing_group_id=self.billing_group_id,
|
|
186
185
|
billing_group_name=self.billing_group_name,
|
|
186
|
+
currency=self.currency,
|
|
187
187
|
custom_invoice_text=self.custom_invoice_text,
|
|
188
188
|
id=self.id,
|
|
189
189
|
organization_id=self.organization_id,
|
|
@@ -217,10 +217,10 @@ def get_organization_billing_group(billing_group_id: Optional[builtins.str] = No
|
|
|
217
217
|
return AwaitableGetOrganizationBillingGroupResult(
|
|
218
218
|
billing_address_id=pulumi.get(__ret__, 'billing_address_id'),
|
|
219
219
|
billing_contact_emails=pulumi.get(__ret__, 'billing_contact_emails'),
|
|
220
|
-
billing_currency=pulumi.get(__ret__, 'billing_currency'),
|
|
221
220
|
billing_emails=pulumi.get(__ret__, 'billing_emails'),
|
|
222
221
|
billing_group_id=pulumi.get(__ret__, 'billing_group_id'),
|
|
223
222
|
billing_group_name=pulumi.get(__ret__, 'billing_group_name'),
|
|
223
|
+
currency=pulumi.get(__ret__, 'currency'),
|
|
224
224
|
custom_invoice_text=pulumi.get(__ret__, 'custom_invoice_text'),
|
|
225
225
|
id=pulumi.get(__ret__, 'id'),
|
|
226
226
|
organization_id=pulumi.get(__ret__, 'organization_id'),
|
|
@@ -251,10 +251,10 @@ def get_organization_billing_group_output(billing_group_id: Optional[pulumi.Inpu
|
|
|
251
251
|
return __ret__.apply(lambda __response__: GetOrganizationBillingGroupResult(
|
|
252
252
|
billing_address_id=pulumi.get(__response__, 'billing_address_id'),
|
|
253
253
|
billing_contact_emails=pulumi.get(__response__, 'billing_contact_emails'),
|
|
254
|
-
billing_currency=pulumi.get(__response__, 'billing_currency'),
|
|
255
254
|
billing_emails=pulumi.get(__response__, 'billing_emails'),
|
|
256
255
|
billing_group_id=pulumi.get(__response__, 'billing_group_id'),
|
|
257
256
|
billing_group_name=pulumi.get(__response__, 'billing_group_name'),
|
|
257
|
+
currency=pulumi.get(__response__, 'currency'),
|
|
258
258
|
custom_invoice_text=pulumi.get(__response__, 'custom_invoice_text'),
|
|
259
259
|
id=pulumi.get(__response__, 'id'),
|
|
260
260
|
organization_id=pulumi.get(__response__, 'organization_id'),
|
pulumi_aiven/get_pg.py
CHANGED
|
@@ -241,7 +241,7 @@ class GetPgResult:
|
|
|
241
241
|
@pulumi.getter(name="projectVpcId")
|
|
242
242
|
def project_vpc_id(self) -> builtins.str:
|
|
243
243
|
"""
|
|
244
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
244
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
245
245
|
"""
|
|
246
246
|
return pulumi.get(self, "project_vpc_id")
|
|
247
247
|
|
pulumi_aiven/get_redis.py
CHANGED
|
@@ -225,7 +225,7 @@ class GetRedisResult:
|
|
|
225
225
|
@pulumi.getter(name="projectVpcId")
|
|
226
226
|
def project_vpc_id(self) -> builtins.str:
|
|
227
227
|
"""
|
|
228
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
228
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
229
229
|
"""
|
|
230
230
|
return pulumi.get(self, "project_vpc_id")
|
|
231
231
|
|
pulumi_aiven/get_thanos.py
CHANGED
|
@@ -225,7 +225,7 @@ class GetThanosResult:
|
|
|
225
225
|
@pulumi.getter(name="projectVpcId")
|
|
226
226
|
def project_vpc_id(self) -> builtins.str:
|
|
227
227
|
"""
|
|
228
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
228
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
229
229
|
"""
|
|
230
230
|
return pulumi.get(self, "project_vpc_id")
|
|
231
231
|
|
pulumi_aiven/get_valkey.py
CHANGED
|
@@ -225,7 +225,7 @@ class GetValkeyResult:
|
|
|
225
225
|
@pulumi.getter(name="projectVpcId")
|
|
226
226
|
def project_vpc_id(self) -> builtins.str:
|
|
227
227
|
"""
|
|
228
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
228
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
229
229
|
"""
|
|
230
230
|
return pulumi.get(self, "project_vpc_id")
|
|
231
231
|
|
|
@@ -22,43 +22,35 @@ __all__ = ['GovernanceAccessArgs', 'GovernanceAccess']
|
|
|
22
22
|
@pulumi.input_type
|
|
23
23
|
class GovernanceAccessArgs:
|
|
24
24
|
def __init__(__self__, *,
|
|
25
|
-
access_data: pulumi.Input['GovernanceAccessAccessDataArgs'],
|
|
26
25
|
access_name: pulumi.Input[builtins.str],
|
|
27
26
|
access_type: pulumi.Input[builtins.str],
|
|
28
27
|
organization_id: pulumi.Input[builtins.str],
|
|
29
|
-
|
|
28
|
+
access_data: Optional[pulumi.Input['GovernanceAccessAccessDataArgs']] = None,
|
|
29
|
+
owner_user_group_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
30
|
+
timeouts: Optional[pulumi.Input['GovernanceAccessTimeoutsArgs']] = None):
|
|
30
31
|
"""
|
|
31
32
|
The set of arguments for constructing a GovernanceAccess resource.
|
|
32
|
-
:param pulumi.Input[
|
|
33
|
-
:param pulumi.Input[builtins.str]
|
|
34
|
-
:param pulumi.Input[builtins.str]
|
|
35
|
-
:param pulumi.Input[
|
|
36
|
-
:param pulumi.Input[builtins.str] owner_user_group_id: The ID of the
|
|
33
|
+
:param pulumi.Input[builtins.str] access_name: Label to describe the access. Changing this property forces recreation of the resource.
|
|
34
|
+
:param pulumi.Input[builtins.str] access_type: An enumeration. The possible value is `KAFKA`. Changing this property forces recreation of the resource.
|
|
35
|
+
:param pulumi.Input[builtins.str] organization_id: ID of an organization. Changing this property forces recreation of the resource.
|
|
36
|
+
:param pulumi.Input['GovernanceAccessAccessDataArgs'] access_data: Required property. access type specific data. Changing this property forces recreation of the resource.
|
|
37
|
+
:param pulumi.Input[builtins.str] owner_user_group_id: The ID of the group that will own the access. Maximum length: `36`. Changing this property forces recreation of the resource.
|
|
37
38
|
"""
|
|
38
|
-
pulumi.set(__self__, "access_data", access_data)
|
|
39
39
|
pulumi.set(__self__, "access_name", access_name)
|
|
40
40
|
pulumi.set(__self__, "access_type", access_type)
|
|
41
41
|
pulumi.set(__self__, "organization_id", organization_id)
|
|
42
|
+
if access_data is not None:
|
|
43
|
+
pulumi.set(__self__, "access_data", access_data)
|
|
42
44
|
if owner_user_group_id is not None:
|
|
43
45
|
pulumi.set(__self__, "owner_user_group_id", owner_user_group_id)
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
@pulumi.getter(name="accessData")
|
|
47
|
-
def access_data(self) -> pulumi.Input['GovernanceAccessAccessDataArgs']:
|
|
48
|
-
"""
|
|
49
|
-
Details of the access. Changing this property forces recreation of the resource.
|
|
50
|
-
"""
|
|
51
|
-
return pulumi.get(self, "access_data")
|
|
52
|
-
|
|
53
|
-
@access_data.setter
|
|
54
|
-
def access_data(self, value: pulumi.Input['GovernanceAccessAccessDataArgs']):
|
|
55
|
-
pulumi.set(self, "access_data", value)
|
|
46
|
+
if timeouts is not None:
|
|
47
|
+
pulumi.set(__self__, "timeouts", timeouts)
|
|
56
48
|
|
|
57
49
|
@property
|
|
58
50
|
@pulumi.getter(name="accessName")
|
|
59
51
|
def access_name(self) -> pulumi.Input[builtins.str]:
|
|
60
52
|
"""
|
|
61
|
-
|
|
53
|
+
Label to describe the access. Changing this property forces recreation of the resource.
|
|
62
54
|
"""
|
|
63
55
|
return pulumi.get(self, "access_name")
|
|
64
56
|
|
|
@@ -70,7 +62,7 @@ class GovernanceAccessArgs:
|
|
|
70
62
|
@pulumi.getter(name="accessType")
|
|
71
63
|
def access_type(self) -> pulumi.Input[builtins.str]:
|
|
72
64
|
"""
|
|
73
|
-
|
|
65
|
+
An enumeration. The possible value is `KAFKA`. Changing this property forces recreation of the resource.
|
|
74
66
|
"""
|
|
75
67
|
return pulumi.get(self, "access_type")
|
|
76
68
|
|
|
@@ -82,7 +74,7 @@ class GovernanceAccessArgs:
|
|
|
82
74
|
@pulumi.getter(name="organizationId")
|
|
83
75
|
def organization_id(self) -> pulumi.Input[builtins.str]:
|
|
84
76
|
"""
|
|
85
|
-
|
|
77
|
+
ID of an organization. Changing this property forces recreation of the resource.
|
|
86
78
|
"""
|
|
87
79
|
return pulumi.get(self, "organization_id")
|
|
88
80
|
|
|
@@ -90,11 +82,23 @@ class GovernanceAccessArgs:
|
|
|
90
82
|
def organization_id(self, value: pulumi.Input[builtins.str]):
|
|
91
83
|
pulumi.set(self, "organization_id", value)
|
|
92
84
|
|
|
85
|
+
@property
|
|
86
|
+
@pulumi.getter(name="accessData")
|
|
87
|
+
def access_data(self) -> Optional[pulumi.Input['GovernanceAccessAccessDataArgs']]:
|
|
88
|
+
"""
|
|
89
|
+
Required property. access type specific data. Changing this property forces recreation of the resource.
|
|
90
|
+
"""
|
|
91
|
+
return pulumi.get(self, "access_data")
|
|
92
|
+
|
|
93
|
+
@access_data.setter
|
|
94
|
+
def access_data(self, value: Optional[pulumi.Input['GovernanceAccessAccessDataArgs']]):
|
|
95
|
+
pulumi.set(self, "access_data", value)
|
|
96
|
+
|
|
93
97
|
@property
|
|
94
98
|
@pulumi.getter(name="ownerUserGroupId")
|
|
95
99
|
def owner_user_group_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
96
100
|
"""
|
|
97
|
-
The ID of the
|
|
101
|
+
The ID of the group that will own the access. Maximum length: `36`. Changing this property forces recreation of the resource.
|
|
98
102
|
"""
|
|
99
103
|
return pulumi.get(self, "owner_user_group_id")
|
|
100
104
|
|
|
@@ -102,6 +106,15 @@ class GovernanceAccessArgs:
|
|
|
102
106
|
def owner_user_group_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
103
107
|
pulumi.set(self, "owner_user_group_id", value)
|
|
104
108
|
|
|
109
|
+
@property
|
|
110
|
+
@pulumi.getter
|
|
111
|
+
def timeouts(self) -> Optional[pulumi.Input['GovernanceAccessTimeoutsArgs']]:
|
|
112
|
+
return pulumi.get(self, "timeouts")
|
|
113
|
+
|
|
114
|
+
@timeouts.setter
|
|
115
|
+
def timeouts(self, value: Optional[pulumi.Input['GovernanceAccessTimeoutsArgs']]):
|
|
116
|
+
pulumi.set(self, "timeouts", value)
|
|
117
|
+
|
|
105
118
|
|
|
106
119
|
@pulumi.input_type
|
|
107
120
|
class _GovernanceAccessState:
|
|
@@ -111,14 +124,15 @@ class _GovernanceAccessState:
|
|
|
111
124
|
access_type: Optional[pulumi.Input[builtins.str]] = None,
|
|
112
125
|
organization_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
113
126
|
owner_user_group_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
114
|
-
susbcription_id: Optional[pulumi.Input[builtins.str]] = None
|
|
127
|
+
susbcription_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
128
|
+
timeouts: Optional[pulumi.Input['GovernanceAccessTimeoutsArgs']] = None):
|
|
115
129
|
"""
|
|
116
130
|
Input properties used for looking up and filtering GovernanceAccess resources.
|
|
117
|
-
:param pulumi.Input['GovernanceAccessAccessDataArgs'] access_data:
|
|
118
|
-
:param pulumi.Input[builtins.str] access_name:
|
|
119
|
-
:param pulumi.Input[builtins.str] access_type:
|
|
120
|
-
:param pulumi.Input[builtins.str] organization_id:
|
|
121
|
-
:param pulumi.Input[builtins.str] owner_user_group_id: The ID of the
|
|
131
|
+
:param pulumi.Input['GovernanceAccessAccessDataArgs'] access_data: Required property. access type specific data. Changing this property forces recreation of the resource.
|
|
132
|
+
:param pulumi.Input[builtins.str] access_name: Label to describe the access. Changing this property forces recreation of the resource.
|
|
133
|
+
:param pulumi.Input[builtins.str] access_type: An enumeration. The possible value is `KAFKA`. Changing this property forces recreation of the resource.
|
|
134
|
+
:param pulumi.Input[builtins.str] organization_id: ID of an organization. Changing this property forces recreation of the resource.
|
|
135
|
+
:param pulumi.Input[builtins.str] owner_user_group_id: The ID of the group that will own the access. Maximum length: `36`. Changing this property forces recreation of the resource.
|
|
122
136
|
:param pulumi.Input[builtins.str] susbcription_id: The ID of the access.
|
|
123
137
|
"""
|
|
124
138
|
if access_data is not None:
|
|
@@ -133,12 +147,14 @@ class _GovernanceAccessState:
|
|
|
133
147
|
pulumi.set(__self__, "owner_user_group_id", owner_user_group_id)
|
|
134
148
|
if susbcription_id is not None:
|
|
135
149
|
pulumi.set(__self__, "susbcription_id", susbcription_id)
|
|
150
|
+
if timeouts is not None:
|
|
151
|
+
pulumi.set(__self__, "timeouts", timeouts)
|
|
136
152
|
|
|
137
153
|
@property
|
|
138
154
|
@pulumi.getter(name="accessData")
|
|
139
155
|
def access_data(self) -> Optional[pulumi.Input['GovernanceAccessAccessDataArgs']]:
|
|
140
156
|
"""
|
|
141
|
-
|
|
157
|
+
Required property. access type specific data. Changing this property forces recreation of the resource.
|
|
142
158
|
"""
|
|
143
159
|
return pulumi.get(self, "access_data")
|
|
144
160
|
|
|
@@ -150,7 +166,7 @@ class _GovernanceAccessState:
|
|
|
150
166
|
@pulumi.getter(name="accessName")
|
|
151
167
|
def access_name(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
152
168
|
"""
|
|
153
|
-
|
|
169
|
+
Label to describe the access. Changing this property forces recreation of the resource.
|
|
154
170
|
"""
|
|
155
171
|
return pulumi.get(self, "access_name")
|
|
156
172
|
|
|
@@ -162,7 +178,7 @@ class _GovernanceAccessState:
|
|
|
162
178
|
@pulumi.getter(name="accessType")
|
|
163
179
|
def access_type(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
164
180
|
"""
|
|
165
|
-
|
|
181
|
+
An enumeration. The possible value is `KAFKA`. Changing this property forces recreation of the resource.
|
|
166
182
|
"""
|
|
167
183
|
return pulumi.get(self, "access_type")
|
|
168
184
|
|
|
@@ -174,7 +190,7 @@ class _GovernanceAccessState:
|
|
|
174
190
|
@pulumi.getter(name="organizationId")
|
|
175
191
|
def organization_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
176
192
|
"""
|
|
177
|
-
|
|
193
|
+
ID of an organization. Changing this property forces recreation of the resource.
|
|
178
194
|
"""
|
|
179
195
|
return pulumi.get(self, "organization_id")
|
|
180
196
|
|
|
@@ -186,7 +202,7 @@ class _GovernanceAccessState:
|
|
|
186
202
|
@pulumi.getter(name="ownerUserGroupId")
|
|
187
203
|
def owner_user_group_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
188
204
|
"""
|
|
189
|
-
The ID of the
|
|
205
|
+
The ID of the group that will own the access. Maximum length: `36`. Changing this property forces recreation of the resource.
|
|
190
206
|
"""
|
|
191
207
|
return pulumi.get(self, "owner_user_group_id")
|
|
192
208
|
|
|
@@ -206,6 +222,15 @@ class _GovernanceAccessState:
|
|
|
206
222
|
def susbcription_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
207
223
|
pulumi.set(self, "susbcription_id", value)
|
|
208
224
|
|
|
225
|
+
@property
|
|
226
|
+
@pulumi.getter
|
|
227
|
+
def timeouts(self) -> Optional[pulumi.Input['GovernanceAccessTimeoutsArgs']]:
|
|
228
|
+
return pulumi.get(self, "timeouts")
|
|
229
|
+
|
|
230
|
+
@timeouts.setter
|
|
231
|
+
def timeouts(self, value: Optional[pulumi.Input['GovernanceAccessTimeoutsArgs']]):
|
|
232
|
+
pulumi.set(self, "timeouts", value)
|
|
233
|
+
|
|
209
234
|
|
|
210
235
|
@pulumi.type_token("aiven:index/governanceAccess:GovernanceAccess")
|
|
211
236
|
class GovernanceAccess(pulumi.CustomResource):
|
|
@@ -218,6 +243,7 @@ class GovernanceAccess(pulumi.CustomResource):
|
|
|
218
243
|
access_type: Optional[pulumi.Input[builtins.str]] = None,
|
|
219
244
|
organization_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
220
245
|
owner_user_group_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
246
|
+
timeouts: Optional[pulumi.Input[Union['GovernanceAccessTimeoutsArgs', 'GovernanceAccessTimeoutsArgsDict']]] = None,
|
|
221
247
|
__props__=None):
|
|
222
248
|
"""
|
|
223
249
|
## Example Usage
|
|
@@ -246,11 +272,11 @@ class GovernanceAccess(pulumi.CustomResource):
|
|
|
246
272
|
|
|
247
273
|
:param str resource_name: The name of the resource.
|
|
248
274
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
249
|
-
:param pulumi.Input[Union['GovernanceAccessAccessDataArgs', 'GovernanceAccessAccessDataArgsDict']] access_data:
|
|
250
|
-
:param pulumi.Input[builtins.str] access_name:
|
|
251
|
-
:param pulumi.Input[builtins.str] access_type:
|
|
252
|
-
:param pulumi.Input[builtins.str] organization_id:
|
|
253
|
-
:param pulumi.Input[builtins.str] owner_user_group_id: The ID of the
|
|
275
|
+
:param pulumi.Input[Union['GovernanceAccessAccessDataArgs', 'GovernanceAccessAccessDataArgsDict']] access_data: Required property. access type specific data. Changing this property forces recreation of the resource.
|
|
276
|
+
:param pulumi.Input[builtins.str] access_name: Label to describe the access. Changing this property forces recreation of the resource.
|
|
277
|
+
:param pulumi.Input[builtins.str] access_type: An enumeration. The possible value is `KAFKA`. Changing this property forces recreation of the resource.
|
|
278
|
+
:param pulumi.Input[builtins.str] organization_id: ID of an organization. Changing this property forces recreation of the resource.
|
|
279
|
+
:param pulumi.Input[builtins.str] owner_user_group_id: The ID of the group that will own the access. Maximum length: `36`. Changing this property forces recreation of the resource.
|
|
254
280
|
"""
|
|
255
281
|
...
|
|
256
282
|
@overload
|
|
@@ -303,6 +329,7 @@ class GovernanceAccess(pulumi.CustomResource):
|
|
|
303
329
|
access_type: Optional[pulumi.Input[builtins.str]] = None,
|
|
304
330
|
organization_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
305
331
|
owner_user_group_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
332
|
+
timeouts: Optional[pulumi.Input[Union['GovernanceAccessTimeoutsArgs', 'GovernanceAccessTimeoutsArgsDict']]] = None,
|
|
306
333
|
__props__=None):
|
|
307
334
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
308
335
|
if not isinstance(opts, pulumi.ResourceOptions):
|
|
@@ -312,8 +339,6 @@ class GovernanceAccess(pulumi.CustomResource):
|
|
|
312
339
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
313
340
|
__props__ = GovernanceAccessArgs.__new__(GovernanceAccessArgs)
|
|
314
341
|
|
|
315
|
-
if access_data is None and not opts.urn:
|
|
316
|
-
raise TypeError("Missing required property 'access_data'")
|
|
317
342
|
__props__.__dict__["access_data"] = access_data
|
|
318
343
|
if access_name is None and not opts.urn:
|
|
319
344
|
raise TypeError("Missing required property 'access_name'")
|
|
@@ -325,6 +350,7 @@ class GovernanceAccess(pulumi.CustomResource):
|
|
|
325
350
|
raise TypeError("Missing required property 'organization_id'")
|
|
326
351
|
__props__.__dict__["organization_id"] = organization_id
|
|
327
352
|
__props__.__dict__["owner_user_group_id"] = owner_user_group_id
|
|
353
|
+
__props__.__dict__["timeouts"] = timeouts
|
|
328
354
|
__props__.__dict__["susbcription_id"] = None
|
|
329
355
|
super(GovernanceAccess, __self__).__init__(
|
|
330
356
|
'aiven:index/governanceAccess:GovernanceAccess',
|
|
@@ -341,7 +367,8 @@ class GovernanceAccess(pulumi.CustomResource):
|
|
|
341
367
|
access_type: Optional[pulumi.Input[builtins.str]] = None,
|
|
342
368
|
organization_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
343
369
|
owner_user_group_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
344
|
-
susbcription_id: Optional[pulumi.Input[builtins.str]] = None
|
|
370
|
+
susbcription_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
371
|
+
timeouts: Optional[pulumi.Input[Union['GovernanceAccessTimeoutsArgs', 'GovernanceAccessTimeoutsArgsDict']]] = None) -> 'GovernanceAccess':
|
|
345
372
|
"""
|
|
346
373
|
Get an existing GovernanceAccess resource's state with the given name, id, and optional extra
|
|
347
374
|
properties used to qualify the lookup.
|
|
@@ -349,11 +376,11 @@ class GovernanceAccess(pulumi.CustomResource):
|
|
|
349
376
|
:param str resource_name: The unique name of the resulting resource.
|
|
350
377
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
351
378
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
352
|
-
:param pulumi.Input[Union['GovernanceAccessAccessDataArgs', 'GovernanceAccessAccessDataArgsDict']] access_data:
|
|
353
|
-
:param pulumi.Input[builtins.str] access_name:
|
|
354
|
-
:param pulumi.Input[builtins.str] access_type:
|
|
355
|
-
:param pulumi.Input[builtins.str] organization_id:
|
|
356
|
-
:param pulumi.Input[builtins.str] owner_user_group_id: The ID of the
|
|
379
|
+
:param pulumi.Input[Union['GovernanceAccessAccessDataArgs', 'GovernanceAccessAccessDataArgsDict']] access_data: Required property. access type specific data. Changing this property forces recreation of the resource.
|
|
380
|
+
:param pulumi.Input[builtins.str] access_name: Label to describe the access. Changing this property forces recreation of the resource.
|
|
381
|
+
:param pulumi.Input[builtins.str] access_type: An enumeration. The possible value is `KAFKA`. Changing this property forces recreation of the resource.
|
|
382
|
+
:param pulumi.Input[builtins.str] organization_id: ID of an organization. Changing this property forces recreation of the resource.
|
|
383
|
+
:param pulumi.Input[builtins.str] owner_user_group_id: The ID of the group that will own the access. Maximum length: `36`. Changing this property forces recreation of the resource.
|
|
357
384
|
:param pulumi.Input[builtins.str] susbcription_id: The ID of the access.
|
|
358
385
|
"""
|
|
359
386
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
@@ -366,13 +393,14 @@ class GovernanceAccess(pulumi.CustomResource):
|
|
|
366
393
|
__props__.__dict__["organization_id"] = organization_id
|
|
367
394
|
__props__.__dict__["owner_user_group_id"] = owner_user_group_id
|
|
368
395
|
__props__.__dict__["susbcription_id"] = susbcription_id
|
|
396
|
+
__props__.__dict__["timeouts"] = timeouts
|
|
369
397
|
return GovernanceAccess(resource_name, opts=opts, __props__=__props__)
|
|
370
398
|
|
|
371
399
|
@property
|
|
372
400
|
@pulumi.getter(name="accessData")
|
|
373
|
-
def access_data(self) -> pulumi.Output['outputs.GovernanceAccessAccessData']:
|
|
401
|
+
def access_data(self) -> pulumi.Output[Optional['outputs.GovernanceAccessAccessData']]:
|
|
374
402
|
"""
|
|
375
|
-
|
|
403
|
+
Required property. access type specific data. Changing this property forces recreation of the resource.
|
|
376
404
|
"""
|
|
377
405
|
return pulumi.get(self, "access_data")
|
|
378
406
|
|
|
@@ -380,7 +408,7 @@ class GovernanceAccess(pulumi.CustomResource):
|
|
|
380
408
|
@pulumi.getter(name="accessName")
|
|
381
409
|
def access_name(self) -> pulumi.Output[builtins.str]:
|
|
382
410
|
"""
|
|
383
|
-
|
|
411
|
+
Label to describe the access. Changing this property forces recreation of the resource.
|
|
384
412
|
"""
|
|
385
413
|
return pulumi.get(self, "access_name")
|
|
386
414
|
|
|
@@ -388,7 +416,7 @@ class GovernanceAccess(pulumi.CustomResource):
|
|
|
388
416
|
@pulumi.getter(name="accessType")
|
|
389
417
|
def access_type(self) -> pulumi.Output[builtins.str]:
|
|
390
418
|
"""
|
|
391
|
-
|
|
419
|
+
An enumeration. The possible value is `KAFKA`. Changing this property forces recreation of the resource.
|
|
392
420
|
"""
|
|
393
421
|
return pulumi.get(self, "access_type")
|
|
394
422
|
|
|
@@ -396,7 +424,7 @@ class GovernanceAccess(pulumi.CustomResource):
|
|
|
396
424
|
@pulumi.getter(name="organizationId")
|
|
397
425
|
def organization_id(self) -> pulumi.Output[builtins.str]:
|
|
398
426
|
"""
|
|
399
|
-
|
|
427
|
+
ID of an organization. Changing this property forces recreation of the resource.
|
|
400
428
|
"""
|
|
401
429
|
return pulumi.get(self, "organization_id")
|
|
402
430
|
|
|
@@ -404,7 +432,7 @@ class GovernanceAccess(pulumi.CustomResource):
|
|
|
404
432
|
@pulumi.getter(name="ownerUserGroupId")
|
|
405
433
|
def owner_user_group_id(self) -> pulumi.Output[Optional[builtins.str]]:
|
|
406
434
|
"""
|
|
407
|
-
The ID of the
|
|
435
|
+
The ID of the group that will own the access. Maximum length: `36`. Changing this property forces recreation of the resource.
|
|
408
436
|
"""
|
|
409
437
|
return pulumi.get(self, "owner_user_group_id")
|
|
410
438
|
|
|
@@ -416,3 +444,8 @@ class GovernanceAccess(pulumi.CustomResource):
|
|
|
416
444
|
"""
|
|
417
445
|
return pulumi.get(self, "susbcription_id")
|
|
418
446
|
|
|
447
|
+
@property
|
|
448
|
+
@pulumi.getter
|
|
449
|
+
def timeouts(self) -> pulumi.Output[Optional['outputs.GovernanceAccessTimeouts']]:
|
|
450
|
+
return pulumi.get(self, "timeouts")
|
|
451
|
+
|