pulumi-aiven 6.38.0a1747372094__py3-none-any.whl → 6.39.0a1747890420__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.39.0a1747890420.dist-info}/METADATA +1 -1
  29. {pulumi_aiven-6.38.0a1747372094.dist-info → pulumi_aiven-6.39.0a1747890420.dist-info}/RECORD +31 -30
  30. {pulumi_aiven-6.38.0a1747372094.dist-info → pulumi_aiven-6.39.0a1747890420.dist-info}/WHEEL +1 -1
  31. {pulumi_aiven-6.38.0a1747372094.dist-info → pulumi_aiven-6.39.0a1747890420.dist-info}/top_level.txt +0 -0
@@ -81,7 +81,7 @@ class _OpensearchSecurityPluginConfigState:
81
81
  service_name: Optional[pulumi.Input[builtins.str]] = None):
82
82
  """
83
83
  Input properties used for looking up and filtering OpensearchSecurityPluginConfig resources.
84
- :param pulumi.Input[builtins.bool] admin_enabled: Whether the os-sec-admin user is enabled. This indicates whether the user management with the security plugin is enabled. This is always true when the os-sec-admin password was set at least once.
84
+ :param pulumi.Input[builtins.bool] admin_enabled: Whether the os-sec-admin user is enabled. This indicates whether OpenSearch Security management is enabled. This is always true when the os-sec-admin password was set at least once.
85
85
  :param pulumi.Input[builtins.str] admin_password: The password for the os-sec-admin user.
86
86
  :param pulumi.Input[builtins.bool] available: Whether the security plugin is available. This is always true for recently created services.
87
87
  :param pulumi.Input[builtins.bool] enabled: Whether the security plugin is enabled. This is always true for recently created services.
@@ -105,7 +105,7 @@ class _OpensearchSecurityPluginConfigState:
105
105
  @pulumi.getter(name="adminEnabled")
106
106
  def admin_enabled(self) -> Optional[pulumi.Input[builtins.bool]]:
107
107
  """
108
- Whether the os-sec-admin user is enabled. This indicates whether the user management with the security plugin is enabled. This is always true when the os-sec-admin password was set at least once.
108
+ Whether the os-sec-admin user is enabled. This indicates whether OpenSearch Security management is enabled. This is always true when the os-sec-admin password was set at least once.
109
109
  """
110
110
  return pulumi.get(self, "admin_enabled")
111
111
 
@@ -185,36 +185,22 @@ class OpensearchSecurityPluginConfig(pulumi.CustomResource):
185
185
  service_name: Optional[pulumi.Input[builtins.str]] = None,
186
186
  __props__=None):
187
187
  """
188
- The OpenSearch Security Plugin Config resource allows the creation and management of AivenOpenSearch Security Plugin config.
189
-
190
188
  ## Example Usage
191
189
 
192
190
  ```python
193
191
  import pulumi
194
192
  import pulumi_aiven as aiven
195
193
 
196
- foo = aiven.get_project(project="example_project")
197
- bar = aiven.OpenSearch("bar",
198
- project=foo.project,
199
- cloud_name="google-europe-west1",
200
- plan="startup-4",
201
- service_name="example_service_name",
202
- maintenance_window_dow="monday",
203
- maintenance_window_time="10:00:00")
204
- foo_opensearch_user = aiven.OpensearchUser("foo",
205
- service_name=bar.service_name,
206
- project=foo.project,
207
- username="user-example")
208
- foo_opensearch_security_plugin_config = aiven.OpensearchSecurityPluginConfig("foo",
209
- project=foo.project,
210
- service_name=bar.service_name,
211
- admin_password="ThisIsATest123^=^")
194
+ main = aiven.OpensearchSecurityPluginConfig("main",
195
+ project=example_project["project"],
196
+ service_name=example_opensearch["serviceName"],
197
+ admin_password=opensearch_security_admin_password)
212
198
  ```
213
199
 
214
200
  ## Import
215
201
 
216
202
  ```sh
217
- $ pulumi import aiven:index/opensearchSecurityPluginConfig:OpensearchSecurityPluginConfig foo PROJECT/SERVICE_NAME
203
+ $ pulumi import aiven:index/opensearchSecurityPluginConfig:OpensearchSecurityPluginConfig main PROJECT/SERVICE_NAME
218
204
  ```
219
205
 
220
206
  :param str resource_name: The name of the resource.
@@ -230,36 +216,22 @@ class OpensearchSecurityPluginConfig(pulumi.CustomResource):
230
216
  args: OpensearchSecurityPluginConfigArgs,
231
217
  opts: Optional[pulumi.ResourceOptions] = None):
232
218
  """
233
- The OpenSearch Security Plugin Config resource allows the creation and management of AivenOpenSearch Security Plugin config.
234
-
235
219
  ## Example Usage
236
220
 
237
221
  ```python
238
222
  import pulumi
239
223
  import pulumi_aiven as aiven
240
224
 
241
- foo = aiven.get_project(project="example_project")
242
- bar = aiven.OpenSearch("bar",
243
- project=foo.project,
244
- cloud_name="google-europe-west1",
245
- plan="startup-4",
246
- service_name="example_service_name",
247
- maintenance_window_dow="monday",
248
- maintenance_window_time="10:00:00")
249
- foo_opensearch_user = aiven.OpensearchUser("foo",
250
- service_name=bar.service_name,
251
- project=foo.project,
252
- username="user-example")
253
- foo_opensearch_security_plugin_config = aiven.OpensearchSecurityPluginConfig("foo",
254
- project=foo.project,
255
- service_name=bar.service_name,
256
- admin_password="ThisIsATest123^=^")
225
+ main = aiven.OpensearchSecurityPluginConfig("main",
226
+ project=example_project["project"],
227
+ service_name=example_opensearch["serviceName"],
228
+ admin_password=opensearch_security_admin_password)
257
229
  ```
258
230
 
259
231
  ## Import
260
232
 
261
233
  ```sh
262
- $ pulumi import aiven:index/opensearchSecurityPluginConfig:OpensearchSecurityPluginConfig foo PROJECT/SERVICE_NAME
234
+ $ pulumi import aiven:index/opensearchSecurityPluginConfig:OpensearchSecurityPluginConfig main PROJECT/SERVICE_NAME
263
235
  ```
264
236
 
265
237
  :param str resource_name: The name of the resource.
@@ -326,7 +298,7 @@ class OpensearchSecurityPluginConfig(pulumi.CustomResource):
326
298
  :param str resource_name: The unique name of the resulting resource.
327
299
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
328
300
  :param pulumi.ResourceOptions opts: Options for the resource.
329
- :param pulumi.Input[builtins.bool] admin_enabled: Whether the os-sec-admin user is enabled. This indicates whether the user management with the security plugin is enabled. This is always true when the os-sec-admin password was set at least once.
301
+ :param pulumi.Input[builtins.bool] admin_enabled: Whether the os-sec-admin user is enabled. This indicates whether OpenSearch Security management is enabled. This is always true when the os-sec-admin password was set at least once.
330
302
  :param pulumi.Input[builtins.str] admin_password: The password for the os-sec-admin user.
331
303
  :param pulumi.Input[builtins.bool] available: Whether the security plugin is available. This is always true for recently created services.
332
304
  :param pulumi.Input[builtins.bool] enabled: Whether the security plugin is enabled. This is always true for recently created services.
@@ -349,7 +321,7 @@ class OpensearchSecurityPluginConfig(pulumi.CustomResource):
349
321
  @pulumi.getter(name="adminEnabled")
350
322
  def admin_enabled(self) -> pulumi.Output[builtins.bool]:
351
323
  """
352
- Whether the os-sec-admin user is enabled. This indicates whether the user management with the security plugin is enabled. This is always true when the os-sec-admin password was set at least once.
324
+ Whether the os-sec-admin user is enabled. This indicates whether OpenSearch Security management is enabled. This is always true when the os-sec-admin password was set at least once.
353
325
  """
354
326
  return pulumi.get(self, "admin_enabled")
355
327
 
@@ -28,8 +28,8 @@ class OpensearchUserArgs:
28
28
  The set of arguments for constructing a OpensearchUser resource.
29
29
  :param pulumi.Input[builtins.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.
30
30
  :param pulumi.Input[builtins.str] service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
31
- :param pulumi.Input[builtins.str] username: The actual name of the OpenSearch User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
32
- :param pulumi.Input[builtins.str] password: The password of the OpenSearch User.
31
+ :param pulumi.Input[builtins.str] username: Name of the OpenSearch service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
32
+ :param pulumi.Input[builtins.str] password: The OpenSearch service user's password.
33
33
  """
34
34
  pulumi.set(__self__, "project", project)
35
35
  pulumi.set(__self__, "service_name", service_name)
@@ -65,7 +65,7 @@ class OpensearchUserArgs:
65
65
  @pulumi.getter
66
66
  def username(self) -> pulumi.Input[builtins.str]:
67
67
  """
68
- The actual name of the OpenSearch User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
68
+ Name of the OpenSearch service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
69
69
  """
70
70
  return pulumi.get(self, "username")
71
71
 
@@ -77,7 +77,7 @@ class OpensearchUserArgs:
77
77
  @pulumi.getter
78
78
  def password(self) -> Optional[pulumi.Input[builtins.str]]:
79
79
  """
80
- The password of the OpenSearch User.
80
+ The OpenSearch service user's password.
81
81
  """
82
82
  return pulumi.get(self, "password")
83
83
 
@@ -96,11 +96,11 @@ class _OpensearchUserState:
96
96
  username: Optional[pulumi.Input[builtins.str]] = None):
97
97
  """
98
98
  Input properties used for looking up and filtering OpensearchUser resources.
99
- :param pulumi.Input[builtins.str] password: The password of the OpenSearch User.
99
+ :param pulumi.Input[builtins.str] password: The OpenSearch service user's password.
100
100
  :param pulumi.Input[builtins.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.
101
101
  :param pulumi.Input[builtins.str] service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
102
- :param pulumi.Input[builtins.str] type: Type of the user account. Tells whether the user is the primary account or a regular account.
103
- :param pulumi.Input[builtins.str] username: The actual name of the OpenSearch User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
102
+ :param pulumi.Input[builtins.str] type: User account type, such as primary or regular account.
103
+ :param pulumi.Input[builtins.str] username: Name of the OpenSearch service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
104
104
  """
105
105
  if password is not None:
106
106
  pulumi.set(__self__, "password", password)
@@ -117,7 +117,7 @@ class _OpensearchUserState:
117
117
  @pulumi.getter
118
118
  def password(self) -> Optional[pulumi.Input[builtins.str]]:
119
119
  """
120
- The password of the OpenSearch User.
120
+ The OpenSearch service user's password.
121
121
  """
122
122
  return pulumi.get(self, "password")
123
123
 
@@ -153,7 +153,7 @@ class _OpensearchUserState:
153
153
  @pulumi.getter
154
154
  def type(self) -> Optional[pulumi.Input[builtins.str]]:
155
155
  """
156
- Type of the user account. Tells whether the user is the primary account or a regular account.
156
+ User account type, such as primary or regular account.
157
157
  """
158
158
  return pulumi.get(self, "type")
159
159
 
@@ -165,7 +165,7 @@ class _OpensearchUserState:
165
165
  @pulumi.getter
166
166
  def username(self) -> Optional[pulumi.Input[builtins.str]]:
167
167
  """
168
- The actual name of the OpenSearch User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
168
+ Name of the OpenSearch service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
169
169
  """
170
170
  return pulumi.get(self, "username")
171
171
 
@@ -186,7 +186,7 @@ class OpensearchUser(pulumi.CustomResource):
186
186
  username: Optional[pulumi.Input[builtins.str]] = None,
187
187
  __props__=None):
188
188
  """
189
- The OpenSearch User resource allows the creation and management of Aiven OpenSearch Users.
189
+ Creates and manages an Aiven for OpenSearch® service user.
190
190
 
191
191
  ## Example Usage
192
192
 
@@ -194,25 +194,25 @@ class OpensearchUser(pulumi.CustomResource):
194
194
  import pulumi
195
195
  import pulumi_aiven as aiven
196
196
 
197
- foo = aiven.OpensearchUser("foo",
198
- service_name=bar["serviceName"],
199
- project="my-project",
200
- username="user-1",
201
- password="Test$1234")
197
+ example_opensearch_user = aiven.OpensearchUser("example_opensearch_user",
198
+ service_name=example_opensearch["serviceName"],
199
+ project=example_project["project"],
200
+ username="example-opensearch-user",
201
+ password=opensearch_user_password)
202
202
  ```
203
203
 
204
204
  ## Import
205
205
 
206
206
  ```sh
207
- $ pulumi import aiven:index/opensearchUser:OpensearchUser foo PROJECT/SERVICE_NAME/USERNAME
207
+ $ pulumi import aiven:index/opensearchUser:OpensearchUser example_opensearch_user PROJECT/SERVICE_NAME/USERNAME
208
208
  ```
209
209
 
210
210
  :param str resource_name: The name of the resource.
211
211
  :param pulumi.ResourceOptions opts: Options for the resource.
212
- :param pulumi.Input[builtins.str] password: The password of the OpenSearch User.
212
+ :param pulumi.Input[builtins.str] password: The OpenSearch service user's password.
213
213
  :param pulumi.Input[builtins.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.
214
214
  :param pulumi.Input[builtins.str] service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
215
- :param pulumi.Input[builtins.str] username: The actual name of the OpenSearch User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
215
+ :param pulumi.Input[builtins.str] username: Name of the OpenSearch service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
216
216
  """
217
217
  ...
218
218
  @overload
@@ -221,7 +221,7 @@ class OpensearchUser(pulumi.CustomResource):
221
221
  args: OpensearchUserArgs,
222
222
  opts: Optional[pulumi.ResourceOptions] = None):
223
223
  """
224
- The OpenSearch User resource allows the creation and management of Aiven OpenSearch Users.
224
+ Creates and manages an Aiven for OpenSearch® service user.
225
225
 
226
226
  ## Example Usage
227
227
 
@@ -229,17 +229,17 @@ class OpensearchUser(pulumi.CustomResource):
229
229
  import pulumi
230
230
  import pulumi_aiven as aiven
231
231
 
232
- foo = aiven.OpensearchUser("foo",
233
- service_name=bar["serviceName"],
234
- project="my-project",
235
- username="user-1",
236
- password="Test$1234")
232
+ example_opensearch_user = aiven.OpensearchUser("example_opensearch_user",
233
+ service_name=example_opensearch["serviceName"],
234
+ project=example_project["project"],
235
+ username="example-opensearch-user",
236
+ password=opensearch_user_password)
237
237
  ```
238
238
 
239
239
  ## Import
240
240
 
241
241
  ```sh
242
- $ pulumi import aiven:index/opensearchUser:OpensearchUser foo PROJECT/SERVICE_NAME/USERNAME
242
+ $ pulumi import aiven:index/opensearchUser:OpensearchUser example_opensearch_user PROJECT/SERVICE_NAME/USERNAME
243
243
  ```
244
244
 
245
245
  :param str resource_name: The name of the resource.
@@ -305,11 +305,11 @@ class OpensearchUser(pulumi.CustomResource):
305
305
  :param str resource_name: The unique name of the resulting resource.
306
306
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
307
307
  :param pulumi.ResourceOptions opts: Options for the resource.
308
- :param pulumi.Input[builtins.str] password: The password of the OpenSearch User.
308
+ :param pulumi.Input[builtins.str] password: The OpenSearch service user's password.
309
309
  :param pulumi.Input[builtins.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.
310
310
  :param pulumi.Input[builtins.str] service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
311
- :param pulumi.Input[builtins.str] type: Type of the user account. Tells whether the user is the primary account or a regular account.
312
- :param pulumi.Input[builtins.str] username: The actual name of the OpenSearch User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
311
+ :param pulumi.Input[builtins.str] type: User account type, such as primary or regular account.
312
+ :param pulumi.Input[builtins.str] username: Name of the OpenSearch service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
313
313
  """
314
314
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
315
315
 
@@ -326,7 +326,7 @@ class OpensearchUser(pulumi.CustomResource):
326
326
  @pulumi.getter
327
327
  def password(self) -> pulumi.Output[builtins.str]:
328
328
  """
329
- The password of the OpenSearch User.
329
+ The OpenSearch service user's password.
330
330
  """
331
331
  return pulumi.get(self, "password")
332
332
 
@@ -350,7 +350,7 @@ class OpensearchUser(pulumi.CustomResource):
350
350
  @pulumi.getter
351
351
  def type(self) -> pulumi.Output[builtins.str]:
352
352
  """
353
- Type of the user account. Tells whether the user is the primary account or a regular account.
353
+ User account type, such as primary or regular account.
354
354
  """
355
355
  return pulumi.get(self, "type")
356
356
 
@@ -358,7 +358,7 @@ class OpensearchUser(pulumi.CustomResource):
358
358
  @pulumi.getter
359
359
  def username(self) -> pulumi.Output[builtins.str]:
360
360
  """
361
- The actual name of the OpenSearch User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
361
+ Name of the OpenSearch service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
362
362
  """
363
363
  return pulumi.get(self, "username")
364
364
 
@@ -26,7 +26,7 @@ class OrganizationArgs:
26
26
  timeouts: Optional[pulumi.Input['OrganizationTimeoutsArgs']] = None):
27
27
  """
28
28
  The set of arguments for constructing a Organization resource.
29
- :param pulumi.Input[builtins.str] name: Name of the organization.
29
+ :param pulumi.Input[builtins.str] name: Name of the organization. Maximum length: `128`.
30
30
  """
31
31
  if name is not None:
32
32
  pulumi.set(__self__, "name", name)
@@ -37,7 +37,7 @@ class OrganizationArgs:
37
37
  @pulumi.getter
38
38
  def name(self) -> Optional[pulumi.Input[builtins.str]]:
39
39
  """
40
- Name of the organization.
40
+ Name of the organization. Maximum length: `128`.
41
41
  """
42
42
  return pulumi.get(self, "name")
43
43
 
@@ -65,15 +65,18 @@ class _OrganizationState:
65
65
  update_time: Optional[pulumi.Input[builtins.str]] = None):
66
66
  """
67
67
  Input properties used for looking up and filtering Organization resources.
68
- :param pulumi.Input[builtins.str] create_time: Timestamp of the creation of the organization.
69
- :param pulumi.Input[builtins.str] name: Name of the organization.
70
- :param pulumi.Input[builtins.str] tenant_id: Tenant ID of the organization.
71
- :param pulumi.Input[builtins.str] update_time: Timestamp of the last update of the organization.
68
+ :param pulumi.Input[builtins.str] create_time: Timestamp in ISO 8601 format, always in UTC.
69
+ :param pulumi.Input[builtins.str] name: Name of the organization. Maximum length: `128`.
70
+ :param pulumi.Input[builtins.str] tenant_id: Tenant identifier.
71
+ :param pulumi.Input[builtins.str] update_time: Timestamp in ISO 8601 format, always in UTC.
72
72
  """
73
73
  if create_time is not None:
74
74
  pulumi.set(__self__, "create_time", create_time)
75
75
  if name is not None:
76
76
  pulumi.set(__self__, "name", name)
77
+ if tenant_id is not None:
78
+ warnings.warn("""This field is deprecated and will be removed in the next major release.""", DeprecationWarning)
79
+ pulumi.log.warn("""tenant_id is deprecated: This field is deprecated and will be removed in the next major release.""")
77
80
  if tenant_id is not None:
78
81
  pulumi.set(__self__, "tenant_id", tenant_id)
79
82
  if timeouts is not None:
@@ -85,7 +88,7 @@ class _OrganizationState:
85
88
  @pulumi.getter(name="createTime")
86
89
  def create_time(self) -> Optional[pulumi.Input[builtins.str]]:
87
90
  """
88
- Timestamp of the creation of the organization.
91
+ Timestamp in ISO 8601 format, always in UTC.
89
92
  """
90
93
  return pulumi.get(self, "create_time")
91
94
 
@@ -97,7 +100,7 @@ class _OrganizationState:
97
100
  @pulumi.getter
98
101
  def name(self) -> Optional[pulumi.Input[builtins.str]]:
99
102
  """
100
- Name of the organization.
103
+ Name of the organization. Maximum length: `128`.
101
104
  """
102
105
  return pulumi.get(self, "name")
103
106
 
@@ -107,9 +110,10 @@ class _OrganizationState:
107
110
 
108
111
  @property
109
112
  @pulumi.getter(name="tenantId")
113
+ @_utilities.deprecated("""This field is deprecated and will be removed in the next major release.""")
110
114
  def tenant_id(self) -> Optional[pulumi.Input[builtins.str]]:
111
115
  """
112
- Tenant ID of the organization.
116
+ Tenant identifier.
113
117
  """
114
118
  return pulumi.get(self, "tenant_id")
115
119
 
@@ -130,7 +134,7 @@ class _OrganizationState:
130
134
  @pulumi.getter(name="updateTime")
131
135
  def update_time(self) -> Optional[pulumi.Input[builtins.str]]:
132
136
  """
133
- Timestamp of the last update of the organization.
137
+ Timestamp in ISO 8601 format, always in UTC.
134
138
  """
135
139
  return pulumi.get(self, "update_time")
136
140
 
@@ -168,7 +172,7 @@ class Organization(pulumi.CustomResource):
168
172
 
169
173
  :param str resource_name: The name of the resource.
170
174
  :param pulumi.ResourceOptions opts: Options for the resource.
171
- :param pulumi.Input[builtins.str] name: Name of the organization.
175
+ :param pulumi.Input[builtins.str] name: Name of the organization. Maximum length: `128`.
172
176
  """
173
177
  ...
174
178
  @overload
@@ -247,10 +251,10 @@ class Organization(pulumi.CustomResource):
247
251
  :param str resource_name: The unique name of the resulting resource.
248
252
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
249
253
  :param pulumi.ResourceOptions opts: Options for the resource.
250
- :param pulumi.Input[builtins.str] create_time: Timestamp of the creation of the organization.
251
- :param pulumi.Input[builtins.str] name: Name of the organization.
252
- :param pulumi.Input[builtins.str] tenant_id: Tenant ID of the organization.
253
- :param pulumi.Input[builtins.str] update_time: Timestamp of the last update of the organization.
254
+ :param pulumi.Input[builtins.str] create_time: Timestamp in ISO 8601 format, always in UTC.
255
+ :param pulumi.Input[builtins.str] name: Name of the organization. Maximum length: `128`.
256
+ :param pulumi.Input[builtins.str] tenant_id: Tenant identifier.
257
+ :param pulumi.Input[builtins.str] update_time: Timestamp in ISO 8601 format, always in UTC.
254
258
  """
255
259
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
256
260
 
@@ -267,7 +271,7 @@ class Organization(pulumi.CustomResource):
267
271
  @pulumi.getter(name="createTime")
268
272
  def create_time(self) -> pulumi.Output[builtins.str]:
269
273
  """
270
- Timestamp of the creation of the organization.
274
+ Timestamp in ISO 8601 format, always in UTC.
271
275
  """
272
276
  return pulumi.get(self, "create_time")
273
277
 
@@ -275,15 +279,16 @@ class Organization(pulumi.CustomResource):
275
279
  @pulumi.getter
276
280
  def name(self) -> pulumi.Output[builtins.str]:
277
281
  """
278
- Name of the organization.
282
+ Name of the organization. Maximum length: `128`.
279
283
  """
280
284
  return pulumi.get(self, "name")
281
285
 
282
286
  @property
283
287
  @pulumi.getter(name="tenantId")
288
+ @_utilities.deprecated("""This field is deprecated and will be removed in the next major release.""")
284
289
  def tenant_id(self) -> pulumi.Output[builtins.str]:
285
290
  """
286
- Tenant ID of the organization.
291
+ Tenant identifier.
287
292
  """
288
293
  return pulumi.get(self, "tenant_id")
289
294
 
@@ -296,7 +301,7 @@ class Organization(pulumi.CustomResource):
296
301
  @pulumi.getter(name="updateTime")
297
302
  def update_time(self) -> pulumi.Output[builtins.str]:
298
303
  """
299
- Timestamp of the last update of the organization.
304
+ Timestamp in ISO 8601 format, always in UTC.
300
305
  """
301
306
  return pulumi.get(self, "update_time")
302
307