pulumi-aiven 6.19.0a1721845827__py3-none-any.whl → 6.19.0a1721847551__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 (47) hide show
  1. pulumi_aiven/__init__.py +20 -0
  2. pulumi_aiven/_inputs.py +1089 -29
  3. pulumi_aiven/account_team.py +12 -4
  4. pulumi_aiven/account_team_member.py +4 -4
  5. pulumi_aiven/account_team_project.py +4 -4
  6. pulumi_aiven/clickhouse.py +22 -22
  7. pulumi_aiven/clickhouse_database.py +39 -19
  8. pulumi_aiven/clickhouse_grant.py +80 -82
  9. pulumi_aiven/clickhouse_role.py +17 -31
  10. pulumi_aiven/clickhouse_user.py +31 -31
  11. pulumi_aiven/flink.py +19 -19
  12. pulumi_aiven/flink_application.py +39 -39
  13. pulumi_aiven/flink_application_deployment.py +131 -57
  14. pulumi_aiven/flink_application_version.py +64 -56
  15. pulumi_aiven/get_clickhouse.py +8 -8
  16. pulumi_aiven/get_clickhouse_database.py +11 -11
  17. pulumi_aiven/get_clickhouse_user.py +14 -14
  18. pulumi_aiven/get_flink.py +7 -7
  19. pulumi_aiven/get_flink_application.py +16 -16
  20. pulumi_aiven/get_flink_application_version.py +22 -22
  21. pulumi_aiven/get_kafka_acl.py +22 -22
  22. pulumi_aiven/get_kafka_connect.py +6 -6
  23. pulumi_aiven/get_kafka_connector.py +13 -13
  24. pulumi_aiven/get_kafka_topic.py +2 -2
  25. pulumi_aiven/get_kafka_user.py +15 -15
  26. pulumi_aiven/get_transit_gateway_vpc_attachment.py +1 -1
  27. pulumi_aiven/get_valkey.py +469 -0
  28. pulumi_aiven/get_valkey_user.py +206 -0
  29. pulumi_aiven/kafka_acl.py +43 -39
  30. pulumi_aiven/kafka_connect.py +66 -14
  31. pulumi_aiven/kafka_connector.py +46 -40
  32. pulumi_aiven/kafka_schema_registry_acl.py +2 -2
  33. pulumi_aiven/kafka_topic.py +16 -16
  34. pulumi_aiven/kafka_user.py +40 -40
  35. pulumi_aiven/organization_application_user.py +12 -2
  36. pulumi_aiven/organization_application_user_token.py +7 -7
  37. pulumi_aiven/organization_group_project.py +9 -9
  38. pulumi_aiven/organization_user_group_member.py +13 -9
  39. pulumi_aiven/outputs.py +2113 -332
  40. pulumi_aiven/pulumi-plugin.json +1 -1
  41. pulumi_aiven/transit_gateway_vpc_attachment.py +7 -16
  42. pulumi_aiven/valkey.py +1252 -0
  43. pulumi_aiven/valkey_user.py +513 -0
  44. {pulumi_aiven-6.19.0a1721845827.dist-info → pulumi_aiven-6.19.0a1721847551.dist-info}/METADATA +1 -1
  45. {pulumi_aiven-6.19.0a1721845827.dist-info → pulumi_aiven-6.19.0a1721847551.dist-info}/RECORD +47 -43
  46. {pulumi_aiven-6.19.0a1721845827.dist-info → pulumi_aiven-6.19.0a1721847551.dist-info}/WHEEL +0 -0
  47. {pulumi_aiven-6.19.0a1721845827.dist-info → pulumi_aiven-6.19.0a1721847551.dist-info}/top_level.txt +0 -0
pulumi_aiven/flink.py CHANGED
@@ -40,7 +40,7 @@ class FlinkArgs:
40
40
  :param pulumi.Input[str] additional_disk_space: Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
41
41
  :param pulumi.Input[str] cloud_name: Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (`aws`, `azure`, `do` `google`, `upcloud`, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like [here for Google](https://cloud.google.com/compute/docs/regions-zones/) and [here for AWS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
42
42
  :param pulumi.Input[str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
43
- :param pulumi.Input['FlinkFlinkArgs'] flink: Flink server provided values
43
+ :param pulumi.Input['FlinkFlinkArgs'] flink: Values provided by the Flink server.
44
44
  :param pulumi.Input['FlinkFlinkUserConfigArgs'] flink_user_config: Flink user configurable settings
45
45
  :param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
46
46
  :param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
@@ -161,7 +161,7 @@ class FlinkArgs:
161
161
  @pulumi.getter
162
162
  def flink(self) -> Optional[pulumi.Input['FlinkFlinkArgs']]:
163
163
  """
164
- Flink server provided values
164
+ Values provided by the Flink server.
165
165
  """
166
166
  return pulumi.get(self, "flink")
167
167
 
@@ -319,7 +319,7 @@ class _FlinkState:
319
319
  :param pulumi.Input[str] disk_space_default: The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for `disk_space`
320
320
  :param pulumi.Input[str] disk_space_step: The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. `disk_space` needs to increment from `disk_space_default` by increments of this size.
321
321
  :param pulumi.Input[str] disk_space_used: Disk space that service is currently using
322
- :param pulumi.Input['FlinkFlinkArgs'] flink: Flink server provided values
322
+ :param pulumi.Input['FlinkFlinkArgs'] flink: Values provided by the Flink server.
323
323
  :param pulumi.Input['FlinkFlinkUserConfigArgs'] flink_user_config: Flink user configurable settings
324
324
  :param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
325
325
  :param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
@@ -501,7 +501,7 @@ class _FlinkState:
501
501
  @pulumi.getter
502
502
  def flink(self) -> Optional[pulumi.Input['FlinkFlinkArgs']]:
503
503
  """
504
- Flink server provided values
504
+ Values provided by the Flink server.
505
505
  """
506
506
  return pulumi.get(self, "flink")
507
507
 
@@ -761,7 +761,7 @@ class Flink(pulumi.CustomResource):
761
761
  termination_protection: Optional[pulumi.Input[bool]] = None,
762
762
  __props__=None):
763
763
  """
764
- The Flink resource allows the creation and management of Aiven Flink services.
764
+ Creates and manages an [Aiven for Apache Flink® service](https://aiven.io/docs/products/flink/concepts/flink-features).
765
765
 
766
766
  ## Example Usage
767
767
 
@@ -769,22 +769,22 @@ class Flink(pulumi.CustomResource):
769
769
  import pulumi
770
770
  import pulumi_aiven as aiven
771
771
 
772
- flink = aiven.Flink("flink",
773
- project=pr1["project"],
772
+ example_flink = aiven.Flink("example_flink",
773
+ project=example_project["project"],
774
774
  cloud_name="google-europe-west1",
775
775
  plan="business-4",
776
- service_name="my-flink",
776
+ service_name="example-flink-service",
777
777
  maintenance_window_dow="monday",
778
778
  maintenance_window_time="10:00:00",
779
779
  flink_user_config=aiven.FlinkFlinkUserConfigArgs(
780
- flink_version="1.16",
780
+ flink_version="1.19",
781
781
  ))
782
782
  ```
783
783
 
784
784
  ## Import
785
785
 
786
786
  ```sh
787
- $ pulumi import aiven:index/flink:Flink flink PROJECT/SERVICE_NAME
787
+ $ pulumi import aiven:index/flink:Flink example_flink PROJECT/SERVICE_NAME
788
788
  ```
789
789
 
790
790
  :param str resource_name: The name of the resource.
@@ -792,7 +792,7 @@ class Flink(pulumi.CustomResource):
792
792
  :param pulumi.Input[str] additional_disk_space: Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
793
793
  :param pulumi.Input[str] cloud_name: Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (`aws`, `azure`, `do` `google`, `upcloud`, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like [here for Google](https://cloud.google.com/compute/docs/regions-zones/) and [here for AWS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
794
794
  :param pulumi.Input[str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
795
- :param pulumi.Input[pulumi.InputType['FlinkFlinkArgs']] flink: Flink server provided values
795
+ :param pulumi.Input[pulumi.InputType['FlinkFlinkArgs']] flink: Values provided by the Flink server.
796
796
  :param pulumi.Input[pulumi.InputType['FlinkFlinkUserConfigArgs']] flink_user_config: Flink user configurable settings
797
797
  :param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
798
798
  :param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
@@ -813,7 +813,7 @@ class Flink(pulumi.CustomResource):
813
813
  args: FlinkArgs,
814
814
  opts: Optional[pulumi.ResourceOptions] = None):
815
815
  """
816
- The Flink resource allows the creation and management of Aiven Flink services.
816
+ Creates and manages an [Aiven for Apache Flink® service](https://aiven.io/docs/products/flink/concepts/flink-features).
817
817
 
818
818
  ## Example Usage
819
819
 
@@ -821,22 +821,22 @@ class Flink(pulumi.CustomResource):
821
821
  import pulumi
822
822
  import pulumi_aiven as aiven
823
823
 
824
- flink = aiven.Flink("flink",
825
- project=pr1["project"],
824
+ example_flink = aiven.Flink("example_flink",
825
+ project=example_project["project"],
826
826
  cloud_name="google-europe-west1",
827
827
  plan="business-4",
828
- service_name="my-flink",
828
+ service_name="example-flink-service",
829
829
  maintenance_window_dow="monday",
830
830
  maintenance_window_time="10:00:00",
831
831
  flink_user_config=aiven.FlinkFlinkUserConfigArgs(
832
- flink_version="1.16",
832
+ flink_version="1.19",
833
833
  ))
834
834
  ```
835
835
 
836
836
  ## Import
837
837
 
838
838
  ```sh
839
- $ pulumi import aiven:index/flink:Flink flink PROJECT/SERVICE_NAME
839
+ $ pulumi import aiven:index/flink:Flink example_flink PROJECT/SERVICE_NAME
840
840
  ```
841
841
 
842
842
  :param str resource_name: The name of the resource.
@@ -968,7 +968,7 @@ class Flink(pulumi.CustomResource):
968
968
  :param pulumi.Input[str] disk_space_default: The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for `disk_space`
969
969
  :param pulumi.Input[str] disk_space_step: The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. `disk_space` needs to increment from `disk_space_default` by increments of this size.
970
970
  :param pulumi.Input[str] disk_space_used: Disk space that service is currently using
971
- :param pulumi.Input[pulumi.InputType['FlinkFlinkArgs']] flink: Flink server provided values
971
+ :param pulumi.Input[pulumi.InputType['FlinkFlinkArgs']] flink: Values provided by the Flink server.
972
972
  :param pulumi.Input[pulumi.InputType['FlinkFlinkUserConfigArgs']] flink_user_config: Flink user configurable settings
973
973
  :param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
974
974
  :param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
@@ -1092,7 +1092,7 @@ class Flink(pulumi.CustomResource):
1092
1092
  @pulumi.getter
1093
1093
  def flink(self) -> pulumi.Output['outputs.FlinkFlink']:
1094
1094
  """
1095
- Flink server provided values
1095
+ Values provided by the Flink server.
1096
1096
  """
1097
1097
  return pulumi.get(self, "flink")
1098
1098
 
@@ -21,7 +21,7 @@ class FlinkApplicationArgs:
21
21
  The set of arguments for constructing a FlinkApplication resource.
22
22
  :param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
23
23
  :param pulumi.Input[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.
24
- :param pulumi.Input[str] name: Application name
24
+ :param pulumi.Input[str] name: The name of the application.
25
25
  """
26
26
  pulumi.set(__self__, "project", project)
27
27
  pulumi.set(__self__, "service_name", service_name)
@@ -56,7 +56,7 @@ class FlinkApplicationArgs:
56
56
  @pulumi.getter
57
57
  def name(self) -> Optional[pulumi.Input[str]]:
58
58
  """
59
- Application name
59
+ The name of the application.
60
60
  """
61
61
  return pulumi.get(self, "name")
62
62
 
@@ -78,14 +78,14 @@ class _FlinkApplicationState:
78
78
  updated_by: Optional[pulumi.Input[str]] = None):
79
79
  """
80
80
  Input properties used for looking up and filtering FlinkApplication resources.
81
- :param pulumi.Input[str] application_id: Application ID
82
- :param pulumi.Input[str] created_at: Application creation time
83
- :param pulumi.Input[str] created_by: Application creator
84
- :param pulumi.Input[str] name: Application name
81
+ :param pulumi.Input[str] application_id: Application ID.
82
+ :param pulumi.Input[str] created_at: Application creation time.
83
+ :param pulumi.Input[str] created_by: The user who created the application.
84
+ :param pulumi.Input[str] name: The name of the application.
85
85
  :param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
86
86
  :param pulumi.Input[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.
87
- :param pulumi.Input[str] updated_at: Application update time
88
- :param pulumi.Input[str] updated_by: Application updater
87
+ :param pulumi.Input[str] updated_at: When the application was updated.
88
+ :param pulumi.Input[str] updated_by: The user who updated the application.
89
89
  """
90
90
  if application_id is not None:
91
91
  pulumi.set(__self__, "application_id", application_id)
@@ -108,7 +108,7 @@ class _FlinkApplicationState:
108
108
  @pulumi.getter(name="applicationId")
109
109
  def application_id(self) -> Optional[pulumi.Input[str]]:
110
110
  """
111
- Application ID
111
+ Application ID.
112
112
  """
113
113
  return pulumi.get(self, "application_id")
114
114
 
@@ -120,7 +120,7 @@ class _FlinkApplicationState:
120
120
  @pulumi.getter(name="createdAt")
121
121
  def created_at(self) -> Optional[pulumi.Input[str]]:
122
122
  """
123
- Application creation time
123
+ Application creation time.
124
124
  """
125
125
  return pulumi.get(self, "created_at")
126
126
 
@@ -132,7 +132,7 @@ class _FlinkApplicationState:
132
132
  @pulumi.getter(name="createdBy")
133
133
  def created_by(self) -> Optional[pulumi.Input[str]]:
134
134
  """
135
- Application creator
135
+ The user who created the application.
136
136
  """
137
137
  return pulumi.get(self, "created_by")
138
138
 
@@ -144,7 +144,7 @@ class _FlinkApplicationState:
144
144
  @pulumi.getter
145
145
  def name(self) -> Optional[pulumi.Input[str]]:
146
146
  """
147
- Application name
147
+ The name of the application.
148
148
  """
149
149
  return pulumi.get(self, "name")
150
150
 
@@ -180,7 +180,7 @@ class _FlinkApplicationState:
180
180
  @pulumi.getter(name="updatedAt")
181
181
  def updated_at(self) -> Optional[pulumi.Input[str]]:
182
182
  """
183
- Application update time
183
+ When the application was updated.
184
184
  """
185
185
  return pulumi.get(self, "updated_at")
186
186
 
@@ -192,7 +192,7 @@ class _FlinkApplicationState:
192
192
  @pulumi.getter(name="updatedBy")
193
193
  def updated_by(self) -> Optional[pulumi.Input[str]]:
194
194
  """
195
- Application updater
195
+ The user who updated the application.
196
196
  """
197
197
  return pulumi.get(self, "updated_by")
198
198
 
@@ -211,7 +211,7 @@ class FlinkApplication(pulumi.CustomResource):
211
211
  service_name: Optional[pulumi.Input[str]] = None,
212
212
  __props__=None):
213
213
  """
214
- The Flink Application resource allows the creation and management of Aiven Flink Applications.
214
+ Creates and manages an [Aiven for Apache Flink® application](https://aiven.io/docs/products/flink/concepts/flink-applications).
215
215
 
216
216
  ## Example Usage
217
217
 
@@ -219,21 +219,21 @@ class FlinkApplication(pulumi.CustomResource):
219
219
  import pulumi
220
220
  import pulumi_aiven as aiven
221
221
 
222
- foo = aiven.FlinkApplication("foo",
223
- project=foo_aiven_project["project"],
224
- service_name="flink-service-1",
225
- name="my-flink-app")
222
+ example_app = aiven.FlinkApplication("example_app",
223
+ project=example_project["project"],
224
+ service_name="example-flink-service",
225
+ name="example-app")
226
226
  ```
227
227
 
228
228
  ## Import
229
229
 
230
230
  ```sh
231
- $ pulumi import aiven:index/flinkApplication:FlinkApplication myapp PROJECT/SERVICE/APPLICATION_NAME
231
+ $ pulumi import aiven:index/flinkApplication:FlinkApplication example_app PROJECT/SERVICE_NAME/APPLICATION_NAME
232
232
  ```
233
233
 
234
234
  :param str resource_name: The name of the resource.
235
235
  :param pulumi.ResourceOptions opts: Options for the resource.
236
- :param pulumi.Input[str] name: Application name
236
+ :param pulumi.Input[str] name: The name of the application.
237
237
  :param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
238
238
  :param pulumi.Input[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.
239
239
  """
@@ -244,7 +244,7 @@ class FlinkApplication(pulumi.CustomResource):
244
244
  args: FlinkApplicationArgs,
245
245
  opts: Optional[pulumi.ResourceOptions] = None):
246
246
  """
247
- The Flink Application resource allows the creation and management of Aiven Flink Applications.
247
+ Creates and manages an [Aiven for Apache Flink® application](https://aiven.io/docs/products/flink/concepts/flink-applications).
248
248
 
249
249
  ## Example Usage
250
250
 
@@ -252,16 +252,16 @@ class FlinkApplication(pulumi.CustomResource):
252
252
  import pulumi
253
253
  import pulumi_aiven as aiven
254
254
 
255
- foo = aiven.FlinkApplication("foo",
256
- project=foo_aiven_project["project"],
257
- service_name="flink-service-1",
258
- name="my-flink-app")
255
+ example_app = aiven.FlinkApplication("example_app",
256
+ project=example_project["project"],
257
+ service_name="example-flink-service",
258
+ name="example-app")
259
259
  ```
260
260
 
261
261
  ## Import
262
262
 
263
263
  ```sh
264
- $ pulumi import aiven:index/flinkApplication:FlinkApplication myapp PROJECT/SERVICE/APPLICATION_NAME
264
+ $ pulumi import aiven:index/flinkApplication:FlinkApplication example_app PROJECT/SERVICE_NAME/APPLICATION_NAME
265
265
  ```
266
266
 
267
267
  :param str resource_name: The name of the resource.
@@ -328,14 +328,14 @@ class FlinkApplication(pulumi.CustomResource):
328
328
  :param str resource_name: The unique name of the resulting resource.
329
329
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
330
330
  :param pulumi.ResourceOptions opts: Options for the resource.
331
- :param pulumi.Input[str] application_id: Application ID
332
- :param pulumi.Input[str] created_at: Application creation time
333
- :param pulumi.Input[str] created_by: Application creator
334
- :param pulumi.Input[str] name: Application name
331
+ :param pulumi.Input[str] application_id: Application ID.
332
+ :param pulumi.Input[str] created_at: Application creation time.
333
+ :param pulumi.Input[str] created_by: The user who created the application.
334
+ :param pulumi.Input[str] name: The name of the application.
335
335
  :param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
336
336
  :param pulumi.Input[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.
337
- :param pulumi.Input[str] updated_at: Application update time
338
- :param pulumi.Input[str] updated_by: Application updater
337
+ :param pulumi.Input[str] updated_at: When the application was updated.
338
+ :param pulumi.Input[str] updated_by: The user who updated the application.
339
339
  """
340
340
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
341
341
 
@@ -355,7 +355,7 @@ class FlinkApplication(pulumi.CustomResource):
355
355
  @pulumi.getter(name="applicationId")
356
356
  def application_id(self) -> pulumi.Output[str]:
357
357
  """
358
- Application ID
358
+ Application ID.
359
359
  """
360
360
  return pulumi.get(self, "application_id")
361
361
 
@@ -363,7 +363,7 @@ class FlinkApplication(pulumi.CustomResource):
363
363
  @pulumi.getter(name="createdAt")
364
364
  def created_at(self) -> pulumi.Output[str]:
365
365
  """
366
- Application creation time
366
+ Application creation time.
367
367
  """
368
368
  return pulumi.get(self, "created_at")
369
369
 
@@ -371,7 +371,7 @@ class FlinkApplication(pulumi.CustomResource):
371
371
  @pulumi.getter(name="createdBy")
372
372
  def created_by(self) -> pulumi.Output[str]:
373
373
  """
374
- Application creator
374
+ The user who created the application.
375
375
  """
376
376
  return pulumi.get(self, "created_by")
377
377
 
@@ -379,7 +379,7 @@ class FlinkApplication(pulumi.CustomResource):
379
379
  @pulumi.getter
380
380
  def name(self) -> pulumi.Output[str]:
381
381
  """
382
- Application name
382
+ The name of the application.
383
383
  """
384
384
  return pulumi.get(self, "name")
385
385
 
@@ -403,7 +403,7 @@ class FlinkApplication(pulumi.CustomResource):
403
403
  @pulumi.getter(name="updatedAt")
404
404
  def updated_at(self) -> pulumi.Output[str]:
405
405
  """
406
- Application update time
406
+ When the application was updated.
407
407
  """
408
408
  return pulumi.get(self, "updated_at")
409
409
 
@@ -411,7 +411,7 @@ class FlinkApplication(pulumi.CustomResource):
411
411
  @pulumi.getter(name="updatedBy")
412
412
  def updated_by(self) -> pulumi.Output[str]:
413
413
  """
414
- Application updater
414
+ The user who updated the application.
415
415
  """
416
416
  return pulumi.get(self, "updated_by")
417
417