pulumi-gcp 7.17.0a1712145850__py3-none-any.whl → 7.17.0a1712402830__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/bigtable/_inputs.py +4 -4
- pulumi_gcp/bigtable/gc_policy.py +8 -0
- pulumi_gcp/bigtable/outputs.py +4 -4
- pulumi_gcp/billing/_inputs.py +4 -4
- pulumi_gcp/billing/outputs.py +4 -4
- pulumi_gcp/cloudfunctionsv2/_inputs.py +2 -2
- pulumi_gcp/cloudfunctionsv2/outputs.py +4 -4
- pulumi_gcp/cloudrunv2/service.py +7 -7
- pulumi_gcp/composer/_inputs.py +14 -4
- pulumi_gcp/composer/outputs.py +22 -10
- pulumi_gcp/compute/_inputs.py +40 -44
- pulumi_gcp/compute/autoscaler.py +14 -14
- pulumi_gcp/compute/outputs.py +62 -60
- pulumi_gcp/compute/region_autoscaler.py +14 -14
- pulumi_gcp/container/_inputs.py +148 -16
- pulumi_gcp/container/outputs.py +148 -16
- pulumi_gcp/dataloss/_inputs.py +6 -6
- pulumi_gcp/dataloss/outputs.py +6 -6
- pulumi_gcp/dataproc/_inputs.py +14 -10
- pulumi_gcp/dataproc/outputs.py +14 -10
- pulumi_gcp/iam/_inputs.py +76 -0
- pulumi_gcp/iam/outputs.py +76 -0
- pulumi_gcp/iam/workforce_pool_provider.py +35 -0
- pulumi_gcp/iam/workload_identity_pool_provider.py +140 -0
- pulumi_gcp/logging/_inputs.py +8 -8
- pulumi_gcp/logging/metric.py +7 -7
- pulumi_gcp/logging/outputs.py +8 -8
- pulumi_gcp/monitoring/_inputs.py +2 -2
- pulumi_gcp/monitoring/outputs.py +2 -2
- pulumi_gcp/monitoring/slo.py +4 -4
- pulumi_gcp/networkservices/_inputs.py +6 -6
- pulumi_gcp/networkservices/outputs.py +6 -6
- pulumi_gcp/serviceusage/consumer_quota_override.py +7 -7
- pulumi_gcp/sql/_inputs.py +20 -2
- pulumi_gcp/sql/database_instance.py +2 -2
- pulumi_gcp/sql/outputs.py +20 -2
- pulumi_gcp/storage/_inputs.py +2 -2
- pulumi_gcp/storage/outputs.py +2 -2
- pulumi_gcp/vertex/_inputs.py +6 -8
- pulumi_gcp/vertex/outputs.py +8 -10
- {pulumi_gcp-7.17.0a1712145850.dist-info → pulumi_gcp-7.17.0a1712402830.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.17.0a1712145850.dist-info → pulumi_gcp-7.17.0a1712402830.dist-info}/RECORD +44 -44
- {pulumi_gcp-7.17.0a1712145850.dist-info → pulumi_gcp-7.17.0a1712402830.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.17.0a1712145850.dist-info → pulumi_gcp-7.17.0a1712402830.dist-info}/top_level.txt +0 -0
pulumi_gcp/bigtable/_inputs.py
CHANGED
@@ -122,8 +122,8 @@ class InstanceClusterArgs:
|
|
122
122
|
`bigtable.Instance` resource. If these values are changing, use a new
|
123
123
|
`cluster_id`.
|
124
124
|
:param pulumi.Input[int] num_nodes: The number of nodes in the cluster.
|
125
|
-
If no value is set, Cloud Bigtable automatically allocates nodes based on your data footprint and optimized for 50
|
126
|
-
:param pulumi.Input[str] state:
|
125
|
+
If no value is set, Cloud Bigtable automatically allocates nodes based on your data footprint and optimized for 50% storage utilization.
|
126
|
+
:param pulumi.Input[str] state: describes the current state of the cluster.
|
127
127
|
:param pulumi.Input[str] storage_type: The storage type to use. One of `"SSD"` or
|
128
128
|
`"HDD"`. Defaults to `"SSD"`.
|
129
129
|
:param pulumi.Input[str] zone: The zone to create the Cloud Bigtable cluster in. If it not
|
@@ -194,7 +194,7 @@ class InstanceClusterArgs:
|
|
194
194
|
def num_nodes(self) -> Optional[pulumi.Input[int]]:
|
195
195
|
"""
|
196
196
|
The number of nodes in the cluster.
|
197
|
-
If no value is set, Cloud Bigtable automatically allocates nodes based on your data footprint and optimized for 50
|
197
|
+
If no value is set, Cloud Bigtable automatically allocates nodes based on your data footprint and optimized for 50% storage utilization.
|
198
198
|
"""
|
199
199
|
return pulumi.get(self, "num_nodes")
|
200
200
|
|
@@ -206,7 +206,7 @@ class InstanceClusterArgs:
|
|
206
206
|
@pulumi.getter
|
207
207
|
def state(self) -> Optional[pulumi.Input[str]]:
|
208
208
|
"""
|
209
|
-
|
209
|
+
describes the current state of the cluster.
|
210
210
|
"""
|
211
211
|
return pulumi.get(self, "state")
|
212
212
|
|
pulumi_gcp/bigtable/gc_policy.py
CHANGED
@@ -475,6 +475,10 @@ class GCPolicy(pulumi.CustomResource):
|
|
475
475
|
<!--End PulumiCodeChooser -->
|
476
476
|
This is equivalent to running the following `cbt` command:
|
477
477
|
|
478
|
+
## Import
|
479
|
+
|
480
|
+
This resource does not support import.
|
481
|
+
|
478
482
|
:param str resource_name: The name of the resource.
|
479
483
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
480
484
|
:param pulumi.Input[str] column_family: The name of the column family.
|
@@ -624,6 +628,10 @@ class GCPolicy(pulumi.CustomResource):
|
|
624
628
|
<!--End PulumiCodeChooser -->
|
625
629
|
This is equivalent to running the following `cbt` command:
|
626
630
|
|
631
|
+
## Import
|
632
|
+
|
633
|
+
This resource does not support import.
|
634
|
+
|
627
635
|
:param str resource_name: The name of the resource.
|
628
636
|
:param GCPolicyArgs args: The arguments to use to populate this resource's properties.
|
629
637
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
pulumi_gcp/bigtable/outputs.py
CHANGED
@@ -133,8 +133,8 @@ class InstanceCluster(dict):
|
|
133
133
|
`bigtable.Instance` resource. If these values are changing, use a new
|
134
134
|
`cluster_id`.
|
135
135
|
:param int num_nodes: The number of nodes in the cluster.
|
136
|
-
If no value is set, Cloud Bigtable automatically allocates nodes based on your data footprint and optimized for 50
|
137
|
-
:param str state:
|
136
|
+
If no value is set, Cloud Bigtable automatically allocates nodes based on your data footprint and optimized for 50% storage utilization.
|
137
|
+
:param str state: describes the current state of the cluster.
|
138
138
|
:param str storage_type: The storage type to use. One of `"SSD"` or
|
139
139
|
`"HDD"`. Defaults to `"SSD"`.
|
140
140
|
:param str zone: The zone to create the Cloud Bigtable cluster in. If it not
|
@@ -193,7 +193,7 @@ class InstanceCluster(dict):
|
|
193
193
|
def num_nodes(self) -> Optional[int]:
|
194
194
|
"""
|
195
195
|
The number of nodes in the cluster.
|
196
|
-
If no value is set, Cloud Bigtable automatically allocates nodes based on your data footprint and optimized for 50
|
196
|
+
If no value is set, Cloud Bigtable automatically allocates nodes based on your data footprint and optimized for 50% storage utilization.
|
197
197
|
"""
|
198
198
|
return pulumi.get(self, "num_nodes")
|
199
199
|
|
@@ -201,7 +201,7 @@ class InstanceCluster(dict):
|
|
201
201
|
@pulumi.getter
|
202
202
|
def state(self) -> Optional[str]:
|
203
203
|
"""
|
204
|
-
|
204
|
+
describes the current state of the cluster.
|
205
205
|
"""
|
206
206
|
return pulumi.get(self, "state")
|
207
207
|
|
pulumi_gcp/billing/_inputs.py
CHANGED
@@ -199,7 +199,7 @@ class BudgetAmountArgs:
|
|
199
199
|
last_period_amount: Optional[pulumi.Input[bool]] = None,
|
200
200
|
specified_amount: Optional[pulumi.Input['BudgetAmountSpecifiedAmountArgs']] = None):
|
201
201
|
"""
|
202
|
-
:param pulumi.Input[bool] last_period_amount: Configures a budget amount that is automatically set to 100
|
202
|
+
:param pulumi.Input[bool] last_period_amount: Configures a budget amount that is automatically set to 100% of
|
203
203
|
last period's spend.
|
204
204
|
Boolean. Set value to true to use. Do not set to false, instead
|
205
205
|
use the `specified_amount` block.
|
@@ -217,7 +217,7 @@ class BudgetAmountArgs:
|
|
217
217
|
@pulumi.getter(name="lastPeriodAmount")
|
218
218
|
def last_period_amount(self) -> Optional[pulumi.Input[bool]]:
|
219
219
|
"""
|
220
|
-
Configures a budget amount that is automatically set to 100
|
220
|
+
Configures a budget amount that is automatically set to 100% of
|
221
221
|
last period's spend.
|
222
222
|
Boolean. Set value to true to use. Do not set to false, instead
|
223
223
|
use the `specified_amount` block.
|
@@ -687,7 +687,7 @@ class BudgetThresholdRuleArgs:
|
|
687
687
|
spend_basis: Optional[pulumi.Input[str]] = None):
|
688
688
|
"""
|
689
689
|
:param pulumi.Input[float] threshold_percent: Send an alert when this threshold is exceeded. This is a
|
690
|
-
1.0-based percentage, so 0.5 = 50
|
690
|
+
1.0-based percentage, so 0.5 = 50%. Must be >= 0.
|
691
691
|
:param pulumi.Input[str] spend_basis: The type of basis used to determine if spend has passed
|
692
692
|
the threshold.
|
693
693
|
Default value is `CURRENT_SPEND`.
|
@@ -702,7 +702,7 @@ class BudgetThresholdRuleArgs:
|
|
702
702
|
def threshold_percent(self) -> pulumi.Input[float]:
|
703
703
|
"""
|
704
704
|
Send an alert when this threshold is exceeded. This is a
|
705
|
-
1.0-based percentage, so 0.5 = 50
|
705
|
+
1.0-based percentage, so 0.5 = 50%. Must be >= 0.
|
706
706
|
"""
|
707
707
|
return pulumi.get(self, "threshold_percent")
|
708
708
|
|
pulumi_gcp/billing/outputs.py
CHANGED
@@ -202,7 +202,7 @@ class BudgetAmount(dict):
|
|
202
202
|
last_period_amount: Optional[bool] = None,
|
203
203
|
specified_amount: Optional['outputs.BudgetAmountSpecifiedAmount'] = None):
|
204
204
|
"""
|
205
|
-
:param bool last_period_amount: Configures a budget amount that is automatically set to 100
|
205
|
+
:param bool last_period_amount: Configures a budget amount that is automatically set to 100% of
|
206
206
|
last period's spend.
|
207
207
|
Boolean. Set value to true to use. Do not set to false, instead
|
208
208
|
use the `specified_amount` block.
|
@@ -220,7 +220,7 @@ class BudgetAmount(dict):
|
|
220
220
|
@pulumi.getter(name="lastPeriodAmount")
|
221
221
|
def last_period_amount(self) -> Optional[bool]:
|
222
222
|
"""
|
223
|
-
Configures a budget amount that is automatically set to 100
|
223
|
+
Configures a budget amount that is automatically set to 100% of
|
224
224
|
last period's spend.
|
225
225
|
Boolean. Set value to true to use. Do not set to false, instead
|
226
226
|
use the `specified_amount` block.
|
@@ -682,7 +682,7 @@ class BudgetThresholdRule(dict):
|
|
682
682
|
spend_basis: Optional[str] = None):
|
683
683
|
"""
|
684
684
|
:param float threshold_percent: Send an alert when this threshold is exceeded. This is a
|
685
|
-
1.0-based percentage, so 0.5 = 50
|
685
|
+
1.0-based percentage, so 0.5 = 50%. Must be >= 0.
|
686
686
|
:param str spend_basis: The type of basis used to determine if spend has passed
|
687
687
|
the threshold.
|
688
688
|
Default value is `CURRENT_SPEND`.
|
@@ -697,7 +697,7 @@ class BudgetThresholdRule(dict):
|
|
697
697
|
def threshold_percent(self) -> float:
|
698
698
|
"""
|
699
699
|
Send an alert when this threshold is exceeded. This is a
|
700
|
-
1.0-based percentage, so 0.5 = 50
|
700
|
+
1.0-based percentage, so 0.5 = 50%. Must be >= 0.
|
701
701
|
"""
|
702
702
|
return pulumi.get(self, "threshold_percent")
|
703
703
|
|
@@ -687,7 +687,7 @@ class FunctionServiceConfigArgs:
|
|
687
687
|
vpc_connector: Optional[pulumi.Input[str]] = None,
|
688
688
|
vpc_connector_egress_settings: Optional[pulumi.Input[str]] = None):
|
689
689
|
"""
|
690
|
-
:param pulumi.Input[bool] all_traffic_on_latest_revision: Whether 100
|
690
|
+
:param pulumi.Input[bool] all_traffic_on_latest_revision: Whether 100% of traffic is routed to the latest revision. Defaults to true.
|
691
691
|
:param pulumi.Input[str] available_cpu: The number of CPUs used in a single container instance. Default value is calculated from available memory.
|
692
692
|
:param pulumi.Input[str] available_memory: The amount of memory available for a function.
|
693
693
|
Defaults to 256M. Supported units are k, M, G, Mi, Gi. If no unit is
|
@@ -757,7 +757,7 @@ class FunctionServiceConfigArgs:
|
|
757
757
|
@pulumi.getter(name="allTrafficOnLatestRevision")
|
758
758
|
def all_traffic_on_latest_revision(self) -> Optional[pulumi.Input[bool]]:
|
759
759
|
"""
|
760
|
-
Whether 100
|
760
|
+
Whether 100% of traffic is routed to the latest revision. Defaults to true.
|
761
761
|
"""
|
762
762
|
return pulumi.get(self, "all_traffic_on_latest_revision")
|
763
763
|
|
@@ -699,7 +699,7 @@ class FunctionServiceConfig(dict):
|
|
699
699
|
vpc_connector: Optional[str] = None,
|
700
700
|
vpc_connector_egress_settings: Optional[str] = None):
|
701
701
|
"""
|
702
|
-
:param bool all_traffic_on_latest_revision: Whether 100
|
702
|
+
:param bool all_traffic_on_latest_revision: Whether 100% of traffic is routed to the latest revision. Defaults to true.
|
703
703
|
:param str available_cpu: The number of CPUs used in a single container instance. Default value is calculated from available memory.
|
704
704
|
:param str available_memory: The amount of memory available for a function.
|
705
705
|
Defaults to 256M. Supported units are k, M, G, Mi, Gi. If no unit is
|
@@ -769,7 +769,7 @@ class FunctionServiceConfig(dict):
|
|
769
769
|
@pulumi.getter(name="allTrafficOnLatestRevision")
|
770
770
|
def all_traffic_on_latest_revision(self) -> Optional[bool]:
|
771
771
|
"""
|
772
|
-
Whether 100
|
772
|
+
Whether 100% of traffic is routed to the latest revision. Defaults to true.
|
773
773
|
"""
|
774
774
|
return pulumi.get(self, "all_traffic_on_latest_revision")
|
775
775
|
|
@@ -1513,7 +1513,7 @@ class GetFunctionServiceConfigResult(dict):
|
|
1513
1513
|
vpc_connector: str,
|
1514
1514
|
vpc_connector_egress_settings: str):
|
1515
1515
|
"""
|
1516
|
-
:param bool all_traffic_on_latest_revision: Whether 100
|
1516
|
+
:param bool all_traffic_on_latest_revision: Whether 100% of traffic is routed to the latest revision. Defaults to true.
|
1517
1517
|
:param str available_cpu: The number of CPUs used in a single container instance. Default value is calculated from available memory.
|
1518
1518
|
:param str available_memory: The amount of memory available for a function.
|
1519
1519
|
Defaults to 256M. Supported units are k, M, G, Mi, Gi. If no unit is
|
@@ -1559,7 +1559,7 @@ class GetFunctionServiceConfigResult(dict):
|
|
1559
1559
|
@pulumi.getter(name="allTrafficOnLatestRevision")
|
1560
1560
|
def all_traffic_on_latest_revision(self) -> bool:
|
1561
1561
|
"""
|
1562
|
-
Whether 100
|
1562
|
+
Whether 100% of traffic is routed to the latest revision. Defaults to true.
|
1563
1563
|
"""
|
1564
1564
|
return pulumi.get(self, "all_traffic_on_latest_revision")
|
1565
1565
|
|
pulumi_gcp/cloudrunv2/service.py
CHANGED
@@ -66,7 +66,7 @@ class ServiceArgs:
|
|
66
66
|
If it is not provided, the provider project is used.
|
67
67
|
:param pulumi.Input['ServiceScalingArgs'] scaling: Scaling settings that apply to the whole service
|
68
68
|
Structure is documented below.
|
69
|
-
:param pulumi.Input[Sequence[pulumi.Input['ServiceTrafficArgs']]] traffics: Specifies how to distribute traffic over a collection of Revisions belonging to the Service. If traffic is empty or not provided, defaults to 100
|
69
|
+
:param pulumi.Input[Sequence[pulumi.Input['ServiceTrafficArgs']]] traffics: Specifies how to distribute traffic over a collection of Revisions belonging to the Service. If traffic is empty or not provided, defaults to 100% traffic to the latest Ready Revision.
|
70
70
|
Structure is documented below.
|
71
71
|
"""
|
72
72
|
pulumi.set(__self__, "location", location)
|
@@ -289,7 +289,7 @@ class ServiceArgs:
|
|
289
289
|
@pulumi.getter
|
290
290
|
def traffics(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ServiceTrafficArgs']]]]:
|
291
291
|
"""
|
292
|
-
Specifies how to distribute traffic over a collection of Revisions belonging to the Service. If traffic is empty or not provided, defaults to 100
|
292
|
+
Specifies how to distribute traffic over a collection of Revisions belonging to the Service. If traffic is empty or not provided, defaults to 100% traffic to the latest Ready Revision.
|
293
293
|
Structure is documented below.
|
294
294
|
"""
|
295
295
|
return pulumi.get(self, "traffics")
|
@@ -397,7 +397,7 @@ class _ServiceState:
|
|
397
397
|
Structure is documented below.
|
398
398
|
:param pulumi.Input[Sequence[pulumi.Input['ServiceTrafficStatusArgs']]] traffic_statuses: Detailed status information for corresponding traffic targets. See comments in reconciling for additional information on reconciliation process in Cloud Run.
|
399
399
|
Structure is documented below.
|
400
|
-
:param pulumi.Input[Sequence[pulumi.Input['ServiceTrafficArgs']]] traffics: Specifies how to distribute traffic over a collection of Revisions belonging to the Service. If traffic is empty or not provided, defaults to 100
|
400
|
+
:param pulumi.Input[Sequence[pulumi.Input['ServiceTrafficArgs']]] traffics: Specifies how to distribute traffic over a collection of Revisions belonging to the Service. If traffic is empty or not provided, defaults to 100% traffic to the latest Ready Revision.
|
401
401
|
Structure is documented below.
|
402
402
|
:param pulumi.Input[str] uid: Server assigned unique identifier for the trigger. The value is a UUID4 string and guaranteed to remain unchanged until the resource is deleted.
|
403
403
|
:param pulumi.Input[str] update_time: The last-modified time.
|
@@ -878,7 +878,7 @@ class _ServiceState:
|
|
878
878
|
@pulumi.getter
|
879
879
|
def traffics(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ServiceTrafficArgs']]]]:
|
880
880
|
"""
|
881
|
-
Specifies how to distribute traffic over a collection of Revisions belonging to the Service. If traffic is empty or not provided, defaults to 100
|
881
|
+
Specifies how to distribute traffic over a collection of Revisions belonging to the Service. If traffic is empty or not provided, defaults to 100% traffic to the latest Ready Revision.
|
882
882
|
Structure is documented below.
|
883
883
|
"""
|
884
884
|
return pulumi.get(self, "traffics")
|
@@ -1408,7 +1408,7 @@ class Service(pulumi.CustomResource):
|
|
1408
1408
|
Structure is documented below.
|
1409
1409
|
:param pulumi.Input[pulumi.InputType['ServiceTemplateArgs']] template: The template used to create revisions for this Service.
|
1410
1410
|
Structure is documented below.
|
1411
|
-
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ServiceTrafficArgs']]]] traffics: Specifies how to distribute traffic over a collection of Revisions belonging to the Service. If traffic is empty or not provided, defaults to 100
|
1411
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ServiceTrafficArgs']]]] traffics: Specifies how to distribute traffic over a collection of Revisions belonging to the Service. If traffic is empty or not provided, defaults to 100% traffic to the latest Ready Revision.
|
1412
1412
|
Structure is documented below.
|
1413
1413
|
"""
|
1414
1414
|
...
|
@@ -2034,7 +2034,7 @@ class Service(pulumi.CustomResource):
|
|
2034
2034
|
Structure is documented below.
|
2035
2035
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ServiceTrafficStatusArgs']]]] traffic_statuses: Detailed status information for corresponding traffic targets. See comments in reconciling for additional information on reconciliation process in Cloud Run.
|
2036
2036
|
Structure is documented below.
|
2037
|
-
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ServiceTrafficArgs']]]] traffics: Specifies how to distribute traffic over a collection of Revisions belonging to the Service. If traffic is empty or not provided, defaults to 100
|
2037
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ServiceTrafficArgs']]]] traffics: Specifies how to distribute traffic over a collection of Revisions belonging to the Service. If traffic is empty or not provided, defaults to 100% traffic to the latest Ready Revision.
|
2038
2038
|
Structure is documented below.
|
2039
2039
|
:param pulumi.Input[str] uid: Server assigned unique identifier for the trigger. The value is a UUID4 string and guaranteed to remain unchanged until the resource is deleted.
|
2040
2040
|
:param pulumi.Input[str] update_time: The last-modified time.
|
@@ -2361,7 +2361,7 @@ class Service(pulumi.CustomResource):
|
|
2361
2361
|
@pulumi.getter
|
2362
2362
|
def traffics(self) -> pulumi.Output[Sequence['outputs.ServiceTraffic']]:
|
2363
2363
|
"""
|
2364
|
-
Specifies how to distribute traffic over a collection of Revisions belonging to the Service. If traffic is empty or not provided, defaults to 100
|
2364
|
+
Specifies how to distribute traffic over a collection of Revisions belonging to the Service. If traffic is empty or not provided, defaults to 100% traffic to the latest Ready Revision.
|
2365
2365
|
Structure is documented below.
|
2366
2366
|
"""
|
2367
2367
|
return pulumi.get(self, "traffics")
|
pulumi_gcp/composer/_inputs.py
CHANGED
@@ -61,8 +61,13 @@ class EnvironmentConfigArgs:
|
|
61
61
|
web_server_network_access_control: Optional[pulumi.Input['EnvironmentConfigWebServerNetworkAccessControlArgs']] = None,
|
62
62
|
workloads_config: Optional[pulumi.Input['EnvironmentConfigWorkloadsConfigArgs']] = None):
|
63
63
|
"""
|
64
|
-
:param pulumi.Input[str] airflow_uri: The URI of the Apache Airflow Web UI hosted within this
|
65
|
-
|
64
|
+
:param pulumi.Input[str] airflow_uri: The URI of the Apache Airflow Web UI hosted within this
|
65
|
+
environment.
|
66
|
+
:param pulumi.Input[str] dag_gcs_prefix: The Cloud Storage prefix of the DAGs for this environment.
|
67
|
+
Although Cloud Storage objects reside in a flat namespace, a
|
68
|
+
hierarchical file tree can be simulated using '/'-delimited
|
69
|
+
object name prefixes. DAG objects for this environment
|
70
|
+
reside in a simulated directory with this prefix.
|
66
71
|
:param pulumi.Input['EnvironmentConfigDataRetentionConfigArgs'] data_retention_config: The configuration setting for Airflow data retention mechanism. This field is supported for Cloud Composer environments in versions composer-2.0.32-airflow-2.1.4. or newer
|
67
72
|
:param pulumi.Input['EnvironmentConfigDatabaseConfigArgs'] database_config: The configuration of Cloud SQL instance that is used by the Apache Airflow software. This field is supported for Cloud Composer environments in versions composer-1.*.*-airflow-*.*.*.
|
68
73
|
:param pulumi.Input[bool] enable_private_builds_only: Optional. If true, builds performed during operations that install Python packages have only private connectivity to Google services. If false, the builds also have access to the internet.
|
@@ -127,7 +132,8 @@ class EnvironmentConfigArgs:
|
|
127
132
|
@pulumi.getter(name="airflowUri")
|
128
133
|
def airflow_uri(self) -> Optional[pulumi.Input[str]]:
|
129
134
|
"""
|
130
|
-
The URI of the Apache Airflow Web UI hosted within this
|
135
|
+
The URI of the Apache Airflow Web UI hosted within this
|
136
|
+
environment.
|
131
137
|
"""
|
132
138
|
return pulumi.get(self, "airflow_uri")
|
133
139
|
|
@@ -139,7 +145,11 @@ class EnvironmentConfigArgs:
|
|
139
145
|
@pulumi.getter(name="dagGcsPrefix")
|
140
146
|
def dag_gcs_prefix(self) -> Optional[pulumi.Input[str]]:
|
141
147
|
"""
|
142
|
-
The Cloud Storage prefix of the DAGs for this environment.
|
148
|
+
The Cloud Storage prefix of the DAGs for this environment.
|
149
|
+
Although Cloud Storage objects reside in a flat namespace, a
|
150
|
+
hierarchical file tree can be simulated using '/'-delimited
|
151
|
+
object name prefixes. DAG objects for this environment
|
152
|
+
reside in a simulated directory with this prefix.
|
143
153
|
"""
|
144
154
|
return pulumi.get(self, "dag_gcs_prefix")
|
145
155
|
|
pulumi_gcp/composer/outputs.py
CHANGED
@@ -143,8 +143,13 @@ class EnvironmentConfig(dict):
|
|
143
143
|
web_server_network_access_control: Optional['outputs.EnvironmentConfigWebServerNetworkAccessControl'] = None,
|
144
144
|
workloads_config: Optional['outputs.EnvironmentConfigWorkloadsConfig'] = None):
|
145
145
|
"""
|
146
|
-
:param str airflow_uri: The URI of the Apache Airflow Web UI hosted within this
|
147
|
-
|
146
|
+
:param str airflow_uri: The URI of the Apache Airflow Web UI hosted within this
|
147
|
+
environment.
|
148
|
+
:param str dag_gcs_prefix: The Cloud Storage prefix of the DAGs for this environment.
|
149
|
+
Although Cloud Storage objects reside in a flat namespace, a
|
150
|
+
hierarchical file tree can be simulated using '/'-delimited
|
151
|
+
object name prefixes. DAG objects for this environment
|
152
|
+
reside in a simulated directory with this prefix.
|
148
153
|
:param 'EnvironmentConfigDataRetentionConfigArgs' data_retention_config: The configuration setting for Airflow data retention mechanism. This field is supported for Cloud Composer environments in versions composer-2.0.32-airflow-2.1.4. or newer
|
149
154
|
:param 'EnvironmentConfigDatabaseConfigArgs' database_config: The configuration of Cloud SQL instance that is used by the Apache Airflow software. This field is supported for Cloud Composer environments in versions composer-1.*.*-airflow-*.*.*.
|
150
155
|
:param bool enable_private_builds_only: Optional. If true, builds performed during operations that install Python packages have only private connectivity to Google services. If false, the builds also have access to the internet.
|
@@ -209,7 +214,8 @@ class EnvironmentConfig(dict):
|
|
209
214
|
@pulumi.getter(name="airflowUri")
|
210
215
|
def airflow_uri(self) -> Optional[str]:
|
211
216
|
"""
|
212
|
-
The URI of the Apache Airflow Web UI hosted within this
|
217
|
+
The URI of the Apache Airflow Web UI hosted within this
|
218
|
+
environment.
|
213
219
|
"""
|
214
220
|
return pulumi.get(self, "airflow_uri")
|
215
221
|
|
@@ -217,7 +223,11 @@ class EnvironmentConfig(dict):
|
|
217
223
|
@pulumi.getter(name="dagGcsPrefix")
|
218
224
|
def dag_gcs_prefix(self) -> Optional[str]:
|
219
225
|
"""
|
220
|
-
The Cloud Storage prefix of the DAGs for this environment.
|
226
|
+
The Cloud Storage prefix of the DAGs for this environment.
|
227
|
+
Although Cloud Storage objects reside in a flat namespace, a
|
228
|
+
hierarchical file tree can be simulated using '/'-delimited
|
229
|
+
object name prefixes. DAG objects for this environment
|
230
|
+
reside in a simulated directory with this prefix.
|
221
231
|
"""
|
222
232
|
return pulumi.get(self, "dag_gcs_prefix")
|
223
233
|
|
@@ -1946,15 +1956,16 @@ class GetEnvironmentConfigResult(dict):
|
|
1946
1956
|
web_server_network_access_controls: Sequence['outputs.GetEnvironmentConfigWebServerNetworkAccessControlResult'],
|
1947
1957
|
workloads_configs: Sequence['outputs.GetEnvironmentConfigWorkloadsConfigResult']):
|
1948
1958
|
"""
|
1949
|
-
:param str airflow_uri: The URI of the Apache Airflow Web UI hosted within
|
1950
|
-
|
1959
|
+
:param str airflow_uri: The URI of the Apache Airflow Web UI hosted within the
|
1960
|
+
environment.
|
1961
|
+
:param str dag_gcs_prefix: The Cloud Storage prefix of the DAGs for the environment.
|
1951
1962
|
:param Sequence['GetEnvironmentConfigDataRetentionConfigArgs'] data_retention_configs: The configuration setting for Airflow data retention mechanism. This field is supported for Cloud Composer environments in versions composer-2.0.32-airflow-2.1.4. or newer
|
1952
1963
|
:param Sequence['GetEnvironmentConfigDatabaseConfigArgs'] database_configs: The configuration of Cloud SQL instance that is used by the Apache Airflow software. This field is supported for Cloud Composer environments in versions composer-1.*.*-airflow-*.*.*.
|
1953
1964
|
:param bool enable_private_builds_only: Optional. If true, builds performed during operations that install Python packages have only private connectivity to Google services. If false, the builds also have access to the internet.
|
1954
1965
|
:param bool enable_private_environment: Optional. If true, a private Composer environment will be created.
|
1955
1966
|
:param Sequence['GetEnvironmentConfigEncryptionConfigArgs'] encryption_configs: The encryption options for the Composer environment and its dependencies.
|
1956
1967
|
:param str environment_size: The size of the Cloud Composer environment. This field is supported for Cloud Composer environments in versions composer-2.*.*-airflow-*.*.* and newer.
|
1957
|
-
:param str gke_cluster: The Kubernetes Engine cluster used to run
|
1968
|
+
:param str gke_cluster: The Kubernetes Engine cluster used to run the environment.
|
1958
1969
|
:param Sequence['GetEnvironmentConfigMaintenanceWindowArgs'] maintenance_windows: The configuration for Cloud Composer maintenance window.
|
1959
1970
|
:param Sequence['GetEnvironmentConfigMasterAuthorizedNetworksConfigArgs'] master_authorized_networks_configs: Configuration options for the master authorized networks feature. Enabled master authorized networks will disallow all external traffic to access Kubernetes master through HTTPS except traffic from the given CIDR blocks, Google Compute Engine Public IPs and Google Prod IPs.
|
1960
1971
|
:param Sequence['GetEnvironmentConfigNodeConfigArgs'] node_configs: The configuration used for the Kubernetes Engine cluster.
|
@@ -1992,7 +2003,8 @@ class GetEnvironmentConfigResult(dict):
|
|
1992
2003
|
@pulumi.getter(name="airflowUri")
|
1993
2004
|
def airflow_uri(self) -> str:
|
1994
2005
|
"""
|
1995
|
-
The URI of the Apache Airflow Web UI hosted within
|
2006
|
+
The URI of the Apache Airflow Web UI hosted within the
|
2007
|
+
environment.
|
1996
2008
|
"""
|
1997
2009
|
return pulumi.get(self, "airflow_uri")
|
1998
2010
|
|
@@ -2000,7 +2012,7 @@ class GetEnvironmentConfigResult(dict):
|
|
2000
2012
|
@pulumi.getter(name="dagGcsPrefix")
|
2001
2013
|
def dag_gcs_prefix(self) -> str:
|
2002
2014
|
"""
|
2003
|
-
The Cloud Storage prefix of the DAGs for
|
2015
|
+
The Cloud Storage prefix of the DAGs for the environment.
|
2004
2016
|
"""
|
2005
2017
|
return pulumi.get(self, "dag_gcs_prefix")
|
2006
2018
|
|
@@ -2056,7 +2068,7 @@ class GetEnvironmentConfigResult(dict):
|
|
2056
2068
|
@pulumi.getter(name="gkeCluster")
|
2057
2069
|
def gke_cluster(self) -> str:
|
2058
2070
|
"""
|
2059
|
-
The Kubernetes Engine cluster used to run
|
2071
|
+
The Kubernetes Engine cluster used to run the environment.
|
2060
2072
|
"""
|
2061
2073
|
return pulumi.get(self, "gke_cluster")
|
2062
2074
|
|
pulumi_gcp/compute/_inputs.py
CHANGED
@@ -1063,9 +1063,8 @@ class AutoscalerAutoscalingPolicyScaleDownControlMaxScaledDownReplicasArgs:
|
|
1063
1063
|
"""
|
1064
1064
|
:param pulumi.Input[int] fixed: Specifies a fixed number of VM instances. This must be a positive
|
1065
1065
|
integer.
|
1066
|
-
:param pulumi.Input[int] percent: Specifies a percentage of instances between 0 to 100
|
1067
|
-
For example, specify 80 for 80
|
1068
|
-
(MISSING)
|
1066
|
+
:param pulumi.Input[int] percent: Specifies a percentage of instances between 0 to 100%, inclusive.
|
1067
|
+
For example, specify 80 for 80%.
|
1069
1068
|
"""
|
1070
1069
|
if fixed is not None:
|
1071
1070
|
pulumi.set(__self__, "fixed", fixed)
|
@@ -1089,9 +1088,8 @@ class AutoscalerAutoscalingPolicyScaleDownControlMaxScaledDownReplicasArgs:
|
|
1089
1088
|
@pulumi.getter
|
1090
1089
|
def percent(self) -> Optional[pulumi.Input[int]]:
|
1091
1090
|
"""
|
1092
|
-
Specifies a percentage of instances between 0 to 100
|
1093
|
-
For example, specify 80 for 80
|
1094
|
-
(MISSING)
|
1091
|
+
Specifies a percentage of instances between 0 to 100%, inclusive.
|
1092
|
+
For example, specify 80 for 80%.
|
1095
1093
|
"""
|
1096
1094
|
return pulumi.get(self, "percent")
|
1097
1095
|
|
@@ -1151,9 +1149,8 @@ class AutoscalerAutoscalingPolicyScaleInControlMaxScaledInReplicasArgs:
|
|
1151
1149
|
"""
|
1152
1150
|
:param pulumi.Input[int] fixed: Specifies a fixed number of VM instances. This must be a positive
|
1153
1151
|
integer.
|
1154
|
-
:param pulumi.Input[int] percent: Specifies a percentage of instances between 0 to 100
|
1155
|
-
For example, specify 80 for 80
|
1156
|
-
(MISSING)
|
1152
|
+
:param pulumi.Input[int] percent: Specifies a percentage of instances between 0 to 100%, inclusive.
|
1153
|
+
For example, specify 80 for 80%.
|
1157
1154
|
"""
|
1158
1155
|
if fixed is not None:
|
1159
1156
|
pulumi.set(__self__, "fixed", fixed)
|
@@ -1177,9 +1174,8 @@ class AutoscalerAutoscalingPolicyScaleInControlMaxScaledInReplicasArgs:
|
|
1177
1174
|
@pulumi.getter
|
1178
1175
|
def percent(self) -> Optional[pulumi.Input[int]]:
|
1179
1176
|
"""
|
1180
|
-
Specifies a percentage of instances between 0 to 100
|
1181
|
-
For example, specify 80 for 80
|
1182
|
-
(MISSING)
|
1177
|
+
Specifies a percentage of instances between 0 to 100%, inclusive.
|
1178
|
+
For example, specify 80 for 80%.
|
1183
1179
|
"""
|
1184
1180
|
return pulumi.get(self, "percent")
|
1185
1181
|
|
@@ -1742,10 +1738,10 @@ class BackendServiceBackendArgs:
|
|
1742
1738
|
Possible values are: `UTILIZATION`, `RATE`, `CONNECTION`.
|
1743
1739
|
:param pulumi.Input[float] capacity_scaler: A multiplier applied to the group's maximum servicing capacity
|
1744
1740
|
(based on UTILIZATION, RATE or CONNECTION).
|
1745
|
-
Default value is 1, which means the group will serve up to 100
|
1746
|
-
|
1741
|
+
Default value is 1, which means the group will serve up to 100%
|
1742
|
+
of its configured capacity (depending on balancingMode). A
|
1747
1743
|
setting of 0 means the group is completely drained, offering
|
1748
|
-
0
|
1744
|
+
0% of its available Capacity. Valid range is [0.0,1.0].
|
1749
1745
|
:param pulumi.Input[str] description: An optional description of this resource.
|
1750
1746
|
Provide this property when you create the resource.
|
1751
1747
|
:param pulumi.Input[int] max_connections: The max number of simultaneous connections for the group. Can
|
@@ -1853,10 +1849,10 @@ class BackendServiceBackendArgs:
|
|
1853
1849
|
"""
|
1854
1850
|
A multiplier applied to the group's maximum servicing capacity
|
1855
1851
|
(based on UTILIZATION, RATE or CONNECTION).
|
1856
|
-
Default value is 1, which means the group will serve up to 100
|
1857
|
-
|
1852
|
+
Default value is 1, which means the group will serve up to 100%
|
1853
|
+
of its configured capacity (depending on balancingMode). A
|
1858
1854
|
setting of 0 means the group is completely drained, offering
|
1859
|
-
0
|
1855
|
+
0% of its available Capacity. Valid range is [0.0,1.0].
|
1860
1856
|
"""
|
1861
1857
|
return pulumi.get(self, "capacity_scaler")
|
1862
1858
|
|
@@ -3114,8 +3110,7 @@ class BackendServiceOutlierDetectionArgs:
|
|
3114
3110
|
ejections as well as hosts being returned to service. Defaults to 10 seconds.
|
3115
3111
|
Structure is documented below.
|
3116
3112
|
:param pulumi.Input[int] max_ejection_percent: Maximum percentage of hosts in the load balancing pool for the backend service
|
3117
|
-
that can be ejected. Defaults to 10
|
3118
|
-
(MISSING)
|
3113
|
+
that can be ejected. Defaults to 10%.
|
3119
3114
|
:param pulumi.Input[int] success_rate_minimum_hosts: The number of hosts in a cluster that must have enough request volume to detect
|
3120
3115
|
success rate outliers. If the number of hosts is less than this setting, outlier
|
3121
3116
|
detection via success rate statistics is not performed for any host in the
|
@@ -3259,8 +3254,7 @@ class BackendServiceOutlierDetectionArgs:
|
|
3259
3254
|
def max_ejection_percent(self) -> Optional[pulumi.Input[int]]:
|
3260
3255
|
"""
|
3261
3256
|
Maximum percentage of hosts in the load balancing pool for the backend service
|
3262
|
-
that can be ejected. Defaults to 10
|
3263
|
-
(MISSING)
|
3257
|
+
that can be ejected. Defaults to 10%.
|
3264
3258
|
"""
|
3265
3259
|
return pulumi.get(self, "max_ejection_percent")
|
3266
3260
|
|
@@ -5681,7 +5675,9 @@ class InstanceAttachedDiskArgs:
|
|
5681
5675
|
(https://cloud.google.com/compute/docs/disks/customer-supplied-encryption),
|
5682
5676
|
encoded in [RFC 4648 base64](https://tools.ietf.org/html/rfc4648#section-4)
|
5683
5677
|
to encrypt this disk. Only one of `kms_key_self_link` and `disk_encryption_key_raw` may be set.
|
5684
|
-
:param pulumi.Input[str] disk_encryption_key_sha256: The RFC 4648 base64
|
5678
|
+
:param pulumi.Input[str] disk_encryption_key_sha256: The [RFC 4648 base64](https://tools.ietf.org/html/rfc4648#section-4)
|
5679
|
+
encoded SHA-256 hash of the [customer-supplied encryption key]
|
5680
|
+
(https://cloud.google.com/compute/docs/disks/customer-supplied-encryption) that protects this resource.
|
5685
5681
|
:param pulumi.Input[str] kms_key_self_link: The self_link of the encryption key that is
|
5686
5682
|
stored in Google Cloud KMS to encrypt this disk. Only one of `kms_key_self_link`
|
5687
5683
|
and `disk_encryption_key_raw` may be set.
|
@@ -5746,7 +5742,9 @@ class InstanceAttachedDiskArgs:
|
|
5746
5742
|
@pulumi.getter(name="diskEncryptionKeySha256")
|
5747
5743
|
def disk_encryption_key_sha256(self) -> Optional[pulumi.Input[str]]:
|
5748
5744
|
"""
|
5749
|
-
The RFC 4648 base64
|
5745
|
+
The [RFC 4648 base64](https://tools.ietf.org/html/rfc4648#section-4)
|
5746
|
+
encoded SHA-256 hash of the [customer-supplied encryption key]
|
5747
|
+
(https://cloud.google.com/compute/docs/disks/customer-supplied-encryption) that protects this resource.
|
5750
5748
|
"""
|
5751
5749
|
return pulumi.get(self, "disk_encryption_key_sha256")
|
5752
5750
|
|
@@ -5805,7 +5803,9 @@ class InstanceBootDiskArgs:
|
|
5805
5803
|
encoded in [RFC 4648 base64](https://tools.ietf.org/html/rfc4648#section-4)
|
5806
5804
|
to encrypt this disk. Only one of `kms_key_self_link` and `disk_encryption_key_raw`
|
5807
5805
|
may be set.
|
5808
|
-
:param pulumi.Input[str] disk_encryption_key_sha256: The RFC 4648 base64
|
5806
|
+
:param pulumi.Input[str] disk_encryption_key_sha256: The [RFC 4648 base64](https://tools.ietf.org/html/rfc4648#section-4)
|
5807
|
+
encoded SHA-256 hash of the [customer-supplied encryption key]
|
5808
|
+
(https://cloud.google.com/compute/docs/disks/customer-supplied-encryption) that protects this resource.
|
5809
5809
|
:param pulumi.Input['InstanceBootDiskInitializeParamsArgs'] initialize_params: Parameters for a new disk that will be created
|
5810
5810
|
alongside the new instance. Either `initialize_params` or `source` must be set.
|
5811
5811
|
Structure is documented below.
|
@@ -5881,7 +5881,9 @@ class InstanceBootDiskArgs:
|
|
5881
5881
|
@pulumi.getter(name="diskEncryptionKeySha256")
|
5882
5882
|
def disk_encryption_key_sha256(self) -> Optional[pulumi.Input[str]]:
|
5883
5883
|
"""
|
5884
|
-
The RFC 4648 base64
|
5884
|
+
The [RFC 4648 base64](https://tools.ietf.org/html/rfc4648#section-4)
|
5885
|
+
encoded SHA-256 hash of the [customer-supplied encryption key]
|
5886
|
+
(https://cloud.google.com/compute/docs/disks/customer-supplied-encryption) that protects this resource.
|
5885
5887
|
"""
|
5886
5888
|
return pulumi.get(self, "disk_encryption_key_sha256")
|
5887
5889
|
|
@@ -15356,9 +15358,8 @@ class RegionAutoscalerAutoscalingPolicyScaleDownControlMaxScaledDownReplicasArgs
|
|
15356
15358
|
"""
|
15357
15359
|
:param pulumi.Input[int] fixed: Specifies a fixed number of VM instances. This must be a positive
|
15358
15360
|
integer.
|
15359
|
-
:param pulumi.Input[int] percent: Specifies a percentage of instances between 0 to 100
|
15360
|
-
For example, specify 80 for 80
|
15361
|
-
(MISSING)
|
15361
|
+
:param pulumi.Input[int] percent: Specifies a percentage of instances between 0 to 100%, inclusive.
|
15362
|
+
For example, specify 80 for 80%.
|
15362
15363
|
"""
|
15363
15364
|
if fixed is not None:
|
15364
15365
|
pulumi.set(__self__, "fixed", fixed)
|
@@ -15382,9 +15383,8 @@ class RegionAutoscalerAutoscalingPolicyScaleDownControlMaxScaledDownReplicasArgs
|
|
15382
15383
|
@pulumi.getter
|
15383
15384
|
def percent(self) -> Optional[pulumi.Input[int]]:
|
15384
15385
|
"""
|
15385
|
-
Specifies a percentage of instances between 0 to 100
|
15386
|
-
For example, specify 80 for 80
|
15387
|
-
(MISSING)
|
15386
|
+
Specifies a percentage of instances between 0 to 100%, inclusive.
|
15387
|
+
For example, specify 80 for 80%.
|
15388
15388
|
"""
|
15389
15389
|
return pulumi.get(self, "percent")
|
15390
15390
|
|
@@ -15444,9 +15444,8 @@ class RegionAutoscalerAutoscalingPolicyScaleInControlMaxScaledInReplicasArgs:
|
|
15444
15444
|
"""
|
15445
15445
|
:param pulumi.Input[int] fixed: Specifies a fixed number of VM instances. This must be a positive
|
15446
15446
|
integer.
|
15447
|
-
:param pulumi.Input[int] percent: Specifies a percentage of instances between 0 to 100
|
15448
|
-
For example, specify 80 for 80
|
15449
|
-
(MISSING)
|
15447
|
+
:param pulumi.Input[int] percent: Specifies a percentage of instances between 0 to 100%, inclusive.
|
15448
|
+
For example, specify 80 for 80%.
|
15450
15449
|
"""
|
15451
15450
|
if fixed is not None:
|
15452
15451
|
pulumi.set(__self__, "fixed", fixed)
|
@@ -15470,9 +15469,8 @@ class RegionAutoscalerAutoscalingPolicyScaleInControlMaxScaledInReplicasArgs:
|
|
15470
15469
|
@pulumi.getter
|
15471
15470
|
def percent(self) -> Optional[pulumi.Input[int]]:
|
15472
15471
|
"""
|
15473
|
-
Specifies a percentage of instances between 0 to 100
|
15474
|
-
For example, specify 80 for 80
|
15475
|
-
(MISSING)
|
15472
|
+
Specifies a percentage of instances between 0 to 100%, inclusive.
|
15473
|
+
For example, specify 80 for 80%.
|
15476
15474
|
"""
|
15477
15475
|
return pulumi.get(self, "percent")
|
15478
15476
|
|
@@ -15640,7 +15638,7 @@ class RegionBackendServiceBackendArgs:
|
|
15640
15638
|
but is required for non-INTERNAL backend service. The total
|
15641
15639
|
capacity_scaler for all backends must be non-zero.
|
15642
15640
|
A setting of 0 means the group is completely drained, offering
|
15643
|
-
0
|
15641
|
+
0% of its available Capacity. Valid range is [0.0,1.0].
|
15644
15642
|
:param pulumi.Input[str] description: An optional description of this resource.
|
15645
15643
|
Provide this property when you create the resource.
|
15646
15644
|
:param pulumi.Input[bool] failover: This field designates whether this is a failover backend. More
|
@@ -15763,7 +15761,7 @@ class RegionBackendServiceBackendArgs:
|
|
15763
15761
|
but is required for non-INTERNAL backend service. The total
|
15764
15762
|
capacity_scaler for all backends must be non-zero.
|
15765
15763
|
A setting of 0 means the group is completely drained, offering
|
15766
|
-
0
|
15764
|
+
0% of its available Capacity. Valid range is [0.0,1.0].
|
15767
15765
|
"""
|
15768
15766
|
return pulumi.get(self, "capacity_scaler")
|
15769
15767
|
|
@@ -17054,8 +17052,7 @@ class RegionBackendServiceOutlierDetectionArgs:
|
|
17054
17052
|
ejections as well as hosts being returned to service. Defaults to 10 seconds.
|
17055
17053
|
Structure is documented below.
|
17056
17054
|
:param pulumi.Input[int] max_ejection_percent: Maximum percentage of hosts in the load balancing pool for the backend service
|
17057
|
-
that can be ejected. Defaults to 10
|
17058
|
-
(MISSING)
|
17055
|
+
that can be ejected. Defaults to 10%.
|
17059
17056
|
:param pulumi.Input[int] success_rate_minimum_hosts: The number of hosts in a cluster that must have enough request volume to detect
|
17060
17057
|
success rate outliers. If the number of hosts is less than this setting, outlier
|
17061
17058
|
detection via success rate statistics is not performed for any host in the
|
@@ -17199,8 +17196,7 @@ class RegionBackendServiceOutlierDetectionArgs:
|
|
17199
17196
|
def max_ejection_percent(self) -> Optional[pulumi.Input[int]]:
|
17200
17197
|
"""
|
17201
17198
|
Maximum percentage of hosts in the load balancing pool for the backend service
|
17202
|
-
that can be ejected. Defaults to 10
|
17203
|
-
(MISSING)
|
17199
|
+
that can be ejected. Defaults to 10%.
|
17204
17200
|
"""
|
17205
17201
|
return pulumi.get(self, "max_ejection_percent")
|
17206
17202
|
|