pulumi-oci 1.33.0a1713903118__py3-none-any.whl → 1.33.0a1714072500__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_oci/__init__.py +11 -0
- pulumi_oci/clusterplacementgroups/__init__.py +12 -0
- pulumi_oci/clusterplacementgroups/_inputs.py +159 -0
- pulumi_oci/clusterplacementgroups/cluster_placement_group.py +843 -0
- pulumi_oci/clusterplacementgroups/get_cluster_placement_group.py +298 -0
- pulumi_oci/clusterplacementgroups/get_cluster_placement_groups.py +217 -0
- pulumi_oci/clusterplacementgroups/outputs.py +485 -0
- pulumi_oci/core/_inputs.py +116 -28
- pulumi_oci/core/boot_volume.py +49 -0
- pulumi_oci/core/compute_capacity_reservation.py +2 -0
- pulumi_oci/core/compute_cluster.py +2 -4
- pulumi_oci/core/drg_route_distribution.py +7 -7
- pulumi_oci/core/get_boot_volume.py +14 -1
- pulumi_oci/core/get_cnv_dns_resolver_association.py +2 -2
- pulumi_oci/core/get_instance.py +14 -1
- pulumi_oci/core/get_subnet.py +2 -2
- pulumi_oci/core/get_vcn.py +2 -2
- pulumi_oci/core/get_volume.py +14 -1
- pulumi_oci/core/get_volumes.py +21 -1
- pulumi_oci/core/instance.py +51 -4
- pulumi_oci/core/instance_configuration.py +8 -0
- pulumi_oci/core/outputs.py +302 -45
- pulumi_oci/core/volume.py +49 -0
- pulumi_oci/core/volume_attachment.py +28 -0
- pulumi_oci/core/volume_group.py +49 -0
- pulumi_oci/databasemigration/_inputs.py +20 -0
- pulumi_oci/databasemigration/connection.py +13 -0
- pulumi_oci/databasemigration/get_connection.py +3 -0
- pulumi_oci/databasemigration/get_migration.py +3 -0
- pulumi_oci/databasemigration/migration.py +13 -0
- pulumi_oci/databasemigration/outputs.py +68 -0
- pulumi_oci/networkloadbalancer/backend_set.py +49 -0
- pulumi_oci/networkloadbalancer/get_backend_set.py +14 -1
- pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py +49 -0
- pulumi_oci/networkloadbalancer/outputs.py +11 -0
- {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.33.0a1714072500.dist-info}/METADATA +1 -1
- {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.33.0a1714072500.dist-info}/RECORD +39 -33
- {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.33.0a1714072500.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.33.0a1714072500.dist-info}/top_level.txt +0 -0
@@ -46,6 +46,7 @@ class MigrationArgs:
|
|
46
46
|
:param pulumi.Input[str] agent_id: (Updatable) The OCID of the registered ODMS Agent. Only valid for Offline Logical Migrations.
|
47
47
|
:param pulumi.Input[str] csv_text: Database objects to exclude/include from migration in CSV format. The excludeObjects and includeObjects fields will be ignored if this field is not null.
|
48
48
|
:param pulumi.Input['MigrationDataTransferMediumDetailsArgs'] data_transfer_medium_details: (Updatable) Data Transfer Medium details for the Migration. If not specified, it will default to Database Link. Only one type of data transfer medium can be specified.
|
49
|
+
:param pulumi.Input['MigrationDataTransferMediumDetailsV2Args'] data_transfer_medium_details_v2: (Updatable) Optional additional properties for dump transfer in source or target host.
|
49
50
|
:param pulumi.Input['MigrationDatapumpSettingsArgs'] datapump_settings: (Updatable) Optional settings for Data Pump Export and Import jobs
|
50
51
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
51
52
|
:param pulumi.Input[str] display_name: (Updatable) Migration Display Name
|
@@ -194,6 +195,9 @@ class MigrationArgs:
|
|
194
195
|
@property
|
195
196
|
@pulumi.getter(name="dataTransferMediumDetailsV2")
|
196
197
|
def data_transfer_medium_details_v2(self) -> Optional[pulumi.Input['MigrationDataTransferMediumDetailsV2Args']]:
|
198
|
+
"""
|
199
|
+
(Updatable) Optional additional properties for dump transfer in source or target host.
|
200
|
+
"""
|
197
201
|
return pulumi.get(self, "data_transfer_medium_details_v2")
|
198
202
|
|
199
203
|
@data_transfer_medium_details_v2.setter
|
@@ -373,6 +377,7 @@ class _MigrationState:
|
|
373
377
|
:param pulumi.Input[str] credentials_secret_id: OCID of the Secret in the Oracle Cloud Infrastructure vault containing the Migration credentials. Used to store GoldenGate administrator user credentials.
|
374
378
|
:param pulumi.Input[str] csv_text: Database objects to exclude/include from migration in CSV format. The excludeObjects and includeObjects fields will be ignored if this field is not null.
|
375
379
|
:param pulumi.Input['MigrationDataTransferMediumDetailsArgs'] data_transfer_medium_details: (Updatable) Data Transfer Medium details for the Migration. If not specified, it will default to Database Link. Only one type of data transfer medium can be specified.
|
380
|
+
:param pulumi.Input['MigrationDataTransferMediumDetailsV2Args'] data_transfer_medium_details_v2: (Updatable) Optional additional properties for dump transfer in source or target host.
|
376
381
|
:param pulumi.Input['MigrationDatapumpSettingsArgs'] datapump_settings: (Updatable) Optional settings for Data Pump Export and Import jobs
|
377
382
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
378
383
|
:param pulumi.Input[str] display_name: (Updatable) Migration Display Name
|
@@ -530,6 +535,9 @@ class _MigrationState:
|
|
530
535
|
@property
|
531
536
|
@pulumi.getter(name="dataTransferMediumDetailsV2")
|
532
537
|
def data_transfer_medium_details_v2(self) -> Optional[pulumi.Input['MigrationDataTransferMediumDetailsV2Args']]:
|
538
|
+
"""
|
539
|
+
(Updatable) Optional additional properties for dump transfer in source or target host.
|
540
|
+
"""
|
533
541
|
return pulumi.get(self, "data_transfer_medium_details_v2")
|
534
542
|
|
535
543
|
@data_transfer_medium_details_v2.setter
|
@@ -1004,6 +1012,7 @@ class Migration(pulumi.CustomResource):
|
|
1004
1012
|
:param pulumi.Input[str] compartment_id: (Updatable) OCID of the compartment where the secret containing the credentials will be created.
|
1005
1013
|
:param pulumi.Input[str] csv_text: Database objects to exclude/include from migration in CSV format. The excludeObjects and includeObjects fields will be ignored if this field is not null.
|
1006
1014
|
:param pulumi.Input[pulumi.InputType['MigrationDataTransferMediumDetailsArgs']] data_transfer_medium_details: (Updatable) Data Transfer Medium details for the Migration. If not specified, it will default to Database Link. Only one type of data transfer medium can be specified.
|
1015
|
+
:param pulumi.Input[pulumi.InputType['MigrationDataTransferMediumDetailsV2Args']] data_transfer_medium_details_v2: (Updatable) Optional additional properties for dump transfer in source or target host.
|
1007
1016
|
:param pulumi.Input[pulumi.InputType['MigrationDatapumpSettingsArgs']] datapump_settings: (Updatable) Optional settings for Data Pump Export and Import jobs
|
1008
1017
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
1009
1018
|
:param pulumi.Input[str] display_name: (Updatable) Migration Display Name
|
@@ -1328,6 +1337,7 @@ class Migration(pulumi.CustomResource):
|
|
1328
1337
|
:param pulumi.Input[str] credentials_secret_id: OCID of the Secret in the Oracle Cloud Infrastructure vault containing the Migration credentials. Used to store GoldenGate administrator user credentials.
|
1329
1338
|
:param pulumi.Input[str] csv_text: Database objects to exclude/include from migration in CSV format. The excludeObjects and includeObjects fields will be ignored if this field is not null.
|
1330
1339
|
:param pulumi.Input[pulumi.InputType['MigrationDataTransferMediumDetailsArgs']] data_transfer_medium_details: (Updatable) Data Transfer Medium details for the Migration. If not specified, it will default to Database Link. Only one type of data transfer medium can be specified.
|
1340
|
+
:param pulumi.Input[pulumi.InputType['MigrationDataTransferMediumDetailsV2Args']] data_transfer_medium_details_v2: (Updatable) Optional additional properties for dump transfer in source or target host.
|
1331
1341
|
:param pulumi.Input[pulumi.InputType['MigrationDatapumpSettingsArgs']] datapump_settings: (Updatable) Optional settings for Data Pump Export and Import jobs
|
1332
1342
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
1333
1343
|
:param pulumi.Input[str] display_name: (Updatable) Migration Display Name
|
@@ -1437,6 +1447,9 @@ class Migration(pulumi.CustomResource):
|
|
1437
1447
|
@property
|
1438
1448
|
@pulumi.getter(name="dataTransferMediumDetailsV2")
|
1439
1449
|
def data_transfer_medium_details_v2(self) -> pulumi.Output['outputs.MigrationDataTransferMediumDetailsV2']:
|
1450
|
+
"""
|
1451
|
+
(Updatable) Optional additional properties for dump transfer in source or target host.
|
1452
|
+
"""
|
1440
1453
|
return pulumi.get(self, "data_transfer_medium_details_v2")
|
1441
1454
|
|
1442
1455
|
@property
|
@@ -1049,7 +1049,11 @@ class MigrationDataTransferMediumDetailsV2(dict):
|
|
1049
1049
|
secret_access_key: Optional[str] = None):
|
1050
1050
|
"""
|
1051
1051
|
:param str type: (Updatable) Migration type.
|
1052
|
+
:param str access_key_id: (Updatable) AWS access key credentials identifier Details: https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys
|
1052
1053
|
:param str name: (Updatable) Name of directory object in database
|
1054
|
+
:param 'MigrationDataTransferMediumDetailsV2ObjectStorageBucketArgs' object_storage_bucket: (Updatable) In lieu of a network database link, Oracle Cloud Infrastructure Object Storage bucket will be used to store Data Pump dump files for the migration. Additionally, it can be specified alongside a database link data transfer medium.
|
1055
|
+
:param str region: (Updatable) AWS region code where the S3 bucket is located. Region code should match the documented available regions: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html#concepts-available-regions
|
1056
|
+
:param str secret_access_key: (Updatable) AWS secret access key credentials Details: https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys
|
1053
1057
|
"""
|
1054
1058
|
pulumi.set(__self__, "type", type)
|
1055
1059
|
if access_key_id is not None:
|
@@ -1074,6 +1078,9 @@ class MigrationDataTransferMediumDetailsV2(dict):
|
|
1074
1078
|
@property
|
1075
1079
|
@pulumi.getter(name="accessKeyId")
|
1076
1080
|
def access_key_id(self) -> Optional[str]:
|
1081
|
+
"""
|
1082
|
+
(Updatable) AWS access key credentials identifier Details: https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys
|
1083
|
+
"""
|
1077
1084
|
return pulumi.get(self, "access_key_id")
|
1078
1085
|
|
1079
1086
|
@property
|
@@ -1087,16 +1094,25 @@ class MigrationDataTransferMediumDetailsV2(dict):
|
|
1087
1094
|
@property
|
1088
1095
|
@pulumi.getter(name="objectStorageBucket")
|
1089
1096
|
def object_storage_bucket(self) -> Optional['outputs.MigrationDataTransferMediumDetailsV2ObjectStorageBucket']:
|
1097
|
+
"""
|
1098
|
+
(Updatable) In lieu of a network database link, Oracle Cloud Infrastructure Object Storage bucket will be used to store Data Pump dump files for the migration. Additionally, it can be specified alongside a database link data transfer medium.
|
1099
|
+
"""
|
1090
1100
|
return pulumi.get(self, "object_storage_bucket")
|
1091
1101
|
|
1092
1102
|
@property
|
1093
1103
|
@pulumi.getter
|
1094
1104
|
def region(self) -> Optional[str]:
|
1105
|
+
"""
|
1106
|
+
(Updatable) AWS region code where the S3 bucket is located. Region code should match the documented available regions: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html#concepts-available-regions
|
1107
|
+
"""
|
1095
1108
|
return pulumi.get(self, "region")
|
1096
1109
|
|
1097
1110
|
@property
|
1098
1111
|
@pulumi.getter(name="secretAccessKey")
|
1099
1112
|
def secret_access_key(self) -> Optional[str]:
|
1113
|
+
"""
|
1114
|
+
(Updatable) AWS secret access key credentials Details: https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys
|
1115
|
+
"""
|
1100
1116
|
return pulumi.get(self, "secret_access_key")
|
1101
1117
|
|
1102
1118
|
|
@@ -1470,6 +1486,7 @@ class MigrationDumpTransferDetails(dict):
|
|
1470
1486
|
source: Optional['outputs.MigrationDumpTransferDetailsSource'] = None,
|
1471
1487
|
target: Optional['outputs.MigrationDumpTransferDetailsTarget'] = None):
|
1472
1488
|
"""
|
1489
|
+
:param str shared_storage_mount_target_id: Optional OCID of the shared storage mount target.
|
1473
1490
|
:param 'MigrationDumpTransferDetailsSourceArgs' source: (Updatable) Optional additional properties for dump transfer in source or target host. Default kind is CURL
|
1474
1491
|
:param 'MigrationDumpTransferDetailsTargetArgs' target: (Updatable) Optional additional properties for dump transfer in source or target host. Default kind is CURL
|
1475
1492
|
"""
|
@@ -1483,6 +1500,9 @@ class MigrationDumpTransferDetails(dict):
|
|
1483
1500
|
@property
|
1484
1501
|
@pulumi.getter(name="sharedStorageMountTargetId")
|
1485
1502
|
def shared_storage_mount_target_id(self) -> Optional[str]:
|
1503
|
+
"""
|
1504
|
+
Optional OCID of the shared storage mount target.
|
1505
|
+
"""
|
1486
1506
|
return pulumi.get(self, "shared_storage_mount_target_id")
|
1487
1507
|
|
1488
1508
|
@property
|
@@ -2989,6 +3009,7 @@ class GetConnectionsConnectionCollectionItemResult(dict):
|
|
2989
3009
|
:param Mapping[str, Any] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
2990
3010
|
:param str id: [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of a previously created Private Endpoint.
|
2991
3011
|
:param str lifecycle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
|
3012
|
+
:param str manual_database_sub_type: Database manual connection subtype. This value can only be specified for manual connections.
|
2992
3013
|
:param Sequence[str] nsg_ids: An array of Network Security Group OCIDs used to define network access for Connections.
|
2993
3014
|
:param Sequence['GetConnectionsConnectionCollectionItemPrivateEndpointArgs'] private_endpoints: Oracle Cloud Infrastructure Private Endpoint configuration details.
|
2994
3015
|
:param Sequence['GetConnectionsConnectionCollectionItemReplicationCredentialArgs'] replication_credentials: Database Administrator Credentials details.
|
@@ -3123,6 +3144,9 @@ class GetConnectionsConnectionCollectionItemResult(dict):
|
|
3123
3144
|
@property
|
3124
3145
|
@pulumi.getter(name="manualDatabaseSubType")
|
3125
3146
|
def manual_database_sub_type(self) -> str:
|
3147
|
+
"""
|
3148
|
+
Database manual connection subtype. This value can only be specified for manual connections.
|
3149
|
+
"""
|
3126
3150
|
return pulumi.get(self, "manual_database_sub_type")
|
3127
3151
|
|
3128
3152
|
@property
|
@@ -3716,7 +3740,11 @@ class GetMigrationDataTransferMediumDetailsV2Result(dict):
|
|
3716
3740
|
secret_access_key: str,
|
3717
3741
|
type: str):
|
3718
3742
|
"""
|
3743
|
+
:param str access_key_id: AWS access key credentials identifier Details: https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys
|
3719
3744
|
:param str name: Name of directory object in database
|
3745
|
+
:param Sequence['GetMigrationDataTransferMediumDetailsV2ObjectStorageBucketArgs'] object_storage_buckets: In lieu of a network database link, Oracle Cloud Infrastructure Object Storage bucket will be used to store Data Pump dump files for the migration. Additionally, it can be specified alongside a database link data transfer medium.
|
3746
|
+
:param str region: AWS region code where the S3 bucket is located. Region code should match the documented available regions: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html#concepts-available-regions
|
3747
|
+
:param str secret_access_key: AWS secret access key credentials Details: https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys
|
3720
3748
|
:param str type: Migration type.
|
3721
3749
|
"""
|
3722
3750
|
pulumi.set(__self__, "access_key_id", access_key_id)
|
@@ -3729,6 +3757,9 @@ class GetMigrationDataTransferMediumDetailsV2Result(dict):
|
|
3729
3757
|
@property
|
3730
3758
|
@pulumi.getter(name="accessKeyId")
|
3731
3759
|
def access_key_id(self) -> str:
|
3760
|
+
"""
|
3761
|
+
AWS access key credentials identifier Details: https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys
|
3762
|
+
"""
|
3732
3763
|
return pulumi.get(self, "access_key_id")
|
3733
3764
|
|
3734
3765
|
@property
|
@@ -3742,16 +3773,25 @@ class GetMigrationDataTransferMediumDetailsV2Result(dict):
|
|
3742
3773
|
@property
|
3743
3774
|
@pulumi.getter(name="objectStorageBuckets")
|
3744
3775
|
def object_storage_buckets(self) -> Sequence['outputs.GetMigrationDataTransferMediumDetailsV2ObjectStorageBucketResult']:
|
3776
|
+
"""
|
3777
|
+
In lieu of a network database link, Oracle Cloud Infrastructure Object Storage bucket will be used to store Data Pump dump files for the migration. Additionally, it can be specified alongside a database link data transfer medium.
|
3778
|
+
"""
|
3745
3779
|
return pulumi.get(self, "object_storage_buckets")
|
3746
3780
|
|
3747
3781
|
@property
|
3748
3782
|
@pulumi.getter
|
3749
3783
|
def region(self) -> str:
|
3784
|
+
"""
|
3785
|
+
AWS region code where the S3 bucket is located. Region code should match the documented available regions: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html#concepts-available-regions
|
3786
|
+
"""
|
3750
3787
|
return pulumi.get(self, "region")
|
3751
3788
|
|
3752
3789
|
@property
|
3753
3790
|
@pulumi.getter(name="secretAccessKey")
|
3754
3791
|
def secret_access_key(self) -> str:
|
3792
|
+
"""
|
3793
|
+
AWS secret access key credentials Details: https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys
|
3794
|
+
"""
|
3755
3795
|
return pulumi.get(self, "secret_access_key")
|
3756
3796
|
|
3757
3797
|
@property
|
@@ -4032,6 +4072,7 @@ class GetMigrationDumpTransferDetailResult(dict):
|
|
4032
4072
|
sources: Sequence['outputs.GetMigrationDumpTransferDetailSourceResult'],
|
4033
4073
|
targets: Sequence['outputs.GetMigrationDumpTransferDetailTargetResult']):
|
4034
4074
|
"""
|
4075
|
+
:param str shared_storage_mount_target_id: Optional OCID of the shared storage mount target.
|
4035
4076
|
:param Sequence['GetMigrationDumpTransferDetailSourceArgs'] sources: Optional additional properties for dump transfer in source or target host. Default kind is CURL
|
4036
4077
|
:param Sequence['GetMigrationDumpTransferDetailTargetArgs'] targets: Optional additional properties for dump transfer in source or target host. Default kind is CURL
|
4037
4078
|
"""
|
@@ -4042,6 +4083,9 @@ class GetMigrationDumpTransferDetailResult(dict):
|
|
4042
4083
|
@property
|
4043
4084
|
@pulumi.getter(name="sharedStorageMountTargetId")
|
4044
4085
|
def shared_storage_mount_target_id(self) -> str:
|
4086
|
+
"""
|
4087
|
+
Optional OCID of the shared storage mount target.
|
4088
|
+
"""
|
4045
4089
|
return pulumi.get(self, "shared_storage_mount_target_id")
|
4046
4090
|
|
4047
4091
|
@property
|
@@ -5043,6 +5087,7 @@ class GetMigrationsMigrationCollectionItemResult(dict):
|
|
5043
5087
|
:param str compartment_id: The ID of the compartment in which to list resources.
|
5044
5088
|
:param str credentials_secret_id: OCID of the Secret in the Oracle Cloud Infrastructure vault containing the Migration credentials. Used to store GoldenGate administrator user credentials.
|
5045
5089
|
:param Sequence['GetMigrationsMigrationCollectionItemDataTransferMediumDetailArgs'] data_transfer_medium_details: Data Transfer Medium details for the Migration.
|
5090
|
+
:param Sequence['GetMigrationsMigrationCollectionItemDataTransferMediumDetailsV2Args'] data_transfer_medium_details_v2s: Optional additional properties for dump transfer in source or target host.
|
5046
5091
|
:param Sequence['GetMigrationsMigrationCollectionItemDatapumpSettingArgs'] datapump_settings: Optional settings for Data Pump Export and Import jobs
|
5047
5092
|
:param Mapping[str, Any] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
5048
5093
|
:param str display_name: A filter to return only resources that match the entire display name given.
|
@@ -5146,6 +5191,9 @@ class GetMigrationsMigrationCollectionItemResult(dict):
|
|
5146
5191
|
@property
|
5147
5192
|
@pulumi.getter(name="dataTransferMediumDetailsV2s")
|
5148
5193
|
def data_transfer_medium_details_v2s(self) -> Sequence['outputs.GetMigrationsMigrationCollectionItemDataTransferMediumDetailsV2Result']:
|
5194
|
+
"""
|
5195
|
+
Optional additional properties for dump transfer in source or target host.
|
5196
|
+
"""
|
5149
5197
|
return pulumi.get(self, "data_transfer_medium_details_v2s")
|
5150
5198
|
|
5151
5199
|
@property
|
@@ -5488,7 +5536,11 @@ class GetMigrationsMigrationCollectionItemDataTransferMediumDetailsV2Result(dict
|
|
5488
5536
|
secret_access_key: str,
|
5489
5537
|
type: str):
|
5490
5538
|
"""
|
5539
|
+
:param str access_key_id: AWS access key credentials identifier Details: https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys
|
5491
5540
|
:param str name: Name of directory object in database
|
5541
|
+
:param Sequence['GetMigrationsMigrationCollectionItemDataTransferMediumDetailsV2ObjectStorageBucketArgs'] object_storage_buckets: In lieu of a network database link, Oracle Cloud Infrastructure Object Storage bucket will be used to store Data Pump dump files for the migration. Additionally, it can be specified alongside a database link data transfer medium.
|
5542
|
+
:param str region: AWS region code where the S3 bucket is located. Region code should match the documented available regions: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html#concepts-available-regions
|
5543
|
+
:param str secret_access_key: AWS secret access key credentials Details: https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys
|
5492
5544
|
:param str type: Migration type.
|
5493
5545
|
"""
|
5494
5546
|
pulumi.set(__self__, "access_key_id", access_key_id)
|
@@ -5501,6 +5553,9 @@ class GetMigrationsMigrationCollectionItemDataTransferMediumDetailsV2Result(dict
|
|
5501
5553
|
@property
|
5502
5554
|
@pulumi.getter(name="accessKeyId")
|
5503
5555
|
def access_key_id(self) -> str:
|
5556
|
+
"""
|
5557
|
+
AWS access key credentials identifier Details: https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys
|
5558
|
+
"""
|
5504
5559
|
return pulumi.get(self, "access_key_id")
|
5505
5560
|
|
5506
5561
|
@property
|
@@ -5514,16 +5569,25 @@ class GetMigrationsMigrationCollectionItemDataTransferMediumDetailsV2Result(dict
|
|
5514
5569
|
@property
|
5515
5570
|
@pulumi.getter(name="objectStorageBuckets")
|
5516
5571
|
def object_storage_buckets(self) -> Sequence['outputs.GetMigrationsMigrationCollectionItemDataTransferMediumDetailsV2ObjectStorageBucketResult']:
|
5572
|
+
"""
|
5573
|
+
In lieu of a network database link, Oracle Cloud Infrastructure Object Storage bucket will be used to store Data Pump dump files for the migration. Additionally, it can be specified alongside a database link data transfer medium.
|
5574
|
+
"""
|
5517
5575
|
return pulumi.get(self, "object_storage_buckets")
|
5518
5576
|
|
5519
5577
|
@property
|
5520
5578
|
@pulumi.getter
|
5521
5579
|
def region(self) -> str:
|
5580
|
+
"""
|
5581
|
+
AWS region code where the S3 bucket is located. Region code should match the documented available regions: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html#concepts-available-regions
|
5582
|
+
"""
|
5522
5583
|
return pulumi.get(self, "region")
|
5523
5584
|
|
5524
5585
|
@property
|
5525
5586
|
@pulumi.getter(name="secretAccessKey")
|
5526
5587
|
def secret_access_key(self) -> str:
|
5588
|
+
"""
|
5589
|
+
AWS secret access key credentials Details: https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys
|
5590
|
+
"""
|
5527
5591
|
return pulumi.get(self, "secret_access_key")
|
5528
5592
|
|
5529
5593
|
@property
|
@@ -5804,6 +5868,7 @@ class GetMigrationsMigrationCollectionItemDumpTransferDetailResult(dict):
|
|
5804
5868
|
sources: Sequence['outputs.GetMigrationsMigrationCollectionItemDumpTransferDetailSourceResult'],
|
5805
5869
|
targets: Sequence['outputs.GetMigrationsMigrationCollectionItemDumpTransferDetailTargetResult']):
|
5806
5870
|
"""
|
5871
|
+
:param str shared_storage_mount_target_id: Optional OCID of the shared storage mount target.
|
5807
5872
|
:param Sequence['GetMigrationsMigrationCollectionItemDumpTransferDetailSourceArgs'] sources: Optional additional properties for dump transfer in source or target host. Default kind is CURL
|
5808
5873
|
:param Sequence['GetMigrationsMigrationCollectionItemDumpTransferDetailTargetArgs'] targets: Optional additional properties for dump transfer in source or target host. Default kind is CURL
|
5809
5874
|
"""
|
@@ -5814,6 +5879,9 @@ class GetMigrationsMigrationCollectionItemDumpTransferDetailResult(dict):
|
|
5814
5879
|
@property
|
5815
5880
|
@pulumi.getter(name="sharedStorageMountTargetId")
|
5816
5881
|
def shared_storage_mount_target_id(self) -> str:
|
5882
|
+
"""
|
5883
|
+
Optional OCID of the shared storage mount target.
|
5884
|
+
"""
|
5817
5885
|
return pulumi.get(self, "shared_storage_mount_target_id")
|
5818
5886
|
|
5819
5887
|
@property
|
@@ -21,6 +21,7 @@ class BackendSetArgs:
|
|
21
21
|
policy: pulumi.Input[str],
|
22
22
|
ip_version: Optional[pulumi.Input[str]] = None,
|
23
23
|
is_fail_open: Optional[pulumi.Input[bool]] = None,
|
24
|
+
is_instant_failover_enabled: Optional[pulumi.Input[bool]] = None,
|
24
25
|
is_preserve_source: Optional[pulumi.Input[bool]] = None,
|
25
26
|
name: Optional[pulumi.Input[str]] = None):
|
26
27
|
"""
|
@@ -34,6 +35,7 @@ class BackendSetArgs:
|
|
34
35
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
35
36
|
:param pulumi.Input[str] ip_version: (Updatable) IP version associated with the backend set.
|
36
37
|
:param pulumi.Input[bool] is_fail_open: (Updatable) If enabled, the network load balancer will continue to distribute traffic in the configured distribution in the event all backends are unhealthy. The value is false by default.
|
38
|
+
:param pulumi.Input[bool] is_instant_failover_enabled: (Updatable) If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
|
37
39
|
:param pulumi.Input[bool] is_preserve_source: (Updatable) If this parameter is enabled, then the network load balancer preserves the source IP of the packet when it is forwarded to backends. Backends see the original source IP. If the isPreserveSourceDestination parameter is enabled for the network load balancer resource, then this parameter cannot be disabled. The value is true by default.
|
38
40
|
:param pulumi.Input[str] name: A user-friendly name for the backend set that must be unique and cannot be changed.
|
39
41
|
|
@@ -48,6 +50,8 @@ class BackendSetArgs:
|
|
48
50
|
pulumi.set(__self__, "ip_version", ip_version)
|
49
51
|
if is_fail_open is not None:
|
50
52
|
pulumi.set(__self__, "is_fail_open", is_fail_open)
|
53
|
+
if is_instant_failover_enabled is not None:
|
54
|
+
pulumi.set(__self__, "is_instant_failover_enabled", is_instant_failover_enabled)
|
51
55
|
if is_preserve_source is not None:
|
52
56
|
pulumi.set(__self__, "is_preserve_source", is_preserve_source)
|
53
57
|
if name is not None:
|
@@ -117,6 +121,18 @@ class BackendSetArgs:
|
|
117
121
|
def is_fail_open(self, value: Optional[pulumi.Input[bool]]):
|
118
122
|
pulumi.set(self, "is_fail_open", value)
|
119
123
|
|
124
|
+
@property
|
125
|
+
@pulumi.getter(name="isInstantFailoverEnabled")
|
126
|
+
def is_instant_failover_enabled(self) -> Optional[pulumi.Input[bool]]:
|
127
|
+
"""
|
128
|
+
(Updatable) If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
|
129
|
+
"""
|
130
|
+
return pulumi.get(self, "is_instant_failover_enabled")
|
131
|
+
|
132
|
+
@is_instant_failover_enabled.setter
|
133
|
+
def is_instant_failover_enabled(self, value: Optional[pulumi.Input[bool]]):
|
134
|
+
pulumi.set(self, "is_instant_failover_enabled", value)
|
135
|
+
|
120
136
|
@property
|
121
137
|
@pulumi.getter(name="isPreserveSource")
|
122
138
|
def is_preserve_source(self) -> Optional[pulumi.Input[bool]]:
|
@@ -153,6 +169,7 @@ class _BackendSetState:
|
|
153
169
|
health_checker: Optional[pulumi.Input['BackendSetHealthCheckerArgs']] = None,
|
154
170
|
ip_version: Optional[pulumi.Input[str]] = None,
|
155
171
|
is_fail_open: Optional[pulumi.Input[bool]] = None,
|
172
|
+
is_instant_failover_enabled: Optional[pulumi.Input[bool]] = None,
|
156
173
|
is_preserve_source: Optional[pulumi.Input[bool]] = None,
|
157
174
|
name: Optional[pulumi.Input[str]] = None,
|
158
175
|
network_load_balancer_id: Optional[pulumi.Input[str]] = None,
|
@@ -163,6 +180,7 @@ class _BackendSetState:
|
|
163
180
|
:param pulumi.Input['BackendSetHealthCheckerArgs'] health_checker: (Updatable) The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/Balance/Tasks/editinghealthcheck.htm).
|
164
181
|
:param pulumi.Input[str] ip_version: (Updatable) IP version associated with the backend set.
|
165
182
|
:param pulumi.Input[bool] is_fail_open: (Updatable) If enabled, the network load balancer will continue to distribute traffic in the configured distribution in the event all backends are unhealthy. The value is false by default.
|
183
|
+
:param pulumi.Input[bool] is_instant_failover_enabled: (Updatable) If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
|
166
184
|
:param pulumi.Input[bool] is_preserve_source: (Updatable) If this parameter is enabled, then the network load balancer preserves the source IP of the packet when it is forwarded to backends. Backends see the original source IP. If the isPreserveSourceDestination parameter is enabled for the network load balancer resource, then this parameter cannot be disabled. The value is true by default.
|
167
185
|
:param pulumi.Input[str] name: A user-friendly name for the backend set that must be unique and cannot be changed.
|
168
186
|
|
@@ -184,6 +202,8 @@ class _BackendSetState:
|
|
184
202
|
pulumi.set(__self__, "ip_version", ip_version)
|
185
203
|
if is_fail_open is not None:
|
186
204
|
pulumi.set(__self__, "is_fail_open", is_fail_open)
|
205
|
+
if is_instant_failover_enabled is not None:
|
206
|
+
pulumi.set(__self__, "is_instant_failover_enabled", is_instant_failover_enabled)
|
187
207
|
if is_preserve_source is not None:
|
188
208
|
pulumi.set(__self__, "is_preserve_source", is_preserve_source)
|
189
209
|
if name is not None:
|
@@ -241,6 +261,18 @@ class _BackendSetState:
|
|
241
261
|
def is_fail_open(self, value: Optional[pulumi.Input[bool]]):
|
242
262
|
pulumi.set(self, "is_fail_open", value)
|
243
263
|
|
264
|
+
@property
|
265
|
+
@pulumi.getter(name="isInstantFailoverEnabled")
|
266
|
+
def is_instant_failover_enabled(self) -> Optional[pulumi.Input[bool]]:
|
267
|
+
"""
|
268
|
+
(Updatable) If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
|
269
|
+
"""
|
270
|
+
return pulumi.get(self, "is_instant_failover_enabled")
|
271
|
+
|
272
|
+
@is_instant_failover_enabled.setter
|
273
|
+
def is_instant_failover_enabled(self, value: Optional[pulumi.Input[bool]]):
|
274
|
+
pulumi.set(self, "is_instant_failover_enabled", value)
|
275
|
+
|
244
276
|
@property
|
245
277
|
@pulumi.getter(name="isPreserveSource")
|
246
278
|
def is_preserve_source(self) -> Optional[pulumi.Input[bool]]:
|
@@ -306,6 +338,7 @@ class BackendSet(pulumi.CustomResource):
|
|
306
338
|
health_checker: Optional[pulumi.Input[pulumi.InputType['BackendSetHealthCheckerArgs']]] = None,
|
307
339
|
ip_version: Optional[pulumi.Input[str]] = None,
|
308
340
|
is_fail_open: Optional[pulumi.Input[bool]] = None,
|
341
|
+
is_instant_failover_enabled: Optional[pulumi.Input[bool]] = None,
|
309
342
|
is_preserve_source: Optional[pulumi.Input[bool]] = None,
|
310
343
|
name: Optional[pulumi.Input[str]] = None,
|
311
344
|
network_load_balancer_id: Optional[pulumi.Input[str]] = None,
|
@@ -346,6 +379,7 @@ class BackendSet(pulumi.CustomResource):
|
|
346
379
|
network_load_balancer_id=test_network_load_balancer["id"],
|
347
380
|
policy=backend_set_policy,
|
348
381
|
ip_version=backend_set_ip_version,
|
382
|
+
is_instant_failover_enabled=backend_set_is_instant_failover_enabled,
|
349
383
|
is_fail_open=backend_set_is_fail_open,
|
350
384
|
is_preserve_source=backend_set_is_preserve_source)
|
351
385
|
```
|
@@ -363,6 +397,7 @@ class BackendSet(pulumi.CustomResource):
|
|
363
397
|
:param pulumi.Input[pulumi.InputType['BackendSetHealthCheckerArgs']] health_checker: (Updatable) The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/Balance/Tasks/editinghealthcheck.htm).
|
364
398
|
:param pulumi.Input[str] ip_version: (Updatable) IP version associated with the backend set.
|
365
399
|
:param pulumi.Input[bool] is_fail_open: (Updatable) If enabled, the network load balancer will continue to distribute traffic in the configured distribution in the event all backends are unhealthy. The value is false by default.
|
400
|
+
:param pulumi.Input[bool] is_instant_failover_enabled: (Updatable) If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
|
366
401
|
:param pulumi.Input[bool] is_preserve_source: (Updatable) If this parameter is enabled, then the network load balancer preserves the source IP of the packet when it is forwarded to backends. Backends see the original source IP. If the isPreserveSourceDestination parameter is enabled for the network load balancer resource, then this parameter cannot be disabled. The value is true by default.
|
367
402
|
:param pulumi.Input[str] name: A user-friendly name for the backend set that must be unique and cannot be changed.
|
368
403
|
|
@@ -417,6 +452,7 @@ class BackendSet(pulumi.CustomResource):
|
|
417
452
|
network_load_balancer_id=test_network_load_balancer["id"],
|
418
453
|
policy=backend_set_policy,
|
419
454
|
ip_version=backend_set_ip_version,
|
455
|
+
is_instant_failover_enabled=backend_set_is_instant_failover_enabled,
|
420
456
|
is_fail_open=backend_set_is_fail_open,
|
421
457
|
is_preserve_source=backend_set_is_preserve_source)
|
422
458
|
```
|
@@ -447,6 +483,7 @@ class BackendSet(pulumi.CustomResource):
|
|
447
483
|
health_checker: Optional[pulumi.Input[pulumi.InputType['BackendSetHealthCheckerArgs']]] = None,
|
448
484
|
ip_version: Optional[pulumi.Input[str]] = None,
|
449
485
|
is_fail_open: Optional[pulumi.Input[bool]] = None,
|
486
|
+
is_instant_failover_enabled: Optional[pulumi.Input[bool]] = None,
|
450
487
|
is_preserve_source: Optional[pulumi.Input[bool]] = None,
|
451
488
|
name: Optional[pulumi.Input[str]] = None,
|
452
489
|
network_load_balancer_id: Optional[pulumi.Input[str]] = None,
|
@@ -465,6 +502,7 @@ class BackendSet(pulumi.CustomResource):
|
|
465
502
|
__props__.__dict__["health_checker"] = health_checker
|
466
503
|
__props__.__dict__["ip_version"] = ip_version
|
467
504
|
__props__.__dict__["is_fail_open"] = is_fail_open
|
505
|
+
__props__.__dict__["is_instant_failover_enabled"] = is_instant_failover_enabled
|
468
506
|
__props__.__dict__["is_preserve_source"] = is_preserve_source
|
469
507
|
__props__.__dict__["name"] = name
|
470
508
|
if network_load_balancer_id is None and not opts.urn:
|
@@ -488,6 +526,7 @@ class BackendSet(pulumi.CustomResource):
|
|
488
526
|
health_checker: Optional[pulumi.Input[pulumi.InputType['BackendSetHealthCheckerArgs']]] = None,
|
489
527
|
ip_version: Optional[pulumi.Input[str]] = None,
|
490
528
|
is_fail_open: Optional[pulumi.Input[bool]] = None,
|
529
|
+
is_instant_failover_enabled: Optional[pulumi.Input[bool]] = None,
|
491
530
|
is_preserve_source: Optional[pulumi.Input[bool]] = None,
|
492
531
|
name: Optional[pulumi.Input[str]] = None,
|
493
532
|
network_load_balancer_id: Optional[pulumi.Input[str]] = None,
|
@@ -503,6 +542,7 @@ class BackendSet(pulumi.CustomResource):
|
|
503
542
|
:param pulumi.Input[pulumi.InputType['BackendSetHealthCheckerArgs']] health_checker: (Updatable) The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/Balance/Tasks/editinghealthcheck.htm).
|
504
543
|
:param pulumi.Input[str] ip_version: (Updatable) IP version associated with the backend set.
|
505
544
|
:param pulumi.Input[bool] is_fail_open: (Updatable) If enabled, the network load balancer will continue to distribute traffic in the configured distribution in the event all backends are unhealthy. The value is false by default.
|
545
|
+
:param pulumi.Input[bool] is_instant_failover_enabled: (Updatable) If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
|
506
546
|
:param pulumi.Input[bool] is_preserve_source: (Updatable) If this parameter is enabled, then the network load balancer preserves the source IP of the packet when it is forwarded to backends. Backends see the original source IP. If the isPreserveSourceDestination parameter is enabled for the network load balancer resource, then this parameter cannot be disabled. The value is true by default.
|
507
547
|
:param pulumi.Input[str] name: A user-friendly name for the backend set that must be unique and cannot be changed.
|
508
548
|
|
@@ -524,6 +564,7 @@ class BackendSet(pulumi.CustomResource):
|
|
524
564
|
__props__.__dict__["health_checker"] = health_checker
|
525
565
|
__props__.__dict__["ip_version"] = ip_version
|
526
566
|
__props__.__dict__["is_fail_open"] = is_fail_open
|
567
|
+
__props__.__dict__["is_instant_failover_enabled"] = is_instant_failover_enabled
|
527
568
|
__props__.__dict__["is_preserve_source"] = is_preserve_source
|
528
569
|
__props__.__dict__["name"] = name
|
529
570
|
__props__.__dict__["network_load_balancer_id"] = network_load_balancer_id
|
@@ -562,6 +603,14 @@ class BackendSet(pulumi.CustomResource):
|
|
562
603
|
"""
|
563
604
|
return pulumi.get(self, "is_fail_open")
|
564
605
|
|
606
|
+
@property
|
607
|
+
@pulumi.getter(name="isInstantFailoverEnabled")
|
608
|
+
def is_instant_failover_enabled(self) -> pulumi.Output[bool]:
|
609
|
+
"""
|
610
|
+
(Updatable) If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
|
611
|
+
"""
|
612
|
+
return pulumi.get(self, "is_instant_failover_enabled")
|
613
|
+
|
565
614
|
@property
|
566
615
|
@pulumi.getter(name="isPreserveSource")
|
567
616
|
def is_preserve_source(self) -> pulumi.Output[bool]:
|
@@ -22,7 +22,7 @@ class GetBackendSetResult:
|
|
22
22
|
"""
|
23
23
|
A collection of values returned by getBackendSet.
|
24
24
|
"""
|
25
|
-
def __init__(__self__, backend_set_name=None, backends=None, health_checkers=None, id=None, ip_version=None, is_fail_open=None, is_preserve_source=None, name=None, network_load_balancer_id=None, policy=None):
|
25
|
+
def __init__(__self__, backend_set_name=None, backends=None, health_checkers=None, id=None, ip_version=None, is_fail_open=None, is_instant_failover_enabled=None, is_preserve_source=None, name=None, network_load_balancer_id=None, policy=None):
|
26
26
|
if backend_set_name and not isinstance(backend_set_name, str):
|
27
27
|
raise TypeError("Expected argument 'backend_set_name' to be a str")
|
28
28
|
pulumi.set(__self__, "backend_set_name", backend_set_name)
|
@@ -41,6 +41,9 @@ class GetBackendSetResult:
|
|
41
41
|
if is_fail_open and not isinstance(is_fail_open, bool):
|
42
42
|
raise TypeError("Expected argument 'is_fail_open' to be a bool")
|
43
43
|
pulumi.set(__self__, "is_fail_open", is_fail_open)
|
44
|
+
if is_instant_failover_enabled and not isinstance(is_instant_failover_enabled, bool):
|
45
|
+
raise TypeError("Expected argument 'is_instant_failover_enabled' to be a bool")
|
46
|
+
pulumi.set(__self__, "is_instant_failover_enabled", is_instant_failover_enabled)
|
44
47
|
if is_preserve_source and not isinstance(is_preserve_source, bool):
|
45
48
|
raise TypeError("Expected argument 'is_preserve_source' to be a bool")
|
46
49
|
pulumi.set(__self__, "is_preserve_source", is_preserve_source)
|
@@ -96,6 +99,14 @@ class GetBackendSetResult:
|
|
96
99
|
"""
|
97
100
|
return pulumi.get(self, "is_fail_open")
|
98
101
|
|
102
|
+
@property
|
103
|
+
@pulumi.getter(name="isInstantFailoverEnabled")
|
104
|
+
def is_instant_failover_enabled(self) -> bool:
|
105
|
+
"""
|
106
|
+
If enabled existing connections will be forwarded to an alternative healthy backend as soon as current backend becomes unhealthy.
|
107
|
+
"""
|
108
|
+
return pulumi.get(self, "is_instant_failover_enabled")
|
109
|
+
|
99
110
|
@property
|
100
111
|
@pulumi.getter(name="isPreserveSource")
|
101
112
|
def is_preserve_source(self) -> bool:
|
@@ -138,6 +149,7 @@ class AwaitableGetBackendSetResult(GetBackendSetResult):
|
|
138
149
|
id=self.id,
|
139
150
|
ip_version=self.ip_version,
|
140
151
|
is_fail_open=self.is_fail_open,
|
152
|
+
is_instant_failover_enabled=self.is_instant_failover_enabled,
|
141
153
|
is_preserve_source=self.is_preserve_source,
|
142
154
|
name=self.name,
|
143
155
|
network_load_balancer_id=self.network_load_balancer_id,
|
@@ -169,6 +181,7 @@ def get_backend_set(backend_set_name: Optional[str] = None,
|
|
169
181
|
id=pulumi.get(__ret__, 'id'),
|
170
182
|
ip_version=pulumi.get(__ret__, 'ip_version'),
|
171
183
|
is_fail_open=pulumi.get(__ret__, 'is_fail_open'),
|
184
|
+
is_instant_failover_enabled=pulumi.get(__ret__, 'is_instant_failover_enabled'),
|
172
185
|
is_preserve_source=pulumi.get(__ret__, 'is_preserve_source'),
|
173
186
|
name=pulumi.get(__ret__, 'name'),
|
174
187
|
network_load_balancer_id=pulumi.get(__ret__, 'network_load_balancer_id'),
|