pulumi-gcp 8.12.1a1734743939__py3-none-any.whl → 8.13.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.
- pulumi_gcp/__init__.py +43 -0
- pulumi_gcp/accesscontextmanager/_inputs.py +3 -3
- pulumi_gcp/accesscontextmanager/outputs.py +2 -2
- pulumi_gcp/artifactregistry/_inputs.py +83 -0
- pulumi_gcp/artifactregistry/get_repository.py +15 -4
- pulumi_gcp/artifactregistry/outputs.py +112 -0
- pulumi_gcp/artifactregistry/repository.py +93 -7
- pulumi_gcp/backupdisasterrecovery/get_backup.py +38 -2
- pulumi_gcp/backupdisasterrecovery/get_data_source.py +38 -2
- pulumi_gcp/backupdisasterrecovery/outputs.py +8 -8
- pulumi_gcp/bigquery/_inputs.py +369 -0
- pulumi_gcp/bigquery/dataset_access.py +61 -0
- pulumi_gcp/bigquery/job.py +6 -18
- pulumi_gcp/bigquery/outputs.py +350 -0
- pulumi_gcp/bigquery/table.py +47 -0
- pulumi_gcp/chronicle/__init__.py +10 -0
- pulumi_gcp/chronicle/_inputs.py +169 -0
- pulumi_gcp/chronicle/outputs.py +107 -0
- pulumi_gcp/chronicle/watchlist.py +776 -0
- pulumi_gcp/cloudrunv2/_inputs.py +6 -3
- pulumi_gcp/cloudrunv2/outputs.py +10 -6
- pulumi_gcp/composer/_inputs.py +80 -5
- pulumi_gcp/composer/outputs.py +111 -4
- pulumi_gcp/compute/_inputs.py +181 -87
- pulumi_gcp/compute/firewall_policy_association.py +50 -39
- pulumi_gcp/compute/get_network.py +17 -2
- pulumi_gcp/compute/get_subnetwork.py +18 -4
- pulumi_gcp/compute/network.py +39 -2
- pulumi_gcp/compute/outputs.py +157 -58
- pulumi_gcp/compute/region_network_endpoint_group.py +1 -1
- pulumi_gcp/compute/resize_request.py +26 -40
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/dataproc/batch.py +4 -18
- pulumi_gcp/datastream/_inputs.py +68 -0
- pulumi_gcp/datastream/outputs.py +41 -1
- pulumi_gcp/developerconnect/connection.py +58 -12
- pulumi_gcp/diagflow/_inputs.py +3 -3
- pulumi_gcp/diagflow/outputs.py +2 -2
- pulumi_gcp/filestore/backup.py +71 -3
- pulumi_gcp/firebase/hosting_custom_domain.py +4 -4
- pulumi_gcp/firestore/_inputs.py +3 -3
- pulumi_gcp/firestore/outputs.py +2 -2
- pulumi_gcp/gkehub/__init__.py +1 -0
- pulumi_gcp/gkehub/get_feature.py +226 -0
- pulumi_gcp/gkehub/outputs.py +1153 -0
- pulumi_gcp/gkeonprem/__init__.py +1 -0
- pulumi_gcp/gkeonprem/_inputs.py +2364 -0
- pulumi_gcp/gkeonprem/outputs.py +1780 -0
- pulumi_gcp/gkeonprem/vmware_admin_cluster.py +1715 -0
- pulumi_gcp/integrationconnectors/_inputs.py +6 -6
- pulumi_gcp/integrationconnectors/connection.py +7 -7
- pulumi_gcp/integrationconnectors/outputs.py +4 -4
- pulumi_gcp/kms/__init__.py +2 -0
- pulumi_gcp/kms/get_autokey_config.py +121 -0
- pulumi_gcp/kms/get_key_handle.py +185 -0
- pulumi_gcp/netapp/kmsconfig.py +2 -14
- pulumi_gcp/networkconnectivity/hub.py +108 -0
- pulumi_gcp/networkconnectivity/spoke.py +195 -0
- pulumi_gcp/networkmanagement/vpc_flow_logs_config.py +4 -0
- pulumi_gcp/networksecurity/__init__.py +2 -0
- pulumi_gcp/networksecurity/_inputs.py +78 -0
- pulumi_gcp/networksecurity/intercept_endpoint_group.py +723 -0
- pulumi_gcp/networksecurity/intercept_endpoint_group_association.py +815 -0
- pulumi_gcp/networksecurity/outputs.py +48 -0
- pulumi_gcp/oracledatabase/autonomous_database.py +2 -2
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/parallelstore/instance.py +149 -0
- pulumi_gcp/projects/usage_export_bucket.py +42 -110
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pubsub/subscription.py +6 -6
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/securesourcemanager/instance.py +4 -16
- pulumi_gcp/spanner/instance_iam_binding.py +14 -0
- pulumi_gcp/spanner/instance_iam_member.py +14 -0
- pulumi_gcp/sql/database_instance.py +7 -7
- pulumi_gcp/storage/__init__.py +1 -0
- pulumi_gcp/storage/_inputs.py +431 -0
- pulumi_gcp/storage/folder.py +483 -0
- pulumi_gcp/storage/outputs.py +363 -0
- pulumi_gcp/storage/transfer_job.py +84 -38
- pulumi_gcp/vertex/_inputs.py +26 -25
- pulumi_gcp/vertex/ai_endpoint.py +4 -4
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
- pulumi_gcp/vertex/outputs.py +15 -14
- pulumi_gcp/workstations/workstation.py +55 -1
- {pulumi_gcp-8.12.1a1734743939.dist-info → pulumi_gcp-8.13.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.12.1a1734743939.dist-info → pulumi_gcp-8.13.0.dist-info}/RECORD +90 -79
- {pulumi_gcp-8.12.1a1734743939.dist-info → pulumi_gcp-8.13.0.dist-info}/WHEEL +1 -1
- {pulumi_gcp-8.12.1a1734743939.dist-info → pulumi_gcp-8.13.0.dist-info}/top_level.txt +0 -0
@@ -22,29 +22,30 @@ __all__ = ['TransferJobArgs', 'TransferJob']
|
|
22
22
|
class TransferJobArgs:
|
23
23
|
def __init__(__self__, *,
|
24
24
|
description: pulumi.Input[str],
|
25
|
-
transfer_spec: pulumi.Input['TransferJobTransferSpecArgs'],
|
26
25
|
event_stream: Optional[pulumi.Input['TransferJobEventStreamArgs']] = None,
|
27
26
|
name: Optional[pulumi.Input[str]] = None,
|
28
27
|
notification_config: Optional[pulumi.Input['TransferJobNotificationConfigArgs']] = None,
|
29
28
|
project: Optional[pulumi.Input[str]] = None,
|
29
|
+
replication_spec: Optional[pulumi.Input['TransferJobReplicationSpecArgs']] = None,
|
30
30
|
schedule: Optional[pulumi.Input['TransferJobScheduleArgs']] = None,
|
31
|
-
status: Optional[pulumi.Input[str]] = None
|
31
|
+
status: Optional[pulumi.Input[str]] = None,
|
32
|
+
transfer_spec: Optional[pulumi.Input['TransferJobTransferSpecArgs']] = None):
|
32
33
|
"""
|
33
34
|
The set of arguments for constructing a TransferJob resource.
|
34
35
|
:param pulumi.Input[str] description: Unique description to identify the Transfer Job.
|
35
|
-
:param pulumi.Input['TransferJobTransferSpecArgs'] transfer_spec: Transfer specification. Structure documented below.
|
36
|
-
|
37
|
-
- - -
|
38
36
|
:param pulumi.Input['TransferJobEventStreamArgs'] event_stream: Specifies the Event-driven transfer options. Event-driven transfers listen to an event stream to transfer updated files. Structure documented below Either `event_stream` or `schedule` must be set.
|
39
37
|
:param pulumi.Input[str] name: The name of the Transfer Job. This name must start with "transferJobs/" prefix and end with a letter or a number, and should be no more than 128 characters ( `transferJobs/^(?!OPI)[A-Za-z0-9-._~]*[A-Za-z0-9]$` ). For transfers involving PosixFilesystem, this name must start with transferJobs/OPI specifically ( `transferJobs/OPI^[A-Za-z0-9-._~]*[A-Za-z0-9]$` ). For all other transfer types, this name must not start with transferJobs/OPI. Default the provider will assign a random unique name with `transferJobs/{{name}}` format, where `name` is a numeric value.
|
40
38
|
:param pulumi.Input['TransferJobNotificationConfigArgs'] notification_config: Notification configuration. This is not supported for transfers involving PosixFilesystem. Structure documented below.
|
41
39
|
:param pulumi.Input[str] project: The project in which the resource belongs. If it
|
42
40
|
is not provided, the provider project is used.
|
41
|
+
:param pulumi.Input['TransferJobReplicationSpecArgs'] replication_spec: Replication specification. Structure documented below. User should not configure `schedule`, `event_stream` with this argument. One of `transfer_spec`, or `replication_spec` must be specified.
|
42
|
+
|
43
|
+
- - -
|
43
44
|
:param pulumi.Input['TransferJobScheduleArgs'] schedule: Schedule specification defining when the Transfer Job should be scheduled to start, end and what time to run. Structure documented below. Either `schedule` or `event_stream` must be set.
|
44
45
|
:param pulumi.Input[str] status: Status of the job. Default: `ENABLED`. **NOTE: The effect of the new job status takes place during a subsequent job run. For example, if you change the job status from ENABLED to DISABLED, and an operation spawned by the transfer is running, the status change would not affect the current operation.**
|
46
|
+
:param pulumi.Input['TransferJobTransferSpecArgs'] transfer_spec: Transfer specification. Structure documented below. One of `transfer_spec`, or `replication_spec` can be specified.
|
45
47
|
"""
|
46
48
|
pulumi.set(__self__, "description", description)
|
47
|
-
pulumi.set(__self__, "transfer_spec", transfer_spec)
|
48
49
|
if event_stream is not None:
|
49
50
|
pulumi.set(__self__, "event_stream", event_stream)
|
50
51
|
if name is not None:
|
@@ -53,10 +54,14 @@ class TransferJobArgs:
|
|
53
54
|
pulumi.set(__self__, "notification_config", notification_config)
|
54
55
|
if project is not None:
|
55
56
|
pulumi.set(__self__, "project", project)
|
57
|
+
if replication_spec is not None:
|
58
|
+
pulumi.set(__self__, "replication_spec", replication_spec)
|
56
59
|
if schedule is not None:
|
57
60
|
pulumi.set(__self__, "schedule", schedule)
|
58
61
|
if status is not None:
|
59
62
|
pulumi.set(__self__, "status", status)
|
63
|
+
if transfer_spec is not None:
|
64
|
+
pulumi.set(__self__, "transfer_spec", transfer_spec)
|
60
65
|
|
61
66
|
@property
|
62
67
|
@pulumi.getter
|
@@ -70,20 +75,6 @@ class TransferJobArgs:
|
|
70
75
|
def description(self, value: pulumi.Input[str]):
|
71
76
|
pulumi.set(self, "description", value)
|
72
77
|
|
73
|
-
@property
|
74
|
-
@pulumi.getter(name="transferSpec")
|
75
|
-
def transfer_spec(self) -> pulumi.Input['TransferJobTransferSpecArgs']:
|
76
|
-
"""
|
77
|
-
Transfer specification. Structure documented below.
|
78
|
-
|
79
|
-
- - -
|
80
|
-
"""
|
81
|
-
return pulumi.get(self, "transfer_spec")
|
82
|
-
|
83
|
-
@transfer_spec.setter
|
84
|
-
def transfer_spec(self, value: pulumi.Input['TransferJobTransferSpecArgs']):
|
85
|
-
pulumi.set(self, "transfer_spec", value)
|
86
|
-
|
87
78
|
@property
|
88
79
|
@pulumi.getter(name="eventStream")
|
89
80
|
def event_stream(self) -> Optional[pulumi.Input['TransferJobEventStreamArgs']]:
|
@@ -133,6 +124,20 @@ class TransferJobArgs:
|
|
133
124
|
def project(self, value: Optional[pulumi.Input[str]]):
|
134
125
|
pulumi.set(self, "project", value)
|
135
126
|
|
127
|
+
@property
|
128
|
+
@pulumi.getter(name="replicationSpec")
|
129
|
+
def replication_spec(self) -> Optional[pulumi.Input['TransferJobReplicationSpecArgs']]:
|
130
|
+
"""
|
131
|
+
Replication specification. Structure documented below. User should not configure `schedule`, `event_stream` with this argument. One of `transfer_spec`, or `replication_spec` must be specified.
|
132
|
+
|
133
|
+
- - -
|
134
|
+
"""
|
135
|
+
return pulumi.get(self, "replication_spec")
|
136
|
+
|
137
|
+
@replication_spec.setter
|
138
|
+
def replication_spec(self, value: Optional[pulumi.Input['TransferJobReplicationSpecArgs']]):
|
139
|
+
pulumi.set(self, "replication_spec", value)
|
140
|
+
|
136
141
|
@property
|
137
142
|
@pulumi.getter
|
138
143
|
def schedule(self) -> Optional[pulumi.Input['TransferJobScheduleArgs']]:
|
@@ -157,6 +162,18 @@ class TransferJobArgs:
|
|
157
162
|
def status(self, value: Optional[pulumi.Input[str]]):
|
158
163
|
pulumi.set(self, "status", value)
|
159
164
|
|
165
|
+
@property
|
166
|
+
@pulumi.getter(name="transferSpec")
|
167
|
+
def transfer_spec(self) -> Optional[pulumi.Input['TransferJobTransferSpecArgs']]:
|
168
|
+
"""
|
169
|
+
Transfer specification. Structure documented below. One of `transfer_spec`, or `replication_spec` can be specified.
|
170
|
+
"""
|
171
|
+
return pulumi.get(self, "transfer_spec")
|
172
|
+
|
173
|
+
@transfer_spec.setter
|
174
|
+
def transfer_spec(self, value: Optional[pulumi.Input['TransferJobTransferSpecArgs']]):
|
175
|
+
pulumi.set(self, "transfer_spec", value)
|
176
|
+
|
160
177
|
|
161
178
|
@pulumi.input_type
|
162
179
|
class _TransferJobState:
|
@@ -169,6 +186,7 @@ class _TransferJobState:
|
|
169
186
|
name: Optional[pulumi.Input[str]] = None,
|
170
187
|
notification_config: Optional[pulumi.Input['TransferJobNotificationConfigArgs']] = None,
|
171
188
|
project: Optional[pulumi.Input[str]] = None,
|
189
|
+
replication_spec: Optional[pulumi.Input['TransferJobReplicationSpecArgs']] = None,
|
172
190
|
schedule: Optional[pulumi.Input['TransferJobScheduleArgs']] = None,
|
173
191
|
status: Optional[pulumi.Input[str]] = None,
|
174
192
|
transfer_spec: Optional[pulumi.Input['TransferJobTransferSpecArgs']] = None):
|
@@ -183,11 +201,12 @@ class _TransferJobState:
|
|
183
201
|
:param pulumi.Input['TransferJobNotificationConfigArgs'] notification_config: Notification configuration. This is not supported for transfers involving PosixFilesystem. Structure documented below.
|
184
202
|
:param pulumi.Input[str] project: The project in which the resource belongs. If it
|
185
203
|
is not provided, the provider project is used.
|
186
|
-
:param pulumi.Input['
|
187
|
-
:param pulumi.Input[str] status: Status of the job. Default: `ENABLED`. **NOTE: The effect of the new job status takes place during a subsequent job run. For example, if you change the job status from ENABLED to DISABLED, and an operation spawned by the transfer is running, the status change would not affect the current operation.**
|
188
|
-
:param pulumi.Input['TransferJobTransferSpecArgs'] transfer_spec: Transfer specification. Structure documented below.
|
204
|
+
:param pulumi.Input['TransferJobReplicationSpecArgs'] replication_spec: Replication specification. Structure documented below. User should not configure `schedule`, `event_stream` with this argument. One of `transfer_spec`, or `replication_spec` must be specified.
|
189
205
|
|
190
206
|
- - -
|
207
|
+
:param pulumi.Input['TransferJobScheduleArgs'] schedule: Schedule specification defining when the Transfer Job should be scheduled to start, end and what time to run. Structure documented below. Either `schedule` or `event_stream` must be set.
|
208
|
+
:param pulumi.Input[str] status: Status of the job. Default: `ENABLED`. **NOTE: The effect of the new job status takes place during a subsequent job run. For example, if you change the job status from ENABLED to DISABLED, and an operation spawned by the transfer is running, the status change would not affect the current operation.**
|
209
|
+
:param pulumi.Input['TransferJobTransferSpecArgs'] transfer_spec: Transfer specification. Structure documented below. One of `transfer_spec`, or `replication_spec` can be specified.
|
191
210
|
"""
|
192
211
|
if creation_time is not None:
|
193
212
|
pulumi.set(__self__, "creation_time", creation_time)
|
@@ -205,6 +224,8 @@ class _TransferJobState:
|
|
205
224
|
pulumi.set(__self__, "notification_config", notification_config)
|
206
225
|
if project is not None:
|
207
226
|
pulumi.set(__self__, "project", project)
|
227
|
+
if replication_spec is not None:
|
228
|
+
pulumi.set(__self__, "replication_spec", replication_spec)
|
208
229
|
if schedule is not None:
|
209
230
|
pulumi.set(__self__, "schedule", schedule)
|
210
231
|
if status is not None:
|
@@ -309,6 +330,20 @@ class _TransferJobState:
|
|
309
330
|
def project(self, value: Optional[pulumi.Input[str]]):
|
310
331
|
pulumi.set(self, "project", value)
|
311
332
|
|
333
|
+
@property
|
334
|
+
@pulumi.getter(name="replicationSpec")
|
335
|
+
def replication_spec(self) -> Optional[pulumi.Input['TransferJobReplicationSpecArgs']]:
|
336
|
+
"""
|
337
|
+
Replication specification. Structure documented below. User should not configure `schedule`, `event_stream` with this argument. One of `transfer_spec`, or `replication_spec` must be specified.
|
338
|
+
|
339
|
+
- - -
|
340
|
+
"""
|
341
|
+
return pulumi.get(self, "replication_spec")
|
342
|
+
|
343
|
+
@replication_spec.setter
|
344
|
+
def replication_spec(self, value: Optional[pulumi.Input['TransferJobReplicationSpecArgs']]):
|
345
|
+
pulumi.set(self, "replication_spec", value)
|
346
|
+
|
312
347
|
@property
|
313
348
|
@pulumi.getter
|
314
349
|
def schedule(self) -> Optional[pulumi.Input['TransferJobScheduleArgs']]:
|
@@ -337,9 +372,7 @@ class _TransferJobState:
|
|
337
372
|
@pulumi.getter(name="transferSpec")
|
338
373
|
def transfer_spec(self) -> Optional[pulumi.Input['TransferJobTransferSpecArgs']]:
|
339
374
|
"""
|
340
|
-
Transfer specification. Structure documented below.
|
341
|
-
|
342
|
-
- - -
|
375
|
+
Transfer specification. Structure documented below. One of `transfer_spec`, or `replication_spec` can be specified.
|
343
376
|
"""
|
344
377
|
return pulumi.get(self, "transfer_spec")
|
345
378
|
|
@@ -358,6 +391,7 @@ class TransferJob(pulumi.CustomResource):
|
|
358
391
|
name: Optional[pulumi.Input[str]] = None,
|
359
392
|
notification_config: Optional[pulumi.Input[Union['TransferJobNotificationConfigArgs', 'TransferJobNotificationConfigArgsDict']]] = None,
|
360
393
|
project: Optional[pulumi.Input[str]] = None,
|
394
|
+
replication_spec: Optional[pulumi.Input[Union['TransferJobReplicationSpecArgs', 'TransferJobReplicationSpecArgsDict']]] = None,
|
361
395
|
schedule: Optional[pulumi.Input[Union['TransferJobScheduleArgs', 'TransferJobScheduleArgsDict']]] = None,
|
362
396
|
status: Optional[pulumi.Input[str]] = None,
|
363
397
|
transfer_spec: Optional[pulumi.Input[Union['TransferJobTransferSpecArgs', 'TransferJobTransferSpecArgsDict']]] = None,
|
@@ -472,11 +506,12 @@ class TransferJob(pulumi.CustomResource):
|
|
472
506
|
:param pulumi.Input[Union['TransferJobNotificationConfigArgs', 'TransferJobNotificationConfigArgsDict']] notification_config: Notification configuration. This is not supported for transfers involving PosixFilesystem. Structure documented below.
|
473
507
|
:param pulumi.Input[str] project: The project in which the resource belongs. If it
|
474
508
|
is not provided, the provider project is used.
|
475
|
-
:param pulumi.Input[Union['
|
476
|
-
:param pulumi.Input[str] status: Status of the job. Default: `ENABLED`. **NOTE: The effect of the new job status takes place during a subsequent job run. For example, if you change the job status from ENABLED to DISABLED, and an operation spawned by the transfer is running, the status change would not affect the current operation.**
|
477
|
-
:param pulumi.Input[Union['TransferJobTransferSpecArgs', 'TransferJobTransferSpecArgsDict']] transfer_spec: Transfer specification. Structure documented below.
|
509
|
+
:param pulumi.Input[Union['TransferJobReplicationSpecArgs', 'TransferJobReplicationSpecArgsDict']] replication_spec: Replication specification. Structure documented below. User should not configure `schedule`, `event_stream` with this argument. One of `transfer_spec`, or `replication_spec` must be specified.
|
478
510
|
|
479
511
|
- - -
|
512
|
+
:param pulumi.Input[Union['TransferJobScheduleArgs', 'TransferJobScheduleArgsDict']] schedule: Schedule specification defining when the Transfer Job should be scheduled to start, end and what time to run. Structure documented below. Either `schedule` or `event_stream` must be set.
|
513
|
+
:param pulumi.Input[str] status: Status of the job. Default: `ENABLED`. **NOTE: The effect of the new job status takes place during a subsequent job run. For example, if you change the job status from ENABLED to DISABLED, and an operation spawned by the transfer is running, the status change would not affect the current operation.**
|
514
|
+
:param pulumi.Input[Union['TransferJobTransferSpecArgs', 'TransferJobTransferSpecArgsDict']] transfer_spec: Transfer specification. Structure documented below. One of `transfer_spec`, or `replication_spec` can be specified.
|
480
515
|
"""
|
481
516
|
...
|
482
517
|
@overload
|
@@ -606,6 +641,7 @@ class TransferJob(pulumi.CustomResource):
|
|
606
641
|
name: Optional[pulumi.Input[str]] = None,
|
607
642
|
notification_config: Optional[pulumi.Input[Union['TransferJobNotificationConfigArgs', 'TransferJobNotificationConfigArgsDict']]] = None,
|
608
643
|
project: Optional[pulumi.Input[str]] = None,
|
644
|
+
replication_spec: Optional[pulumi.Input[Union['TransferJobReplicationSpecArgs', 'TransferJobReplicationSpecArgsDict']]] = None,
|
609
645
|
schedule: Optional[pulumi.Input[Union['TransferJobScheduleArgs', 'TransferJobScheduleArgsDict']]] = None,
|
610
646
|
status: Optional[pulumi.Input[str]] = None,
|
611
647
|
transfer_spec: Optional[pulumi.Input[Union['TransferJobTransferSpecArgs', 'TransferJobTransferSpecArgsDict']]] = None,
|
@@ -625,10 +661,9 @@ class TransferJob(pulumi.CustomResource):
|
|
625
661
|
__props__.__dict__["name"] = name
|
626
662
|
__props__.__dict__["notification_config"] = notification_config
|
627
663
|
__props__.__dict__["project"] = project
|
664
|
+
__props__.__dict__["replication_spec"] = replication_spec
|
628
665
|
__props__.__dict__["schedule"] = schedule
|
629
666
|
__props__.__dict__["status"] = status
|
630
|
-
if transfer_spec is None and not opts.urn:
|
631
|
-
raise TypeError("Missing required property 'transfer_spec'")
|
632
667
|
__props__.__dict__["transfer_spec"] = transfer_spec
|
633
668
|
__props__.__dict__["creation_time"] = None
|
634
669
|
__props__.__dict__["deletion_time"] = None
|
@@ -651,6 +686,7 @@ class TransferJob(pulumi.CustomResource):
|
|
651
686
|
name: Optional[pulumi.Input[str]] = None,
|
652
687
|
notification_config: Optional[pulumi.Input[Union['TransferJobNotificationConfigArgs', 'TransferJobNotificationConfigArgsDict']]] = None,
|
653
688
|
project: Optional[pulumi.Input[str]] = None,
|
689
|
+
replication_spec: Optional[pulumi.Input[Union['TransferJobReplicationSpecArgs', 'TransferJobReplicationSpecArgsDict']]] = None,
|
654
690
|
schedule: Optional[pulumi.Input[Union['TransferJobScheduleArgs', 'TransferJobScheduleArgsDict']]] = None,
|
655
691
|
status: Optional[pulumi.Input[str]] = None,
|
656
692
|
transfer_spec: Optional[pulumi.Input[Union['TransferJobTransferSpecArgs', 'TransferJobTransferSpecArgsDict']]] = None) -> 'TransferJob':
|
@@ -670,11 +706,12 @@ class TransferJob(pulumi.CustomResource):
|
|
670
706
|
:param pulumi.Input[Union['TransferJobNotificationConfigArgs', 'TransferJobNotificationConfigArgsDict']] notification_config: Notification configuration. This is not supported for transfers involving PosixFilesystem. Structure documented below.
|
671
707
|
:param pulumi.Input[str] project: The project in which the resource belongs. If it
|
672
708
|
is not provided, the provider project is used.
|
673
|
-
:param pulumi.Input[Union['
|
674
|
-
:param pulumi.Input[str] status: Status of the job. Default: `ENABLED`. **NOTE: The effect of the new job status takes place during a subsequent job run. For example, if you change the job status from ENABLED to DISABLED, and an operation spawned by the transfer is running, the status change would not affect the current operation.**
|
675
|
-
:param pulumi.Input[Union['TransferJobTransferSpecArgs', 'TransferJobTransferSpecArgsDict']] transfer_spec: Transfer specification. Structure documented below.
|
709
|
+
:param pulumi.Input[Union['TransferJobReplicationSpecArgs', 'TransferJobReplicationSpecArgsDict']] replication_spec: Replication specification. Structure documented below. User should not configure `schedule`, `event_stream` with this argument. One of `transfer_spec`, or `replication_spec` must be specified.
|
676
710
|
|
677
711
|
- - -
|
712
|
+
:param pulumi.Input[Union['TransferJobScheduleArgs', 'TransferJobScheduleArgsDict']] schedule: Schedule specification defining when the Transfer Job should be scheduled to start, end and what time to run. Structure documented below. Either `schedule` or `event_stream` must be set.
|
713
|
+
:param pulumi.Input[str] status: Status of the job. Default: `ENABLED`. **NOTE: The effect of the new job status takes place during a subsequent job run. For example, if you change the job status from ENABLED to DISABLED, and an operation spawned by the transfer is running, the status change would not affect the current operation.**
|
714
|
+
:param pulumi.Input[Union['TransferJobTransferSpecArgs', 'TransferJobTransferSpecArgsDict']] transfer_spec: Transfer specification. Structure documented below. One of `transfer_spec`, or `replication_spec` can be specified.
|
678
715
|
"""
|
679
716
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
680
717
|
|
@@ -688,6 +725,7 @@ class TransferJob(pulumi.CustomResource):
|
|
688
725
|
__props__.__dict__["name"] = name
|
689
726
|
__props__.__dict__["notification_config"] = notification_config
|
690
727
|
__props__.__dict__["project"] = project
|
728
|
+
__props__.__dict__["replication_spec"] = replication_spec
|
691
729
|
__props__.__dict__["schedule"] = schedule
|
692
730
|
__props__.__dict__["status"] = status
|
693
731
|
__props__.__dict__["transfer_spec"] = transfer_spec
|
@@ -758,6 +796,16 @@ class TransferJob(pulumi.CustomResource):
|
|
758
796
|
"""
|
759
797
|
return pulumi.get(self, "project")
|
760
798
|
|
799
|
+
@property
|
800
|
+
@pulumi.getter(name="replicationSpec")
|
801
|
+
def replication_spec(self) -> pulumi.Output[Optional['outputs.TransferJobReplicationSpec']]:
|
802
|
+
"""
|
803
|
+
Replication specification. Structure documented below. User should not configure `schedule`, `event_stream` with this argument. One of `transfer_spec`, or `replication_spec` must be specified.
|
804
|
+
|
805
|
+
- - -
|
806
|
+
"""
|
807
|
+
return pulumi.get(self, "replication_spec")
|
808
|
+
|
761
809
|
@property
|
762
810
|
@pulumi.getter
|
763
811
|
def schedule(self) -> pulumi.Output[Optional['outputs.TransferJobSchedule']]:
|
@@ -776,11 +824,9 @@ class TransferJob(pulumi.CustomResource):
|
|
776
824
|
|
777
825
|
@property
|
778
826
|
@pulumi.getter(name="transferSpec")
|
779
|
-
def transfer_spec(self) -> pulumi.Output['outputs.TransferJobTransferSpec']:
|
827
|
+
def transfer_spec(self) -> pulumi.Output[Optional['outputs.TransferJobTransferSpec']]:
|
780
828
|
"""
|
781
|
-
Transfer specification. Structure documented below.
|
782
|
-
|
783
|
-
- - -
|
829
|
+
Transfer specification. Structure documented below. One of `transfer_spec`, or `replication_spec` can be specified.
|
784
830
|
"""
|
785
831
|
return pulumi.get(self, "transfer_spec")
|
786
832
|
|
pulumi_gcp/vertex/_inputs.py
CHANGED
@@ -3422,7 +3422,12 @@ class AiIndexIndexStatArgs:
|
|
3422
3422
|
|
3423
3423
|
if not MYPY:
|
3424
3424
|
class AiIndexMetadataArgsDict(TypedDict):
|
3425
|
-
|
3425
|
+
config: NotRequired[pulumi.Input['AiIndexMetadataConfigArgsDict']]
|
3426
|
+
"""
|
3427
|
+
The configuration of the Matching Engine Index.
|
3428
|
+
Structure is documented below.
|
3429
|
+
"""
|
3430
|
+
contents_delta_uri: NotRequired[pulumi.Input[str]]
|
3426
3431
|
"""
|
3427
3432
|
Allows inserting, updating or deleting the contents of the Matching Engine Index.
|
3428
3433
|
The string must be a valid Cloud Storage directory path. If this
|
@@ -3431,11 +3436,6 @@ if not MYPY:
|
|
3431
3436
|
The expected structure and format of the files this URI points to is
|
3432
3437
|
described at https://cloud.google.com/vertex-ai/docs/matching-engine/using-matching-engine#input-data-format
|
3433
3438
|
"""
|
3434
|
-
config: NotRequired[pulumi.Input['AiIndexMetadataConfigArgsDict']]
|
3435
|
-
"""
|
3436
|
-
The configuration of the Matching Engine Index.
|
3437
|
-
Structure is documented below.
|
3438
|
-
"""
|
3439
3439
|
is_complete_overwrite: NotRequired[pulumi.Input[bool]]
|
3440
3440
|
"""
|
3441
3441
|
If this field is set together with contentsDeltaUri when calling IndexService.UpdateIndex,
|
@@ -3447,30 +3447,44 @@ elif False:
|
|
3447
3447
|
@pulumi.input_type
|
3448
3448
|
class AiIndexMetadataArgs:
|
3449
3449
|
def __init__(__self__, *,
|
3450
|
-
contents_delta_uri: pulumi.Input[str],
|
3451
3450
|
config: Optional[pulumi.Input['AiIndexMetadataConfigArgs']] = None,
|
3451
|
+
contents_delta_uri: Optional[pulumi.Input[str]] = None,
|
3452
3452
|
is_complete_overwrite: Optional[pulumi.Input[bool]] = None):
|
3453
3453
|
"""
|
3454
|
+
:param pulumi.Input['AiIndexMetadataConfigArgs'] config: The configuration of the Matching Engine Index.
|
3455
|
+
Structure is documented below.
|
3454
3456
|
:param pulumi.Input[str] contents_delta_uri: Allows inserting, updating or deleting the contents of the Matching Engine Index.
|
3455
3457
|
The string must be a valid Cloud Storage directory path. If this
|
3456
3458
|
field is set when calling IndexService.UpdateIndex, then no other
|
3457
3459
|
Index field can be also updated as part of the same call.
|
3458
3460
|
The expected structure and format of the files this URI points to is
|
3459
3461
|
described at https://cloud.google.com/vertex-ai/docs/matching-engine/using-matching-engine#input-data-format
|
3460
|
-
:param pulumi.Input['AiIndexMetadataConfigArgs'] config: The configuration of the Matching Engine Index.
|
3461
|
-
Structure is documented below.
|
3462
3462
|
:param pulumi.Input[bool] is_complete_overwrite: If this field is set together with contentsDeltaUri when calling IndexService.UpdateIndex,
|
3463
3463
|
then existing content of the Index will be replaced by the data from the contentsDeltaUri.
|
3464
3464
|
"""
|
3465
|
-
pulumi.set(__self__, "contents_delta_uri", contents_delta_uri)
|
3466
3465
|
if config is not None:
|
3467
3466
|
pulumi.set(__self__, "config", config)
|
3467
|
+
if contents_delta_uri is not None:
|
3468
|
+
pulumi.set(__self__, "contents_delta_uri", contents_delta_uri)
|
3468
3469
|
if is_complete_overwrite is not None:
|
3469
3470
|
pulumi.set(__self__, "is_complete_overwrite", is_complete_overwrite)
|
3470
3471
|
|
3472
|
+
@property
|
3473
|
+
@pulumi.getter
|
3474
|
+
def config(self) -> Optional[pulumi.Input['AiIndexMetadataConfigArgs']]:
|
3475
|
+
"""
|
3476
|
+
The configuration of the Matching Engine Index.
|
3477
|
+
Structure is documented below.
|
3478
|
+
"""
|
3479
|
+
return pulumi.get(self, "config")
|
3480
|
+
|
3481
|
+
@config.setter
|
3482
|
+
def config(self, value: Optional[pulumi.Input['AiIndexMetadataConfigArgs']]):
|
3483
|
+
pulumi.set(self, "config", value)
|
3484
|
+
|
3471
3485
|
@property
|
3472
3486
|
@pulumi.getter(name="contentsDeltaUri")
|
3473
|
-
def contents_delta_uri(self) -> pulumi.Input[str]:
|
3487
|
+
def contents_delta_uri(self) -> Optional[pulumi.Input[str]]:
|
3474
3488
|
"""
|
3475
3489
|
Allows inserting, updating or deleting the contents of the Matching Engine Index.
|
3476
3490
|
The string must be a valid Cloud Storage directory path. If this
|
@@ -3482,22 +3496,9 @@ class AiIndexMetadataArgs:
|
|
3482
3496
|
return pulumi.get(self, "contents_delta_uri")
|
3483
3497
|
|
3484
3498
|
@contents_delta_uri.setter
|
3485
|
-
def contents_delta_uri(self, value: pulumi.Input[str]):
|
3499
|
+
def contents_delta_uri(self, value: Optional[pulumi.Input[str]]):
|
3486
3500
|
pulumi.set(self, "contents_delta_uri", value)
|
3487
3501
|
|
3488
|
-
@property
|
3489
|
-
@pulumi.getter
|
3490
|
-
def config(self) -> Optional[pulumi.Input['AiIndexMetadataConfigArgs']]:
|
3491
|
-
"""
|
3492
|
-
The configuration of the Matching Engine Index.
|
3493
|
-
Structure is documented below.
|
3494
|
-
"""
|
3495
|
-
return pulumi.get(self, "config")
|
3496
|
-
|
3497
|
-
@config.setter
|
3498
|
-
def config(self, value: Optional[pulumi.Input['AiIndexMetadataConfigArgs']]):
|
3499
|
-
pulumi.set(self, "config", value)
|
3500
|
-
|
3501
3502
|
@property
|
3502
3503
|
@pulumi.getter(name="isCompleteOverwrite")
|
3503
3504
|
def is_complete_overwrite(self) -> Optional[pulumi.Input[bool]]:
|
pulumi_gcp/vertex/ai_endpoint.py
CHANGED
@@ -730,7 +730,7 @@ class AiEndpoint(pulumi.CustomResource):
|
|
730
730
|
|
731
731
|
project = gcp.organizations.get_project()
|
732
732
|
endpoint = gcp.vertex.AiEndpoint("endpoint",
|
733
|
-
name="endpoint-
|
733
|
+
name="endpoint-name_89313",
|
734
734
|
display_name="sample-endpoint",
|
735
735
|
description="A sample vertex endpoint",
|
736
736
|
location="us-central1",
|
@@ -751,7 +751,7 @@ class AiEndpoint(pulumi.CustomResource):
|
|
751
751
|
import pulumi_gcp as gcp
|
752
752
|
|
753
753
|
endpoint = gcp.vertex.AiEndpoint("endpoint",
|
754
|
-
name="endpoint-
|
754
|
+
name="endpoint-name_60646",
|
755
755
|
display_name="sample-endpoint",
|
756
756
|
description="A sample vertex endpoint",
|
757
757
|
location="us-central1",
|
@@ -896,7 +896,7 @@ class AiEndpoint(pulumi.CustomResource):
|
|
896
896
|
|
897
897
|
project = gcp.organizations.get_project()
|
898
898
|
endpoint = gcp.vertex.AiEndpoint("endpoint",
|
899
|
-
name="endpoint-
|
899
|
+
name="endpoint-name_89313",
|
900
900
|
display_name="sample-endpoint",
|
901
901
|
description="A sample vertex endpoint",
|
902
902
|
location="us-central1",
|
@@ -917,7 +917,7 @@ class AiEndpoint(pulumi.CustomResource):
|
|
917
917
|
import pulumi_gcp as gcp
|
918
918
|
|
919
919
|
endpoint = gcp.vertex.AiEndpoint("endpoint",
|
920
|
-
name="endpoint-
|
920
|
+
name="endpoint-name_60646",
|
921
921
|
display_name="sample-endpoint",
|
922
922
|
description="A sample vertex endpoint",
|
923
923
|
location="us-central1",
|
@@ -618,8 +618,8 @@ class AiFeatureOnlineStoreFeatureview(pulumi.CustomResource):
|
|
618
618
|
|
619
619
|
test_project = gcp.organizations.get_project()
|
620
620
|
project = gcp.organizations.Project("project",
|
621
|
-
project_id="tf-
|
622
|
-
name="tf-
|
621
|
+
project_id="tf-test_9394",
|
622
|
+
name="tf-test_11380",
|
623
623
|
org_id="123456789",
|
624
624
|
billing_account="000000-0000000-0000000-000000",
|
625
625
|
deletion_policy="DELETE")
|
@@ -1063,8 +1063,8 @@ class AiFeatureOnlineStoreFeatureview(pulumi.CustomResource):
|
|
1063
1063
|
|
1064
1064
|
test_project = gcp.organizations.get_project()
|
1065
1065
|
project = gcp.organizations.Project("project",
|
1066
|
-
project_id="tf-
|
1067
|
-
name="tf-
|
1066
|
+
project_id="tf-test_9394",
|
1067
|
+
name="tf-test_11380",
|
1068
1068
|
org_id="123456789",
|
1069
1069
|
billing_account="000000-0000000-0000000-000000",
|
1070
1070
|
deletion_policy="DELETE")
|
pulumi_gcp/vertex/outputs.py
CHANGED
@@ -2868,30 +2868,40 @@ class AiIndexMetadata(dict):
|
|
2868
2868
|
return super().get(key, default)
|
2869
2869
|
|
2870
2870
|
def __init__(__self__, *,
|
2871
|
-
contents_delta_uri: str,
|
2872
2871
|
config: Optional['outputs.AiIndexMetadataConfig'] = None,
|
2872
|
+
contents_delta_uri: Optional[str] = None,
|
2873
2873
|
is_complete_overwrite: Optional[bool] = None):
|
2874
2874
|
"""
|
2875
|
+
:param 'AiIndexMetadataConfigArgs' config: The configuration of the Matching Engine Index.
|
2876
|
+
Structure is documented below.
|
2875
2877
|
:param str contents_delta_uri: Allows inserting, updating or deleting the contents of the Matching Engine Index.
|
2876
2878
|
The string must be a valid Cloud Storage directory path. If this
|
2877
2879
|
field is set when calling IndexService.UpdateIndex, then no other
|
2878
2880
|
Index field can be also updated as part of the same call.
|
2879
2881
|
The expected structure and format of the files this URI points to is
|
2880
2882
|
described at https://cloud.google.com/vertex-ai/docs/matching-engine/using-matching-engine#input-data-format
|
2881
|
-
:param 'AiIndexMetadataConfigArgs' config: The configuration of the Matching Engine Index.
|
2882
|
-
Structure is documented below.
|
2883
2883
|
:param bool is_complete_overwrite: If this field is set together with contentsDeltaUri when calling IndexService.UpdateIndex,
|
2884
2884
|
then existing content of the Index will be replaced by the data from the contentsDeltaUri.
|
2885
2885
|
"""
|
2886
|
-
pulumi.set(__self__, "contents_delta_uri", contents_delta_uri)
|
2887
2886
|
if config is not None:
|
2888
2887
|
pulumi.set(__self__, "config", config)
|
2888
|
+
if contents_delta_uri is not None:
|
2889
|
+
pulumi.set(__self__, "contents_delta_uri", contents_delta_uri)
|
2889
2890
|
if is_complete_overwrite is not None:
|
2890
2891
|
pulumi.set(__self__, "is_complete_overwrite", is_complete_overwrite)
|
2891
2892
|
|
2893
|
+
@property
|
2894
|
+
@pulumi.getter
|
2895
|
+
def config(self) -> Optional['outputs.AiIndexMetadataConfig']:
|
2896
|
+
"""
|
2897
|
+
The configuration of the Matching Engine Index.
|
2898
|
+
Structure is documented below.
|
2899
|
+
"""
|
2900
|
+
return pulumi.get(self, "config")
|
2901
|
+
|
2892
2902
|
@property
|
2893
2903
|
@pulumi.getter(name="contentsDeltaUri")
|
2894
|
-
def contents_delta_uri(self) -> str:
|
2904
|
+
def contents_delta_uri(self) -> Optional[str]:
|
2895
2905
|
"""
|
2896
2906
|
Allows inserting, updating or deleting the contents of the Matching Engine Index.
|
2897
2907
|
The string must be a valid Cloud Storage directory path. If this
|
@@ -2902,15 +2912,6 @@ class AiIndexMetadata(dict):
|
|
2902
2912
|
"""
|
2903
2913
|
return pulumi.get(self, "contents_delta_uri")
|
2904
2914
|
|
2905
|
-
@property
|
2906
|
-
@pulumi.getter
|
2907
|
-
def config(self) -> Optional['outputs.AiIndexMetadataConfig']:
|
2908
|
-
"""
|
2909
|
-
The configuration of the Matching Engine Index.
|
2910
|
-
Structure is documented below.
|
2911
|
-
"""
|
2912
|
-
return pulumi.get(self, "config")
|
2913
|
-
|
2914
2915
|
@property
|
2915
2916
|
@pulumi.getter(name="isCompleteOverwrite")
|
2916
2917
|
def is_complete_overwrite(self) -> Optional[bool]:
|