pulumi-aiven 6.39.0a1748900807__py3-none-any.whl → 6.39.0a1748922820__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.

@@ -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
- owner_user_group_id: Optional[pulumi.Input[builtins.str]] = None):
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['GovernanceAccessAccessDataArgs'] access_data: Details of the access. Changing this property forces recreation of the resource.
33
- :param pulumi.Input[builtins.str] access_name: The name to describe the access. Maximum length: `54`. Changing this property forces recreation of the resource.
34
- :param pulumi.Input[builtins.str] access_type: The type of access. The possible value is `KAFKA`. Changing this property forces recreation of the resource.
35
- :param pulumi.Input[builtins.str] organization_id: The ID of the organization. Changing this property forces recreation of the resource.
36
- :param pulumi.Input[builtins.str] owner_user_group_id: The ID of the user group that owns the access. Maximum length: `54`. Changing this property forces recreation of the resource.
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
- @property
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
- The name to describe the access. Maximum length: `54`. Changing this property forces recreation of the resource.
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
- The type of access. The possible value is `KAFKA`. Changing this property forces recreation of the resource.
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
- The ID of the organization. Changing this property forces recreation of the resource.
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 user group that owns the access. Maximum length: `54`. Changing this property forces recreation of the resource.
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: Details of the access. Changing this property forces recreation of the resource.
118
- :param pulumi.Input[builtins.str] access_name: The name to describe the access. Maximum length: `54`. Changing this property forces recreation of the resource.
119
- :param pulumi.Input[builtins.str] access_type: The type of access. The possible value is `KAFKA`. Changing this property forces recreation of the resource.
120
- :param pulumi.Input[builtins.str] organization_id: The ID of the organization. Changing this property forces recreation of the resource.
121
- :param pulumi.Input[builtins.str] owner_user_group_id: The ID of the user group that owns the access. Maximum length: `54`. Changing this property forces recreation of the resource.
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
- Details of the access. Changing this property forces recreation of the resource.
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
- The name to describe the access. Maximum length: `54`. Changing this property forces recreation of the resource.
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
- The type of access. The possible value is `KAFKA`. Changing this property forces recreation of the resource.
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
- The ID of the organization. Changing this property forces recreation of the resource.
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 user group that owns the access. Maximum length: `54`. Changing this property forces recreation of the resource.
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: Details of the access. Changing this property forces recreation of the resource.
250
- :param pulumi.Input[builtins.str] access_name: The name to describe the access. Maximum length: `54`. Changing this property forces recreation of the resource.
251
- :param pulumi.Input[builtins.str] access_type: The type of access. The possible value is `KAFKA`. Changing this property forces recreation of the resource.
252
- :param pulumi.Input[builtins.str] organization_id: The ID of the organization. Changing this property forces recreation of the resource.
253
- :param pulumi.Input[builtins.str] owner_user_group_id: The ID of the user group that owns the access. Maximum length: `54`. Changing this property forces recreation of the resource.
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) -> 'GovernanceAccess':
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: Details of the access. Changing this property forces recreation of the resource.
353
- :param pulumi.Input[builtins.str] access_name: The name to describe the access. Maximum length: `54`. Changing this property forces recreation of the resource.
354
- :param pulumi.Input[builtins.str] access_type: The type of access. The possible value is `KAFKA`. Changing this property forces recreation of the resource.
355
- :param pulumi.Input[builtins.str] organization_id: The ID of the organization. Changing this property forces recreation of the resource.
356
- :param pulumi.Input[builtins.str] owner_user_group_id: The ID of the user group that owns the access. Maximum length: `54`. Changing this property forces recreation of the resource.
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
- Details of the access. Changing this property forces recreation of the resource.
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
- The name to describe the access. Maximum length: `54`. Changing this property forces recreation of the resource.
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
- The type of access. The possible value is `KAFKA`. Changing this property forces recreation of the resource.
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
- The ID of the organization. Changing this property forces recreation of the resource.
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 user group that owns the access. Maximum length: `54`. Changing this property forces recreation of the resource.
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
+
@@ -171,15 +171,6 @@ class OrganizationPermission(pulumi.CustomResource):
171
171
  resource_type: Optional[pulumi.Input[builtins.str]] = None,
172
172
  __props__=None):
173
173
  """
174
- Grants [roles and permissions](https://aiven.io/docs/platform/concepts/permissions)
175
- to a principal for a resource. Permissions can be granted at the organization, organizational unit, and project level.
176
- Unit-level permissions aren't shown in the Aiven Console.
177
-
178
- To assign permissions to multiple users and groups on the same combination of organization ID, resource ID and resource type, don't use multiple `OrganizationPermission` resources.
179
- Instead, use multiple permission blocks as in the example usage.
180
-
181
- **Do not use the `ProjectUser` or `OrganizationGroupProject` resources with this resource**.
182
-
183
174
  ## Example Usage
184
175
 
185
176
  ```python
@@ -256,15 +247,6 @@ class OrganizationPermission(pulumi.CustomResource):
256
247
  args: OrganizationPermissionArgs,
257
248
  opts: Optional[pulumi.ResourceOptions] = None):
258
249
  """
259
- Grants [roles and permissions](https://aiven.io/docs/platform/concepts/permissions)
260
- to a principal for a resource. Permissions can be granted at the organization, organizational unit, and project level.
261
- Unit-level permissions aren't shown in the Aiven Console.
262
-
263
- To assign permissions to multiple users and groups on the same combination of organization ID, resource ID and resource type, don't use multiple `OrganizationPermission` resources.
264
- Instead, use multiple permission blocks as in the example usage.
265
-
266
- **Do not use the `ProjectUser` or `OrganizationGroupProject` resources with this resource**.
267
-
268
250
  ## Example Usage
269
251
 
270
252
  ```python