pulumi-gcp 8.26.0a1744267117__py3-none-any.whl → 8.27.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.
Files changed (116) hide show
  1. pulumi_gcp/__init__.py +128 -0
  2. pulumi_gcp/accesscontextmanager/_inputs.py +117 -0
  3. pulumi_gcp/accesscontextmanager/gcp_user_access_binding.py +81 -26
  4. pulumi_gcp/accesscontextmanager/outputs.py +95 -0
  5. pulumi_gcp/apigee/__init__.py +1 -0
  6. pulumi_gcp/apigee/control_plane_access.py +419 -0
  7. pulumi_gcp/bigquery/_inputs.py +87 -30
  8. pulumi_gcp/bigquery/outputs.py +58 -20
  9. pulumi_gcp/bigquery/table.py +28 -14
  10. pulumi_gcp/clouddeploy/__init__.py +1 -0
  11. pulumi_gcp/clouddeploy/_inputs.py +2876 -1314
  12. pulumi_gcp/clouddeploy/automation.py +64 -2
  13. pulumi_gcp/clouddeploy/deploy_policy.py +1179 -0
  14. pulumi_gcp/clouddeploy/outputs.py +1130 -5
  15. pulumi_gcp/cloudrun/service.py +46 -0
  16. pulumi_gcp/cloudrunv2/get_service.py +12 -1
  17. pulumi_gcp/cloudrunv2/service.py +87 -2
  18. pulumi_gcp/compute/_inputs.py +448 -1
  19. pulumi_gcp/compute/image.py +183 -0
  20. pulumi_gcp/compute/outputs.py +387 -3
  21. pulumi_gcp/compute/region_backend_service.py +6 -2
  22. pulumi_gcp/compute/resource_policy.py +30 -0
  23. pulumi_gcp/compute/snapshot.py +6 -0
  24. pulumi_gcp/databasemigrationservice/_inputs.py +27 -24
  25. pulumi_gcp/databasemigrationservice/connection_profile.py +168 -0
  26. pulumi_gcp/databasemigrationservice/migration_job.py +6 -0
  27. pulumi_gcp/databasemigrationservice/outputs.py +18 -15
  28. pulumi_gcp/datastream/_inputs.py +506 -0
  29. pulumi_gcp/datastream/outputs.py +376 -0
  30. pulumi_gcp/datastream/stream.py +0 -2
  31. pulumi_gcp/developerconnect/__init__.py +1 -0
  32. pulumi_gcp/developerconnect/_inputs.py +77 -0
  33. pulumi_gcp/developerconnect/account_connector.py +866 -0
  34. pulumi_gcp/developerconnect/outputs.py +64 -0
  35. pulumi_gcp/firebase/hosting_version.py +34 -14
  36. pulumi_gcp/firestore/database.py +82 -0
  37. pulumi_gcp/firestore/index.py +263 -7
  38. pulumi_gcp/folder/__init__.py +1 -0
  39. pulumi_gcp/folder/service_identity.py +314 -0
  40. pulumi_gcp/gemini/__init__.py +2 -0
  41. pulumi_gcp/gemini/_inputs.py +176 -0
  42. pulumi_gcp/gemini/code_tools_setting.py +601 -0
  43. pulumi_gcp/gemini/code_tools_setting_binding.py +753 -0
  44. pulumi_gcp/gemini/outputs.py +124 -0
  45. pulumi_gcp/gkeonprem/v_mware_cluster.py +49 -0
  46. pulumi_gcp/gkeonprem/vmware_admin_cluster.py +28 -0
  47. pulumi_gcp/managedkafka/_inputs.py +6 -6
  48. pulumi_gcp/managedkafka/connect_cluster.py +84 -40
  49. pulumi_gcp/managedkafka/connector.py +98 -44
  50. pulumi_gcp/managedkafka/outputs.py +4 -4
  51. pulumi_gcp/memorystore/_inputs.py +205 -0
  52. pulumi_gcp/memorystore/get_instance.py +45 -1
  53. pulumi_gcp/memorystore/instance.py +194 -0
  54. pulumi_gcp/memorystore/outputs.py +270 -0
  55. pulumi_gcp/ml/engine_model.py +0 -22
  56. pulumi_gcp/monitoring/_inputs.py +37 -19
  57. pulumi_gcp/monitoring/outputs.py +39 -11
  58. pulumi_gcp/monitoring/uptime_check_config.py +8 -0
  59. pulumi_gcp/netapp/_inputs.py +92 -6
  60. pulumi_gcp/netapp/outputs.py +77 -4
  61. pulumi_gcp/netapp/volume_replication.py +12 -2
  62. pulumi_gcp/networkconnectivity/service_connection_policy.py +4 -2
  63. pulumi_gcp/networkconnectivity/spoke.py +14 -14
  64. pulumi_gcp/orgpolicy/policy.py +2 -2
  65. pulumi_gcp/osconfig/__init__.py +1 -0
  66. pulumi_gcp/osconfig/_inputs.py +5439 -0
  67. pulumi_gcp/osconfig/outputs.py +3978 -0
  68. pulumi_gcp/osconfig/v2_policy_orchestrator.py +8 -0
  69. pulumi_gcp/osconfig/v2_policy_orchestrator_for_organization.py +1055 -0
  70. pulumi_gcp/parametermanager/get_regional_parameter.py +12 -1
  71. pulumi_gcp/parametermanager/get_regional_parameter_version.py +15 -1
  72. pulumi_gcp/parametermanager/outputs.py +11 -0
  73. pulumi_gcp/parametermanager/regional_parameter.py +78 -0
  74. pulumi_gcp/parametermanager/regional_parameter_version.py +66 -0
  75. pulumi_gcp/pubsub/subscription.py +6 -6
  76. pulumi_gcp/pulumi-plugin.json +1 -1
  77. pulumi_gcp/redis/_inputs.py +69 -0
  78. pulumi_gcp/redis/cluster.py +140 -0
  79. pulumi_gcp/redis/outputs.py +40 -0
  80. pulumi_gcp/spanner/database.py +0 -34
  81. pulumi_gcp/storage/_inputs.py +111 -0
  82. pulumi_gcp/storage/bucket_object.py +28 -0
  83. pulumi_gcp/storage/control_folder_intelligence_config.py +32 -0
  84. pulumi_gcp/storage/control_organization_intelligence_config.py +32 -0
  85. pulumi_gcp/storage/control_project_intelligence_config.py +32 -0
  86. pulumi_gcp/storage/get_bucket_object.py +12 -1
  87. pulumi_gcp/storage/get_bucket_object_content.py +12 -1
  88. pulumi_gcp/storage/get_control_folder_intelligence_config.py +12 -1
  89. pulumi_gcp/storage/get_control_organization_intelligence_config.py +12 -1
  90. pulumi_gcp/storage/get_control_project_intelligence_config.py +12 -1
  91. pulumi_gcp/storage/outputs.py +174 -0
  92. pulumi_gcp/vertex/__init__.py +12 -0
  93. pulumi_gcp/vertex/_inputs.py +294 -0
  94. pulumi_gcp/vertex/ai_endpoint.py +4 -4
  95. pulumi_gcp/vertex/ai_feature_group.py +1 -1
  96. pulumi_gcp/vertex/ai_feature_group_iam_binding.py +583 -0
  97. pulumi_gcp/vertex/ai_feature_group_iam_member.py +583 -0
  98. pulumi_gcp/vertex/ai_feature_group_iam_policy.py +422 -0
  99. pulumi_gcp/vertex/ai_feature_online_store_featureview.py +26 -27
  100. pulumi_gcp/vertex/ai_feature_online_store_featureview_iam_binding.py +614 -0
  101. pulumi_gcp/vertex/ai_feature_online_store_featureview_iam_member.py +614 -0
  102. pulumi_gcp/vertex/ai_feature_online_store_featureview_iam_policy.py +453 -0
  103. pulumi_gcp/vertex/ai_feature_online_store_iam_binding.py +583 -0
  104. pulumi_gcp/vertex/ai_feature_online_store_iam_member.py +583 -0
  105. pulumi_gcp/vertex/ai_feature_online_store_iam_policy.py +422 -0
  106. pulumi_gcp/vertex/get_ai_feature_group_iam_policy.py +177 -0
  107. pulumi_gcp/vertex/get_ai_feature_online_store_featureview_iam_policy.py +194 -0
  108. pulumi_gcp/vertex/get_ai_feature_online_store_iam_policy.py +177 -0
  109. pulumi_gcp/vertex/outputs.py +168 -0
  110. pulumi_gcp/workbench/_inputs.py +60 -0
  111. pulumi_gcp/workbench/instance.py +48 -0
  112. pulumi_gcp/workbench/outputs.py +55 -0
  113. {pulumi_gcp-8.26.0a1744267117.dist-info → pulumi_gcp-8.27.0.dist-info}/METADATA +1 -1
  114. {pulumi_gcp-8.26.0a1744267117.dist-info → pulumi_gcp-8.27.0.dist-info}/RECORD +116 -97
  115. {pulumi_gcp-8.26.0a1744267117.dist-info → pulumi_gcp-8.27.0.dist-info}/WHEEL +0 -0
  116. {pulumi_gcp-8.26.0a1744267117.dist-info → pulumi_gcp-8.27.0.dist-info}/top_level.txt +0 -0
@@ -17,6 +17,9 @@ from .. import _utilities
17
17
  from . import outputs
18
18
 
19
19
  __all__ = [
20
+ 'InstanceAutomatedBackupConfig',
21
+ 'InstanceAutomatedBackupConfigFixedFrequencySchedule',
22
+ 'InstanceAutomatedBackupConfigFixedFrequencyScheduleStartTime',
20
23
  'InstanceCrossInstanceReplicationConfig',
21
24
  'InstanceCrossInstanceReplicationConfigMembership',
22
25
  'InstanceCrossInstanceReplicationConfigMembershipPrimaryInstance',
@@ -31,10 +34,12 @@ __all__ = [
31
34
  'InstanceEndpoint',
32
35
  'InstanceEndpointConnection',
33
36
  'InstanceEndpointConnectionPscAutoConnection',
37
+ 'InstanceGcsSource',
34
38
  'InstanceMaintenancePolicy',
35
39
  'InstanceMaintenancePolicyWeeklyMaintenanceWindow',
36
40
  'InstanceMaintenancePolicyWeeklyMaintenanceWindowStartTime',
37
41
  'InstanceMaintenanceSchedule',
42
+ 'InstanceManagedBackupSource',
38
43
  'InstanceNodeConfig',
39
44
  'InstancePersistenceConfig',
40
45
  'InstancePersistenceConfigAofConfig',
@@ -44,6 +49,9 @@ __all__ = [
44
49
  'InstanceStateInfo',
45
50
  'InstanceStateInfoUpdateInfo',
46
51
  'InstanceZoneDistributionConfig',
52
+ 'GetInstanceAutomatedBackupConfigResult',
53
+ 'GetInstanceAutomatedBackupConfigFixedFrequencyScheduleResult',
54
+ 'GetInstanceAutomatedBackupConfigFixedFrequencyScheduleStartTimeResult',
47
55
  'GetInstanceCrossInstanceReplicationConfigResult',
48
56
  'GetInstanceCrossInstanceReplicationConfigMembershipResult',
49
57
  'GetInstanceCrossInstanceReplicationConfigMembershipPrimaryInstanceResult',
@@ -55,10 +63,12 @@ __all__ = [
55
63
  'GetInstanceEndpointResult',
56
64
  'GetInstanceEndpointConnectionResult',
57
65
  'GetInstanceEndpointConnectionPscAutoConnectionResult',
66
+ 'GetInstanceGcsSourceResult',
58
67
  'GetInstanceMaintenancePolicyResult',
59
68
  'GetInstanceMaintenancePolicyWeeklyMaintenanceWindowResult',
60
69
  'GetInstanceMaintenancePolicyWeeklyMaintenanceWindowStartTimeResult',
61
70
  'GetInstanceMaintenanceScheduleResult',
71
+ 'GetInstanceManagedBackupSourceResult',
62
72
  'GetInstanceNodeConfigResult',
63
73
  'GetInstancePersistenceConfigResult',
64
74
  'GetInstancePersistenceConfigAofConfigResult',
@@ -70,6 +80,117 @@ __all__ = [
70
80
  'GetInstanceZoneDistributionConfigResult',
71
81
  ]
72
82
 
83
+ @pulumi.output_type
84
+ class InstanceAutomatedBackupConfig(dict):
85
+ @staticmethod
86
+ def __key_warning(key: str):
87
+ suggest = None
88
+ if key == "fixedFrequencySchedule":
89
+ suggest = "fixed_frequency_schedule"
90
+
91
+ if suggest:
92
+ pulumi.log.warn(f"Key '{key}' not found in InstanceAutomatedBackupConfig. Access the value via the '{suggest}' property getter instead.")
93
+
94
+ def __getitem__(self, key: str) -> Any:
95
+ InstanceAutomatedBackupConfig.__key_warning(key)
96
+ return super().__getitem__(key)
97
+
98
+ def get(self, key: str, default = None) -> Any:
99
+ InstanceAutomatedBackupConfig.__key_warning(key)
100
+ return super().get(key, default)
101
+
102
+ def __init__(__self__, *,
103
+ fixed_frequency_schedule: 'outputs.InstanceAutomatedBackupConfigFixedFrequencySchedule',
104
+ retention: builtins.str):
105
+ """
106
+ :param 'InstanceAutomatedBackupConfigFixedFrequencyScheduleArgs' fixed_frequency_schedule: Trigger automated backups at a fixed frequency.
107
+ Structure is documented below.
108
+ :param builtins.str retention: How long to keep automated backups before the backups are deleted.
109
+ The value should be between 1 day and 365 days. If not specified, the default value is 35 days.
110
+ A duration in seconds with up to nine fractional digits, ending with 's'. Example: "3.5s". The default_value is "3024000s"
111
+ """
112
+ pulumi.set(__self__, "fixed_frequency_schedule", fixed_frequency_schedule)
113
+ pulumi.set(__self__, "retention", retention)
114
+
115
+ @property
116
+ @pulumi.getter(name="fixedFrequencySchedule")
117
+ def fixed_frequency_schedule(self) -> 'outputs.InstanceAutomatedBackupConfigFixedFrequencySchedule':
118
+ """
119
+ Trigger automated backups at a fixed frequency.
120
+ Structure is documented below.
121
+ """
122
+ return pulumi.get(self, "fixed_frequency_schedule")
123
+
124
+ @property
125
+ @pulumi.getter
126
+ def retention(self) -> builtins.str:
127
+ """
128
+ How long to keep automated backups before the backups are deleted.
129
+ The value should be between 1 day and 365 days. If not specified, the default value is 35 days.
130
+ A duration in seconds with up to nine fractional digits, ending with 's'. Example: "3.5s". The default_value is "3024000s"
131
+ """
132
+ return pulumi.get(self, "retention")
133
+
134
+
135
+ @pulumi.output_type
136
+ class InstanceAutomatedBackupConfigFixedFrequencySchedule(dict):
137
+ @staticmethod
138
+ def __key_warning(key: str):
139
+ suggest = None
140
+ if key == "startTime":
141
+ suggest = "start_time"
142
+
143
+ if suggest:
144
+ pulumi.log.warn(f"Key '{key}' not found in InstanceAutomatedBackupConfigFixedFrequencySchedule. Access the value via the '{suggest}' property getter instead.")
145
+
146
+ def __getitem__(self, key: str) -> Any:
147
+ InstanceAutomatedBackupConfigFixedFrequencySchedule.__key_warning(key)
148
+ return super().__getitem__(key)
149
+
150
+ def get(self, key: str, default = None) -> Any:
151
+ InstanceAutomatedBackupConfigFixedFrequencySchedule.__key_warning(key)
152
+ return super().get(key, default)
153
+
154
+ def __init__(__self__, *,
155
+ start_time: 'outputs.InstanceAutomatedBackupConfigFixedFrequencyScheduleStartTime'):
156
+ """
157
+ :param 'InstanceAutomatedBackupConfigFixedFrequencyScheduleStartTimeArgs' start_time: The start time of every automated backup in UTC.
158
+ It must be set to the start of an hour. This field is required.
159
+ Structure is documented below.
160
+ """
161
+ pulumi.set(__self__, "start_time", start_time)
162
+
163
+ @property
164
+ @pulumi.getter(name="startTime")
165
+ def start_time(self) -> 'outputs.InstanceAutomatedBackupConfigFixedFrequencyScheduleStartTime':
166
+ """
167
+ The start time of every automated backup in UTC.
168
+ It must be set to the start of an hour. This field is required.
169
+ Structure is documented below.
170
+ """
171
+ return pulumi.get(self, "start_time")
172
+
173
+
174
+ @pulumi.output_type
175
+ class InstanceAutomatedBackupConfigFixedFrequencyScheduleStartTime(dict):
176
+ def __init__(__self__, *,
177
+ hours: builtins.int):
178
+ """
179
+ :param builtins.int hours: Hours of day in 24 hour format. Should be from 0 to 23.
180
+ An API may choose to allow the value "24:00:00" for scenarios like business closing time.
181
+ """
182
+ pulumi.set(__self__, "hours", hours)
183
+
184
+ @property
185
+ @pulumi.getter
186
+ def hours(self) -> builtins.int:
187
+ """
188
+ Hours of day in 24 hour format. Should be from 0 to 23.
189
+ An API may choose to allow the value "24:00:00" for scenarios like business closing time.
190
+ """
191
+ return pulumi.get(self, "hours")
192
+
193
+
73
194
  @pulumi.output_type
74
195
  class InstanceCrossInstanceReplicationConfig(dict):
75
196
  @staticmethod
@@ -898,6 +1019,26 @@ class InstanceEndpointConnectionPscAutoConnection(dict):
898
1019
  return pulumi.get(self, "service_attachment")
899
1020
 
900
1021
 
1022
+ @pulumi.output_type
1023
+ class InstanceGcsSource(dict):
1024
+ def __init__(__self__, *,
1025
+ uris: Sequence[builtins.str]):
1026
+ """
1027
+ :param Sequence[builtins.str] uris: URIs of the GCS objects to import.
1028
+ Example: gs://bucket1/object1, gs//bucket2/folder2/object2
1029
+ """
1030
+ pulumi.set(__self__, "uris", uris)
1031
+
1032
+ @property
1033
+ @pulumi.getter
1034
+ def uris(self) -> Sequence[builtins.str]:
1035
+ """
1036
+ URIs of the GCS objects to import.
1037
+ Example: gs://bucket1/object1, gs//bucket2/folder2/object2
1038
+ """
1039
+ return pulumi.get(self, "uris")
1040
+
1041
+
901
1042
  @pulumi.output_type
902
1043
  class InstanceMaintenancePolicy(dict):
903
1044
  @staticmethod
@@ -1209,6 +1350,24 @@ class InstanceMaintenanceSchedule(dict):
1209
1350
  return pulumi.get(self, "start_time")
1210
1351
 
1211
1352
 
1353
+ @pulumi.output_type
1354
+ class InstanceManagedBackupSource(dict):
1355
+ def __init__(__self__, *,
1356
+ backup: builtins.str):
1357
+ """
1358
+ :param builtins.str backup: Example: //memorystore.googleapis.com/projects/{project}/locations/{location}/backups/{backupId}. In this case, it assumes the backup is under memorystore.googleapis.com.
1359
+ """
1360
+ pulumi.set(__self__, "backup", backup)
1361
+
1362
+ @property
1363
+ @pulumi.getter
1364
+ def backup(self) -> builtins.str:
1365
+ """
1366
+ Example: //memorystore.googleapis.com/projects/{project}/locations/{location}/backups/{backupId}. In this case, it assumes the backup is under memorystore.googleapis.com.
1367
+ """
1368
+ return pulumi.get(self, "backup")
1369
+
1370
+
1212
1371
  @pulumi.output_type
1213
1372
  class InstanceNodeConfig(dict):
1214
1373
  @staticmethod
@@ -1844,6 +2003,79 @@ class InstanceZoneDistributionConfig(dict):
1844
2003
  return pulumi.get(self, "zone")
1845
2004
 
1846
2005
 
2006
+ @pulumi.output_type
2007
+ class GetInstanceAutomatedBackupConfigResult(dict):
2008
+ def __init__(__self__, *,
2009
+ fixed_frequency_schedules: Sequence['outputs.GetInstanceAutomatedBackupConfigFixedFrequencyScheduleResult'],
2010
+ retention: builtins.str):
2011
+ """
2012
+ :param Sequence['GetInstanceAutomatedBackupConfigFixedFrequencyScheduleArgs'] fixed_frequency_schedules: Trigger automated backups at a fixed frequency.
2013
+ :param builtins.str retention: How long to keep automated backups before the backups are deleted.
2014
+ The value should be between 1 day and 365 days. If not specified, the default value is 35 days.
2015
+ A duration in seconds with up to nine fractional digits, ending with 's'. Example: "3.5s". The default_value is "3024000s"
2016
+ """
2017
+ pulumi.set(__self__, "fixed_frequency_schedules", fixed_frequency_schedules)
2018
+ pulumi.set(__self__, "retention", retention)
2019
+
2020
+ @property
2021
+ @pulumi.getter(name="fixedFrequencySchedules")
2022
+ def fixed_frequency_schedules(self) -> Sequence['outputs.GetInstanceAutomatedBackupConfigFixedFrequencyScheduleResult']:
2023
+ """
2024
+ Trigger automated backups at a fixed frequency.
2025
+ """
2026
+ return pulumi.get(self, "fixed_frequency_schedules")
2027
+
2028
+ @property
2029
+ @pulumi.getter
2030
+ def retention(self) -> builtins.str:
2031
+ """
2032
+ How long to keep automated backups before the backups are deleted.
2033
+ The value should be between 1 day and 365 days. If not specified, the default value is 35 days.
2034
+ A duration in seconds with up to nine fractional digits, ending with 's'. Example: "3.5s". The default_value is "3024000s"
2035
+ """
2036
+ return pulumi.get(self, "retention")
2037
+
2038
+
2039
+ @pulumi.output_type
2040
+ class GetInstanceAutomatedBackupConfigFixedFrequencyScheduleResult(dict):
2041
+ def __init__(__self__, *,
2042
+ start_times: Sequence['outputs.GetInstanceAutomatedBackupConfigFixedFrequencyScheduleStartTimeResult']):
2043
+ """
2044
+ :param Sequence['GetInstanceAutomatedBackupConfigFixedFrequencyScheduleStartTimeArgs'] start_times: The start time of every automated backup in UTC.
2045
+ It must be set to the start of an hour. This field is required.
2046
+ """
2047
+ pulumi.set(__self__, "start_times", start_times)
2048
+
2049
+ @property
2050
+ @pulumi.getter(name="startTimes")
2051
+ def start_times(self) -> Sequence['outputs.GetInstanceAutomatedBackupConfigFixedFrequencyScheduleStartTimeResult']:
2052
+ """
2053
+ The start time of every automated backup in UTC.
2054
+ It must be set to the start of an hour. This field is required.
2055
+ """
2056
+ return pulumi.get(self, "start_times")
2057
+
2058
+
2059
+ @pulumi.output_type
2060
+ class GetInstanceAutomatedBackupConfigFixedFrequencyScheduleStartTimeResult(dict):
2061
+ def __init__(__self__, *,
2062
+ hours: builtins.int):
2063
+ """
2064
+ :param builtins.int hours: Hours of a day in 24 hour format. Must be greater than or equal to 0 and typically must be less than or equal to 23.
2065
+ An API may choose to allow the value "24:00:00" for scenarios like business closing time.
2066
+ """
2067
+ pulumi.set(__self__, "hours", hours)
2068
+
2069
+ @property
2070
+ @pulumi.getter
2071
+ def hours(self) -> builtins.int:
2072
+ """
2073
+ Hours of a day in 24 hour format. Must be greater than or equal to 0 and typically must be less than or equal to 23.
2074
+ An API may choose to allow the value "24:00:00" for scenarios like business closing time.
2075
+ """
2076
+ return pulumi.get(self, "hours")
2077
+
2078
+
1847
2079
  @pulumi.output_type
1848
2080
  class GetInstanceCrossInstanceReplicationConfigResult(dict):
1849
2081
  def __init__(__self__, *,
@@ -2281,6 +2513,26 @@ class GetInstanceEndpointConnectionPscAutoConnectionResult(dict):
2281
2513
  return pulumi.get(self, "service_attachment")
2282
2514
 
2283
2515
 
2516
+ @pulumi.output_type
2517
+ class GetInstanceGcsSourceResult(dict):
2518
+ def __init__(__self__, *,
2519
+ uris: Sequence[builtins.str]):
2520
+ """
2521
+ :param Sequence[builtins.str] uris: URIs of the GCS objects to import.
2522
+ Example: gs://bucket1/object1, gs//bucket2/folder2/object2
2523
+ """
2524
+ pulumi.set(__self__, "uris", uris)
2525
+
2526
+ @property
2527
+ @pulumi.getter
2528
+ def uris(self) -> Sequence[builtins.str]:
2529
+ """
2530
+ URIs of the GCS objects to import.
2531
+ Example: gs://bucket1/object1, gs//bucket2/folder2/object2
2532
+ """
2533
+ return pulumi.get(self, "uris")
2534
+
2535
+
2284
2536
  @pulumi.output_type
2285
2537
  class GetInstanceMaintenancePolicyResult(dict):
2286
2538
  def __init__(__self__, *,
@@ -2506,6 +2758,24 @@ class GetInstanceMaintenanceScheduleResult(dict):
2506
2758
  return pulumi.get(self, "start_time")
2507
2759
 
2508
2760
 
2761
+ @pulumi.output_type
2762
+ class GetInstanceManagedBackupSourceResult(dict):
2763
+ def __init__(__self__, *,
2764
+ backup: builtins.str):
2765
+ """
2766
+ :param builtins.str backup: Example: //memorystore.googleapis.com/projects/{project}/locations/{location}/backups/{backupId}. In this case, it assumes the backup is under memorystore.googleapis.com.
2767
+ """
2768
+ pulumi.set(__self__, "backup", backup)
2769
+
2770
+ @property
2771
+ @pulumi.getter
2772
+ def backup(self) -> builtins.str:
2773
+ """
2774
+ Example: //memorystore.googleapis.com/projects/{project}/locations/{location}/backups/{backupId}. In this case, it assumes the backup is under memorystore.googleapis.com.
2775
+ """
2776
+ return pulumi.get(self, "backup")
2777
+
2778
+
2509
2779
  @pulumi.output_type
2510
2780
  class GetInstanceNodeConfigResult(dict):
2511
2781
  def __init__(__self__, *,
@@ -376,17 +376,6 @@ class EngineModel(pulumi.CustomResource):
376
376
  regions: Optional[pulumi.Input[builtins.str]] = None,
377
377
  __props__=None):
378
378
  """
379
- Represents a machine learning solution.
380
-
381
- A model can have multiple versions, each of which is a deployed, trained model
382
- ready to receive prediction requests. The model itself is just a container.
383
-
384
- To get more information about Model, see:
385
-
386
- * [API documentation](https://cloud.google.com/ai-platform/prediction/docs/reference/rest/v1/projects.models)
387
- * How-to Guides
388
- * [Official Documentation](https://cloud.google.com/ai-platform/prediction/docs/deploying-models)
389
-
390
379
  ## Example Usage
391
380
 
392
381
  ### Ml Model Basic
@@ -468,17 +457,6 @@ class EngineModel(pulumi.CustomResource):
468
457
  args: Optional[EngineModelArgs] = None,
469
458
  opts: Optional[pulumi.ResourceOptions] = None):
470
459
  """
471
- Represents a machine learning solution.
472
-
473
- A model can have multiple versions, each of which is a deployed, trained model
474
- ready to receive prediction requests. The model itself is just a container.
475
-
476
- To get more information about Model, see:
477
-
478
- * [API documentation](https://cloud.google.com/ai-platform/prediction/docs/reference/rest/v1/projects.models)
479
- * How-to Guides
480
- * [Official Documentation](https://cloud.google.com/ai-platform/prediction/docs/deploying-models)
481
-
482
460
  ## Example Usage
483
461
 
484
462
  ### Ml Model Basic
@@ -6227,14 +6227,17 @@ class UptimeCheckConfigHttpCheckAcceptedResponseStatusCodeArgs:
6227
6227
 
6228
6228
  if not MYPY:
6229
6229
  class UptimeCheckConfigHttpCheckAuthInfoArgsDict(TypedDict):
6230
- password: pulumi.Input[builtins.str]
6230
+ username: pulumi.Input[builtins.str]
6231
+ """
6232
+ The username to authenticate.
6233
+ """
6234
+ password: NotRequired[pulumi.Input[builtins.str]]
6231
6235
  """
6232
6236
  The password to authenticate.
6233
- **Note**: This property is sensitive and will not be displayed in the plan.
6234
6237
  """
6235
- username: pulumi.Input[builtins.str]
6238
+ password_wo_version: NotRequired[pulumi.Input[builtins.str]]
6236
6239
  """
6237
- The username to authenticate.
6240
+ The password write-only version.
6238
6241
  """
6239
6242
  elif False:
6240
6243
  UptimeCheckConfigHttpCheckAuthInfoArgsDict: TypeAlias = Mapping[str, Any]
@@ -6242,40 +6245,55 @@ elif False:
6242
6245
  @pulumi.input_type
6243
6246
  class UptimeCheckConfigHttpCheckAuthInfoArgs:
6244
6247
  def __init__(__self__, *,
6245
- password: pulumi.Input[builtins.str],
6246
- username: pulumi.Input[builtins.str]):
6248
+ username: pulumi.Input[builtins.str],
6249
+ password: Optional[pulumi.Input[builtins.str]] = None,
6250
+ password_wo_version: Optional[pulumi.Input[builtins.str]] = None):
6247
6251
  """
6248
- :param pulumi.Input[builtins.str] password: The password to authenticate.
6249
- **Note**: This property is sensitive and will not be displayed in the plan.
6250
6252
  :param pulumi.Input[builtins.str] username: The username to authenticate.
6253
+ :param pulumi.Input[builtins.str] password: The password to authenticate.
6254
+ :param pulumi.Input[builtins.str] password_wo_version: The password write-only version.
6251
6255
  """
6252
- pulumi.set(__self__, "password", password)
6253
6256
  pulumi.set(__self__, "username", username)
6257
+ if password is not None:
6258
+ pulumi.set(__self__, "password", password)
6259
+ if password_wo_version is not None:
6260
+ pulumi.set(__self__, "password_wo_version", password_wo_version)
6261
+
6262
+ @property
6263
+ @pulumi.getter
6264
+ def username(self) -> pulumi.Input[builtins.str]:
6265
+ """
6266
+ The username to authenticate.
6267
+ """
6268
+ return pulumi.get(self, "username")
6269
+
6270
+ @username.setter
6271
+ def username(self, value: pulumi.Input[builtins.str]):
6272
+ pulumi.set(self, "username", value)
6254
6273
 
6255
6274
  @property
6256
6275
  @pulumi.getter
6257
- def password(self) -> pulumi.Input[builtins.str]:
6276
+ def password(self) -> Optional[pulumi.Input[builtins.str]]:
6258
6277
  """
6259
6278
  The password to authenticate.
6260
- **Note**: This property is sensitive and will not be displayed in the plan.
6261
6279
  """
6262
6280
  return pulumi.get(self, "password")
6263
6281
 
6264
6282
  @password.setter
6265
- def password(self, value: pulumi.Input[builtins.str]):
6283
+ def password(self, value: Optional[pulumi.Input[builtins.str]]):
6266
6284
  pulumi.set(self, "password", value)
6267
6285
 
6268
6286
  @property
6269
- @pulumi.getter
6270
- def username(self) -> pulumi.Input[builtins.str]:
6287
+ @pulumi.getter(name="passwordWoVersion")
6288
+ def password_wo_version(self) -> Optional[pulumi.Input[builtins.str]]:
6271
6289
  """
6272
- The username to authenticate.
6290
+ The password write-only version.
6273
6291
  """
6274
- return pulumi.get(self, "username")
6292
+ return pulumi.get(self, "password_wo_version")
6275
6293
 
6276
- @username.setter
6277
- def username(self, value: pulumi.Input[builtins.str]):
6278
- pulumi.set(self, "username", value)
6294
+ @password_wo_version.setter
6295
+ def password_wo_version(self, value: Optional[pulumi.Input[builtins.str]]):
6296
+ pulumi.set(self, "password_wo_version", value)
6279
6297
 
6280
6298
 
6281
6299
  if not MYPY:
@@ -4586,33 +4586,61 @@ class UptimeCheckConfigHttpCheckAcceptedResponseStatusCode(dict):
4586
4586
 
4587
4587
  @pulumi.output_type
4588
4588
  class UptimeCheckConfigHttpCheckAuthInfo(dict):
4589
+ @staticmethod
4590
+ def __key_warning(key: str):
4591
+ suggest = None
4592
+ if key == "passwordWoVersion":
4593
+ suggest = "password_wo_version"
4594
+
4595
+ if suggest:
4596
+ pulumi.log.warn(f"Key '{key}' not found in UptimeCheckConfigHttpCheckAuthInfo. Access the value via the '{suggest}' property getter instead.")
4597
+
4598
+ def __getitem__(self, key: str) -> Any:
4599
+ UptimeCheckConfigHttpCheckAuthInfo.__key_warning(key)
4600
+ return super().__getitem__(key)
4601
+
4602
+ def get(self, key: str, default = None) -> Any:
4603
+ UptimeCheckConfigHttpCheckAuthInfo.__key_warning(key)
4604
+ return super().get(key, default)
4605
+
4589
4606
  def __init__(__self__, *,
4590
- password: builtins.str,
4591
- username: builtins.str):
4607
+ username: builtins.str,
4608
+ password: Optional[builtins.str] = None,
4609
+ password_wo_version: Optional[builtins.str] = None):
4592
4610
  """
4593
- :param builtins.str password: The password to authenticate.
4594
- **Note**: This property is sensitive and will not be displayed in the plan.
4595
4611
  :param builtins.str username: The username to authenticate.
4612
+ :param builtins.str password: The password to authenticate.
4613
+ :param builtins.str password_wo_version: The password write-only version.
4596
4614
  """
4597
- pulumi.set(__self__, "password", password)
4598
4615
  pulumi.set(__self__, "username", username)
4616
+ if password is not None:
4617
+ pulumi.set(__self__, "password", password)
4618
+ if password_wo_version is not None:
4619
+ pulumi.set(__self__, "password_wo_version", password_wo_version)
4599
4620
 
4600
4621
  @property
4601
4622
  @pulumi.getter
4602
- def password(self) -> builtins.str:
4623
+ def username(self) -> builtins.str:
4624
+ """
4625
+ The username to authenticate.
4626
+ """
4627
+ return pulumi.get(self, "username")
4628
+
4629
+ @property
4630
+ @pulumi.getter
4631
+ def password(self) -> Optional[builtins.str]:
4603
4632
  """
4604
4633
  The password to authenticate.
4605
- **Note**: This property is sensitive and will not be displayed in the plan.
4606
4634
  """
4607
4635
  return pulumi.get(self, "password")
4608
4636
 
4609
4637
  @property
4610
- @pulumi.getter
4611
- def username(self) -> builtins.str:
4638
+ @pulumi.getter(name="passwordWoVersion")
4639
+ def password_wo_version(self) -> Optional[builtins.str]:
4612
4640
  """
4613
- The username to authenticate.
4641
+ The password write-only version.
4614
4642
  """
4615
- return pulumi.get(self, "username")
4643
+ return pulumi.get(self, "password_wo_version")
4616
4644
 
4617
4645
 
4618
4646
  @pulumi.output_type
@@ -746,6 +746,10 @@ class UptimeCheckConfig(pulumi.CustomResource):
746
746
  })
747
747
  ```
748
748
 
749
+ ## Ephemeral Attributes Reference
750
+
751
+ The following write-only attributes are supported:
752
+
749
753
  ## Import
750
754
 
751
755
  UptimeCheckConfig can be imported using any of these accepted formats:
@@ -999,6 +1003,10 @@ class UptimeCheckConfig(pulumi.CustomResource):
999
1003
  })
1000
1004
  ```
1001
1005
 
1006
+ ## Ephemeral Attributes Reference
1007
+
1008
+ The following write-only attributes are supported:
1009
+
1002
1010
  ## Import
1003
1011
 
1004
1012
  UptimeCheckConfig can be imported using any of these accepted formats: