pulumi-gcp 7.23.0__py3-none-any.whl → 7.23.0a1715621482__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 +0 -24
- pulumi_gcp/bigquery/table.py +0 -47
- pulumi_gcp/bigtable/__init__.py +0 -1
- pulumi_gcp/bigtable/_inputs.py +0 -101
- pulumi_gcp/bigtable/outputs.py +0 -119
- pulumi_gcp/certificateauthority/certificate_template.py +0 -70
- pulumi_gcp/cloudbuildv2/repository.py +2 -2
- pulumi_gcp/clouddeploy/_inputs.py +0 -96
- pulumi_gcp/clouddeploy/custom_target_type.py +0 -46
- pulumi_gcp/clouddeploy/delivery_pipeline.py +7 -7
- pulumi_gcp/clouddeploy/outputs.py +1 -96
- pulumi_gcp/clouddeploy/target.py +7 -54
- pulumi_gcp/compute/_inputs.py +0 -689
- pulumi_gcp/compute/firewall_policy_rule.py +10 -125
- pulumi_gcp/compute/network_firewall_policy_rule.py +10 -125
- pulumi_gcp/compute/outputs.py +0 -684
- pulumi_gcp/compute/region_network_firewall_policy_rule.py +10 -125
- pulumi_gcp/compute/region_security_policy_rule.py +1 -230
- pulumi_gcp/container/_inputs.py +3 -67
- pulumi_gcp/container/outputs.py +4 -93
- pulumi_gcp/dataflow/flex_template_job.py +7 -7
- pulumi_gcp/dataflow/job.py +7 -7
- pulumi_gcp/iam/_inputs.py +2 -191
- pulumi_gcp/iam/outputs.py +2 -197
- pulumi_gcp/iam/workforce_pool_provider.py +0 -245
- pulumi_gcp/integrationconnectors/__init__.py +0 -1
- pulumi_gcp/networkconnectivity/__init__.py +0 -1
- pulumi_gcp/networksecurity/firewall_endpoint.py +0 -34
- pulumi_gcp/networksecurity/firewall_endpoint_association.py +0 -24
- pulumi_gcp/networksecurity/security_profile.py +0 -16
- pulumi_gcp/networksecurity/security_profile_group.py +0 -18
- pulumi_gcp/networksecurity/tls_inspection_policy.py +0 -16
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/pubsub/subscription.py +4 -4
- pulumi_gcp/pulumi-plugin.json +1 -2
- {pulumi_gcp-7.23.0.dist-info → pulumi_gcp-7.23.0a1715621482.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.23.0.dist-info → pulumi_gcp-7.23.0a1715621482.dist-info}/RECORD +39 -42
- pulumi_gcp/bigtable/authorized_view.py +0 -440
- pulumi_gcp/integrationconnectors/managed_zone.py +0 -753
- pulumi_gcp/networkconnectivity/regional_endpoint.py +0 -946
- {pulumi_gcp-7.23.0.dist-info → pulumi_gcp-7.23.0a1715621482.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.23.0.dist-info → pulumi_gcp-7.23.0a1715621482.dist-info}/top_level.txt +0 -0
pulumi_gcp/container/outputs.py
CHANGED
@@ -5122,9 +5122,7 @@ class ClusterDnsConfig(dict):
|
|
5122
5122
|
@staticmethod
|
5123
5123
|
def __key_warning(key: str):
|
5124
5124
|
suggest = None
|
5125
|
-
if key == "
|
5126
|
-
suggest = "additive_vpc_scope_dns_domain"
|
5127
|
-
elif key == "clusterDns":
|
5125
|
+
if key == "clusterDns":
|
5128
5126
|
suggest = "cluster_dns"
|
5129
5127
|
elif key == "clusterDnsDomain":
|
5130
5128
|
suggest = "cluster_dns_domain"
|
@@ -5143,18 +5141,14 @@ class ClusterDnsConfig(dict):
|
|
5143
5141
|
return super().get(key, default)
|
5144
5142
|
|
5145
5143
|
def __init__(__self__, *,
|
5146
|
-
additive_vpc_scope_dns_domain: Optional[str] = None,
|
5147
5144
|
cluster_dns: Optional[str] = None,
|
5148
5145
|
cluster_dns_domain: Optional[str] = None,
|
5149
5146
|
cluster_dns_scope: Optional[str] = None):
|
5150
5147
|
"""
|
5151
|
-
:param str additive_vpc_scope_dns_domain: This will enable Cloud DNS additive VPC scope. Must provide a domain name that is unique within the VPC. For this to work `cluster_dns = "CLOUD_DNS"` and `cluster_dns_scope = "CLUSTER_SCOPE"` must both be set as well.
|
5152
5148
|
:param str cluster_dns: Which in-cluster DNS provider should be used. `PROVIDER_UNSPECIFIED` (default) or `PLATFORM_DEFAULT` or `CLOUD_DNS`.
|
5153
5149
|
:param str cluster_dns_domain: The suffix used for all cluster service records.
|
5154
5150
|
:param str cluster_dns_scope: The scope of access to cluster DNS records. `DNS_SCOPE_UNSPECIFIED` (default) or `CLUSTER_SCOPE` or `VPC_SCOPE`.
|
5155
5151
|
"""
|
5156
|
-
if additive_vpc_scope_dns_domain is not None:
|
5157
|
-
pulumi.set(__self__, "additive_vpc_scope_dns_domain", additive_vpc_scope_dns_domain)
|
5158
5152
|
if cluster_dns is not None:
|
5159
5153
|
pulumi.set(__self__, "cluster_dns", cluster_dns)
|
5160
5154
|
if cluster_dns_domain is not None:
|
@@ -5162,14 +5156,6 @@ class ClusterDnsConfig(dict):
|
|
5162
5156
|
if cluster_dns_scope is not None:
|
5163
5157
|
pulumi.set(__self__, "cluster_dns_scope", cluster_dns_scope)
|
5164
5158
|
|
5165
|
-
@property
|
5166
|
-
@pulumi.getter(name="additiveVpcScopeDnsDomain")
|
5167
|
-
def additive_vpc_scope_dns_domain(self) -> Optional[str]:
|
5168
|
-
"""
|
5169
|
-
This will enable Cloud DNS additive VPC scope. Must provide a domain name that is unique within the VPC. For this to work `cluster_dns = "CLOUD_DNS"` and `cluster_dns_scope = "CLUSTER_SCOPE"` must both be set as well.
|
5170
|
-
"""
|
5171
|
-
return pulumi.get(self, "additive_vpc_scope_dns_domain")
|
5172
|
-
|
5173
5159
|
@property
|
5174
5160
|
@pulumi.getter(name="clusterDns")
|
5175
5161
|
def cluster_dns(self) -> Optional[str]:
|
@@ -7079,8 +7065,6 @@ class ClusterNodeConfigAdvancedMachineFeatures(dict):
|
|
7079
7065
|
suggest = None
|
7080
7066
|
if key == "threadsPerCore":
|
7081
7067
|
suggest = "threads_per_core"
|
7082
|
-
elif key == "enableNestedVirtualization":
|
7083
|
-
suggest = "enable_nested_virtualization"
|
7084
7068
|
|
7085
7069
|
if suggest:
|
7086
7070
|
pulumi.log.warn(f"Key '{key}' not found in ClusterNodeConfigAdvancedMachineFeatures. Access the value via the '{suggest}' property getter instead.")
|
@@ -7094,15 +7078,11 @@ class ClusterNodeConfigAdvancedMachineFeatures(dict):
|
|
7094
7078
|
return super().get(key, default)
|
7095
7079
|
|
7096
7080
|
def __init__(__self__, *,
|
7097
|
-
threads_per_core: int
|
7098
|
-
enable_nested_virtualization: Optional[bool] = None):
|
7081
|
+
threads_per_core: int):
|
7099
7082
|
"""
|
7100
7083
|
:param int threads_per_core: The number of threads per physical core. To disable simultaneous multithreading (SMT) set this to 1. If unset, the maximum number of threads supported per core by the underlying processor is assumed.
|
7101
|
-
:param bool enable_nested_virtualization: Defines whether the instance should have nested virtualization enabled. Defaults to false.
|
7102
7084
|
"""
|
7103
7085
|
pulumi.set(__self__, "threads_per_core", threads_per_core)
|
7104
|
-
if enable_nested_virtualization is not None:
|
7105
|
-
pulumi.set(__self__, "enable_nested_virtualization", enable_nested_virtualization)
|
7106
7086
|
|
7107
7087
|
@property
|
7108
7088
|
@pulumi.getter(name="threadsPerCore")
|
@@ -7112,14 +7092,6 @@ class ClusterNodeConfigAdvancedMachineFeatures(dict):
|
|
7112
7092
|
"""
|
7113
7093
|
return pulumi.get(self, "threads_per_core")
|
7114
7094
|
|
7115
|
-
@property
|
7116
|
-
@pulumi.getter(name="enableNestedVirtualization")
|
7117
|
-
def enable_nested_virtualization(self) -> Optional[bool]:
|
7118
|
-
"""
|
7119
|
-
Defines whether the instance should have nested virtualization enabled. Defaults to false.
|
7120
|
-
"""
|
7121
|
-
return pulumi.get(self, "enable_nested_virtualization")
|
7122
|
-
|
7123
7095
|
|
7124
7096
|
@pulumi.output_type
|
7125
7097
|
class ClusterNodeConfigConfidentialNodes(dict):
|
@@ -9646,8 +9618,6 @@ class ClusterNodePoolNodeConfigAdvancedMachineFeatures(dict):
|
|
9646
9618
|
suggest = None
|
9647
9619
|
if key == "threadsPerCore":
|
9648
9620
|
suggest = "threads_per_core"
|
9649
|
-
elif key == "enableNestedVirtualization":
|
9650
|
-
suggest = "enable_nested_virtualization"
|
9651
9621
|
|
9652
9622
|
if suggest:
|
9653
9623
|
pulumi.log.warn(f"Key '{key}' not found in ClusterNodePoolNodeConfigAdvancedMachineFeatures. Access the value via the '{suggest}' property getter instead.")
|
@@ -9661,15 +9631,11 @@ class ClusterNodePoolNodeConfigAdvancedMachineFeatures(dict):
|
|
9661
9631
|
return super().get(key, default)
|
9662
9632
|
|
9663
9633
|
def __init__(__self__, *,
|
9664
|
-
threads_per_core: int
|
9665
|
-
enable_nested_virtualization: Optional[bool] = None):
|
9634
|
+
threads_per_core: int):
|
9666
9635
|
"""
|
9667
9636
|
:param int threads_per_core: The number of threads per physical core. To disable simultaneous multithreading (SMT) set this to 1. If unset, the maximum number of threads supported per core by the underlying processor is assumed.
|
9668
|
-
:param bool enable_nested_virtualization: Defines whether the instance should have nested virtualization enabled. Defaults to false.
|
9669
9637
|
"""
|
9670
9638
|
pulumi.set(__self__, "threads_per_core", threads_per_core)
|
9671
|
-
if enable_nested_virtualization is not None:
|
9672
|
-
pulumi.set(__self__, "enable_nested_virtualization", enable_nested_virtualization)
|
9673
9639
|
|
9674
9640
|
@property
|
9675
9641
|
@pulumi.getter(name="threadsPerCore")
|
@@ -9679,14 +9645,6 @@ class ClusterNodePoolNodeConfigAdvancedMachineFeatures(dict):
|
|
9679
9645
|
"""
|
9680
9646
|
return pulumi.get(self, "threads_per_core")
|
9681
9647
|
|
9682
|
-
@property
|
9683
|
-
@pulumi.getter(name="enableNestedVirtualization")
|
9684
|
-
def enable_nested_virtualization(self) -> Optional[bool]:
|
9685
|
-
"""
|
9686
|
-
Defines whether the instance should have nested virtualization enabled. Defaults to false.
|
9687
|
-
"""
|
9688
|
-
return pulumi.get(self, "enable_nested_virtualization")
|
9689
|
-
|
9690
9648
|
|
9691
9649
|
@pulumi.output_type
|
9692
9650
|
class ClusterNodePoolNodeConfigConfidentialNodes(dict):
|
@@ -12662,8 +12620,6 @@ class NodePoolNodeConfigAdvancedMachineFeatures(dict):
|
|
12662
12620
|
suggest = None
|
12663
12621
|
if key == "threadsPerCore":
|
12664
12622
|
suggest = "threads_per_core"
|
12665
|
-
elif key == "enableNestedVirtualization":
|
12666
|
-
suggest = "enable_nested_virtualization"
|
12667
12623
|
|
12668
12624
|
if suggest:
|
12669
12625
|
pulumi.log.warn(f"Key '{key}' not found in NodePoolNodeConfigAdvancedMachineFeatures. Access the value via the '{suggest}' property getter instead.")
|
@@ -12677,15 +12633,11 @@ class NodePoolNodeConfigAdvancedMachineFeatures(dict):
|
|
12677
12633
|
return super().get(key, default)
|
12678
12634
|
|
12679
12635
|
def __init__(__self__, *,
|
12680
|
-
threads_per_core: int
|
12681
|
-
enable_nested_virtualization: Optional[bool] = None):
|
12636
|
+
threads_per_core: int):
|
12682
12637
|
"""
|
12683
12638
|
:param int threads_per_core: The number of threads per physical core. To disable simultaneous multithreading (SMT) set this to 1. If unset, the maximum number of threads supported per core by the underlying processor is assumed.
|
12684
|
-
:param bool enable_nested_virtualization: Whether the node should have nested virtualization enabled.
|
12685
12639
|
"""
|
12686
12640
|
pulumi.set(__self__, "threads_per_core", threads_per_core)
|
12687
|
-
if enable_nested_virtualization is not None:
|
12688
|
-
pulumi.set(__self__, "enable_nested_virtualization", enable_nested_virtualization)
|
12689
12641
|
|
12690
12642
|
@property
|
12691
12643
|
@pulumi.getter(name="threadsPerCore")
|
@@ -12695,14 +12647,6 @@ class NodePoolNodeConfigAdvancedMachineFeatures(dict):
|
|
12695
12647
|
"""
|
12696
12648
|
return pulumi.get(self, "threads_per_core")
|
12697
12649
|
|
12698
|
-
@property
|
12699
|
-
@pulumi.getter(name="enableNestedVirtualization")
|
12700
|
-
def enable_nested_virtualization(self) -> Optional[bool]:
|
12701
|
-
"""
|
12702
|
-
Whether the node should have nested virtualization enabled.
|
12703
|
-
"""
|
12704
|
-
return pulumi.get(self, "enable_nested_virtualization")
|
12705
|
-
|
12706
12650
|
|
12707
12651
|
@pulumi.output_type
|
12708
12652
|
class NodePoolNodeConfigConfidentialNodes(dict):
|
@@ -14786,29 +14730,18 @@ class GetClusterDefaultSnatStatusResult(dict):
|
|
14786
14730
|
@pulumi.output_type
|
14787
14731
|
class GetClusterDnsConfigResult(dict):
|
14788
14732
|
def __init__(__self__, *,
|
14789
|
-
additive_vpc_scope_dns_domain: str,
|
14790
14733
|
cluster_dns: str,
|
14791
14734
|
cluster_dns_domain: str,
|
14792
14735
|
cluster_dns_scope: str):
|
14793
14736
|
"""
|
14794
|
-
:param str additive_vpc_scope_dns_domain: Enable additive VPC scope DNS in a GKE cluster.
|
14795
14737
|
:param str cluster_dns: Which in-cluster DNS provider should be used.
|
14796
14738
|
:param str cluster_dns_domain: The suffix used for all cluster service records.
|
14797
14739
|
:param str cluster_dns_scope: The scope of access to cluster DNS records.
|
14798
14740
|
"""
|
14799
|
-
pulumi.set(__self__, "additive_vpc_scope_dns_domain", additive_vpc_scope_dns_domain)
|
14800
14741
|
pulumi.set(__self__, "cluster_dns", cluster_dns)
|
14801
14742
|
pulumi.set(__self__, "cluster_dns_domain", cluster_dns_domain)
|
14802
14743
|
pulumi.set(__self__, "cluster_dns_scope", cluster_dns_scope)
|
14803
14744
|
|
14804
|
-
@property
|
14805
|
-
@pulumi.getter(name="additiveVpcScopeDnsDomain")
|
14806
|
-
def additive_vpc_scope_dns_domain(self) -> str:
|
14807
|
-
"""
|
14808
|
-
Enable additive VPC scope DNS in a GKE cluster.
|
14809
|
-
"""
|
14810
|
-
return pulumi.get(self, "additive_vpc_scope_dns_domain")
|
14811
|
-
|
14812
14745
|
@property
|
14813
14746
|
@pulumi.getter(name="clusterDns")
|
14814
14747
|
def cluster_dns(self) -> str:
|
@@ -15937,23 +15870,12 @@ class GetClusterNodeConfigResult(dict):
|
|
15937
15870
|
@pulumi.output_type
|
15938
15871
|
class GetClusterNodeConfigAdvancedMachineFeatureResult(dict):
|
15939
15872
|
def __init__(__self__, *,
|
15940
|
-
enable_nested_virtualization: bool,
|
15941
15873
|
threads_per_core: int):
|
15942
15874
|
"""
|
15943
|
-
:param bool enable_nested_virtualization: Whether the node should have nested virtualization enabled.
|
15944
15875
|
:param int threads_per_core: The number of threads per physical core. To disable simultaneous multithreading (SMT) set this to 1. If unset, the maximum number of threads supported per core by the underlying processor is assumed.
|
15945
15876
|
"""
|
15946
|
-
pulumi.set(__self__, "enable_nested_virtualization", enable_nested_virtualization)
|
15947
15877
|
pulumi.set(__self__, "threads_per_core", threads_per_core)
|
15948
15878
|
|
15949
|
-
@property
|
15950
|
-
@pulumi.getter(name="enableNestedVirtualization")
|
15951
|
-
def enable_nested_virtualization(self) -> bool:
|
15952
|
-
"""
|
15953
|
-
Whether the node should have nested virtualization enabled.
|
15954
|
-
"""
|
15955
|
-
return pulumi.get(self, "enable_nested_virtualization")
|
15956
|
-
|
15957
15879
|
@property
|
15958
15880
|
@pulumi.getter(name="threadsPerCore")
|
15959
15881
|
def threads_per_core(self) -> int:
|
@@ -17583,23 +17505,12 @@ class GetClusterNodePoolNodeConfigResult(dict):
|
|
17583
17505
|
@pulumi.output_type
|
17584
17506
|
class GetClusterNodePoolNodeConfigAdvancedMachineFeatureResult(dict):
|
17585
17507
|
def __init__(__self__, *,
|
17586
|
-
enable_nested_virtualization: bool,
|
17587
17508
|
threads_per_core: int):
|
17588
17509
|
"""
|
17589
|
-
:param bool enable_nested_virtualization: Whether the node should have nested virtualization enabled.
|
17590
17510
|
:param int threads_per_core: The number of threads per physical core. To disable simultaneous multithreading (SMT) set this to 1. If unset, the maximum number of threads supported per core by the underlying processor is assumed.
|
17591
17511
|
"""
|
17592
|
-
pulumi.set(__self__, "enable_nested_virtualization", enable_nested_virtualization)
|
17593
17512
|
pulumi.set(__self__, "threads_per_core", threads_per_core)
|
17594
17513
|
|
17595
|
-
@property
|
17596
|
-
@pulumi.getter(name="enableNestedVirtualization")
|
17597
|
-
def enable_nested_virtualization(self) -> bool:
|
17598
|
-
"""
|
17599
|
-
Whether the node should have nested virtualization enabled.
|
17600
|
-
"""
|
17601
|
-
return pulumi.get(self, "enable_nested_virtualization")
|
17602
|
-
|
17603
17514
|
@property
|
17604
17515
|
@pulumi.getter(name="threadsPerCore")
|
17605
17516
|
def threads_per_core(self) -> int:
|
@@ -71,7 +71,7 @@ class FlexTemplateJobArgs:
|
|
71
71
|
provided, the provider project is used.
|
72
72
|
:param pulumi.Input[str] region: Immutable. The region in which the created job should run.
|
73
73
|
:param pulumi.Input[str] sdk_container_image: Docker registry location of container image to use for the 'worker harness. Default is the container for the version of the SDK. Note this field is only valid for portable pipelines.
|
74
|
-
:param pulumi.Input[str] service_account_email: Service account email to run the workers as.
|
74
|
+
:param pulumi.Input[str] service_account_email: Service account email to run the workers as.
|
75
75
|
:param pulumi.Input[str] staging_location: The Cloud Storage path to use for staging files. Must be a valid Cloud Storage URL, beginning with gs://.
|
76
76
|
:param pulumi.Input[str] subnetwork: The subnetwork to which VMs will be assigned. Should be of the form "regions/REGION/subnetworks/SUBNETWORK".
|
77
77
|
:param pulumi.Input[str] temp_location: The Cloud Storage path to use for temporary files. Must be a valid Cloud Storage URL, beginning with gs://.
|
@@ -358,7 +358,7 @@ class FlexTemplateJobArgs:
|
|
358
358
|
@pulumi.getter(name="serviceAccountEmail")
|
359
359
|
def service_account_email(self) -> Optional[pulumi.Input[str]]:
|
360
360
|
"""
|
361
|
-
Service account email to run the workers as.
|
361
|
+
Service account email to run the workers as.
|
362
362
|
"""
|
363
363
|
return pulumi.get(self, "service_account_email")
|
364
364
|
|
@@ -491,7 +491,7 @@ class _FlexTemplateJobState:
|
|
491
491
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource and default labels configured on the provider.
|
492
492
|
:param pulumi.Input[str] region: Immutable. The region in which the created job should run.
|
493
493
|
:param pulumi.Input[str] sdk_container_image: Docker registry location of container image to use for the 'worker harness. Default is the container for the version of the SDK. Note this field is only valid for portable pipelines.
|
494
|
-
:param pulumi.Input[str] service_account_email: Service account email to run the workers as.
|
494
|
+
:param pulumi.Input[str] service_account_email: Service account email to run the workers as.
|
495
495
|
:param pulumi.Input[str] staging_location: The Cloud Storage path to use for staging files. Must be a valid Cloud Storage URL, beginning with gs://.
|
496
496
|
:param pulumi.Input[str] state: The current state of the resource, selected from the [JobState enum](https://cloud.google.com/dataflow/docs/reference/rest/v1b3/projects.jobs#Job.JobState)
|
497
497
|
:param pulumi.Input[str] subnetwork: The subnetwork to which VMs will be assigned. Should be of the form "regions/REGION/subnetworks/SUBNETWORK".
|
@@ -824,7 +824,7 @@ class _FlexTemplateJobState:
|
|
824
824
|
@pulumi.getter(name="serviceAccountEmail")
|
825
825
|
def service_account_email(self) -> Optional[pulumi.Input[str]]:
|
826
826
|
"""
|
827
|
-
Service account email to run the workers as.
|
827
|
+
Service account email to run the workers as.
|
828
828
|
"""
|
829
829
|
return pulumi.get(self, "service_account_email")
|
830
830
|
|
@@ -1050,7 +1050,7 @@ class FlexTemplateJob(pulumi.CustomResource):
|
|
1050
1050
|
provided, the provider project is used.
|
1051
1051
|
:param pulumi.Input[str] region: Immutable. The region in which the created job should run.
|
1052
1052
|
:param pulumi.Input[str] sdk_container_image: Docker registry location of container image to use for the 'worker harness. Default is the container for the version of the SDK. Note this field is only valid for portable pipelines.
|
1053
|
-
:param pulumi.Input[str] service_account_email: Service account email to run the workers as.
|
1053
|
+
:param pulumi.Input[str] service_account_email: Service account email to run the workers as.
|
1054
1054
|
:param pulumi.Input[str] staging_location: The Cloud Storage path to use for staging files. Must be a valid Cloud Storage URL, beginning with gs://.
|
1055
1055
|
:param pulumi.Input[str] subnetwork: The subnetwork to which VMs will be assigned. Should be of the form "regions/REGION/subnetworks/SUBNETWORK".
|
1056
1056
|
:param pulumi.Input[str] temp_location: The Cloud Storage path to use for temporary files. Must be a valid Cloud Storage URL, beginning with gs://.
|
@@ -1295,7 +1295,7 @@ class FlexTemplateJob(pulumi.CustomResource):
|
|
1295
1295
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource and default labels configured on the provider.
|
1296
1296
|
:param pulumi.Input[str] region: Immutable. The region in which the created job should run.
|
1297
1297
|
:param pulumi.Input[str] sdk_container_image: Docker registry location of container image to use for the 'worker harness. Default is the container for the version of the SDK. Note this field is only valid for portable pipelines.
|
1298
|
-
:param pulumi.Input[str] service_account_email: Service account email to run the workers as.
|
1298
|
+
:param pulumi.Input[str] service_account_email: Service account email to run the workers as.
|
1299
1299
|
:param pulumi.Input[str] staging_location: The Cloud Storage path to use for staging files. Must be a valid Cloud Storage URL, beginning with gs://.
|
1300
1300
|
:param pulumi.Input[str] state: The current state of the resource, selected from the [JobState enum](https://cloud.google.com/dataflow/docs/reference/rest/v1b3/projects.jobs#Job.JobState)
|
1301
1301
|
:param pulumi.Input[str] subnetwork: The subnetwork to which VMs will be assigned. Should be of the form "regions/REGION/subnetworks/SUBNETWORK".
|
@@ -1520,7 +1520,7 @@ class FlexTemplateJob(pulumi.CustomResource):
|
|
1520
1520
|
@pulumi.getter(name="serviceAccountEmail")
|
1521
1521
|
def service_account_email(self) -> pulumi.Output[str]:
|
1522
1522
|
"""
|
1523
|
-
Service account email to run the workers as.
|
1523
|
+
Service account email to run the workers as.
|
1524
1524
|
"""
|
1525
1525
|
return pulumi.get(self, "service_account_email")
|
1526
1526
|
|
pulumi_gcp/dataflow/job.py
CHANGED
@@ -57,7 +57,7 @@ class JobArgs:
|
|
57
57
|
**Note**: do not configure Dataflow options here in parameters.
|
58
58
|
:param pulumi.Input[str] project: The project in which the resource belongs. If it is not provided, the provider project is used.
|
59
59
|
:param pulumi.Input[str] region: The region in which the created job should run.
|
60
|
-
:param pulumi.Input[str] service_account_email: The Service Account email used to create the job.
|
60
|
+
:param pulumi.Input[str] service_account_email: The Service Account email used to create the job.
|
61
61
|
:param pulumi.Input[bool] skip_wait_on_job_termination: If set to `true`, Pulumi will treat `DRAINING` and `CANCELLING` as terminal states when deleting the resource, and will remove the resource from Pulumi state and move on. See above note.
|
62
62
|
:param pulumi.Input[str] subnetwork: The subnetwork to which VMs will be assigned. Should be of the form "regions/REGION/subnetworks/SUBNETWORK". If the [subnetwork is located in a Shared VPC network](https://cloud.google.com/dataflow/docs/guides/specifying-networks#shared), you must use the complete URL. For example `"googleapis.com/compute/v1/projects/PROJECT_ID/regions/REGION/subnetworks/SUBNET_NAME"`
|
63
63
|
:param pulumi.Input[Mapping[str, Any]] transform_name_mapping: Only applicable when updating a pipeline. Map of transform name prefixes of the job to be replaced with the corresponding name prefixes of the new job. This field is not used outside of update.
|
@@ -292,7 +292,7 @@ class JobArgs:
|
|
292
292
|
@pulumi.getter(name="serviceAccountEmail")
|
293
293
|
def service_account_email(self) -> Optional[pulumi.Input[str]]:
|
294
294
|
"""
|
295
|
-
The Service Account email used to create the job.
|
295
|
+
The Service Account email used to create the job.
|
296
296
|
"""
|
297
297
|
return pulumi.get(self, "service_account_email")
|
298
298
|
|
@@ -399,7 +399,7 @@ class _JobState:
|
|
399
399
|
:param pulumi.Input[str] project: The project in which the resource belongs. If it is not provided, the provider project is used.
|
400
400
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource and default labels configured on the provider.
|
401
401
|
:param pulumi.Input[str] region: The region in which the created job should run.
|
402
|
-
:param pulumi.Input[str] service_account_email: The Service Account email used to create the job.
|
402
|
+
:param pulumi.Input[str] service_account_email: The Service Account email used to create the job.
|
403
403
|
:param pulumi.Input[bool] skip_wait_on_job_termination: If set to `true`, Pulumi will treat `DRAINING` and `CANCELLING` as terminal states when deleting the resource, and will remove the resource from Pulumi state and move on. See above note.
|
404
404
|
:param pulumi.Input[str] state: The current state of the resource, selected from the [JobState enum](https://cloud.google.com/dataflow/docs/reference/rest/v1b3/projects.jobs#Job.JobState)
|
405
405
|
:param pulumi.Input[str] subnetwork: The subnetwork to which VMs will be assigned. Should be of the form "regions/REGION/subnetworks/SUBNETWORK". If the [subnetwork is located in a Shared VPC network](https://cloud.google.com/dataflow/docs/guides/specifying-networks#shared), you must use the complete URL. For example `"googleapis.com/compute/v1/projects/PROJECT_ID/regions/REGION/subnetworks/SUBNET_NAME"`
|
@@ -662,7 +662,7 @@ class _JobState:
|
|
662
662
|
@pulumi.getter(name="serviceAccountEmail")
|
663
663
|
def service_account_email(self) -> Optional[pulumi.Input[str]]:
|
664
664
|
"""
|
665
|
-
The Service Account email used to create the job.
|
665
|
+
The Service Account email used to create the job.
|
666
666
|
"""
|
667
667
|
return pulumi.get(self, "service_account_email")
|
668
668
|
|
@@ -913,7 +913,7 @@ class Job(pulumi.CustomResource):
|
|
913
913
|
**Note**: do not configure Dataflow options here in parameters.
|
914
914
|
:param pulumi.Input[str] project: The project in which the resource belongs. If it is not provided, the provider project is used.
|
915
915
|
:param pulumi.Input[str] region: The region in which the created job should run.
|
916
|
-
:param pulumi.Input[str] service_account_email: The Service Account email used to create the job.
|
916
|
+
:param pulumi.Input[str] service_account_email: The Service Account email used to create the job.
|
917
917
|
:param pulumi.Input[bool] skip_wait_on_job_termination: If set to `true`, Pulumi will treat `DRAINING` and `CANCELLING` as terminal states when deleting the resource, and will remove the resource from Pulumi state and move on. See above note.
|
918
918
|
:param pulumi.Input[str] subnetwork: The subnetwork to which VMs will be assigned. Should be of the form "regions/REGION/subnetworks/SUBNETWORK". If the [subnetwork is located in a Shared VPC network](https://cloud.google.com/dataflow/docs/guides/specifying-networks#shared), you must use the complete URL. For example `"googleapis.com/compute/v1/projects/PROJECT_ID/regions/REGION/subnetworks/SUBNET_NAME"`
|
919
919
|
:param pulumi.Input[str] temp_gcs_location: A writeable location on GCS for the Dataflow job to dump its temporary data.
|
@@ -1165,7 +1165,7 @@ class Job(pulumi.CustomResource):
|
|
1165
1165
|
:param pulumi.Input[str] project: The project in which the resource belongs. If it is not provided, the provider project is used.
|
1166
1166
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource and default labels configured on the provider.
|
1167
1167
|
:param pulumi.Input[str] region: The region in which the created job should run.
|
1168
|
-
:param pulumi.Input[str] service_account_email: The Service Account email used to create the job.
|
1168
|
+
:param pulumi.Input[str] service_account_email: The Service Account email used to create the job.
|
1169
1169
|
:param pulumi.Input[bool] skip_wait_on_job_termination: If set to `true`, Pulumi will treat `DRAINING` and `CANCELLING` as terminal states when deleting the resource, and will remove the resource from Pulumi state and move on. See above note.
|
1170
1170
|
:param pulumi.Input[str] state: The current state of the resource, selected from the [JobState enum](https://cloud.google.com/dataflow/docs/reference/rest/v1b3/projects.jobs#Job.JobState)
|
1171
1171
|
:param pulumi.Input[str] subnetwork: The subnetwork to which VMs will be assigned. Should be of the form "regions/REGION/subnetworks/SUBNETWORK". If the [subnetwork is located in a Shared VPC network](https://cloud.google.com/dataflow/docs/guides/specifying-networks#shared), you must use the complete URL. For example `"googleapis.com/compute/v1/projects/PROJECT_ID/regions/REGION/subnetworks/SUBNET_NAME"`
|
@@ -1344,7 +1344,7 @@ class Job(pulumi.CustomResource):
|
|
1344
1344
|
@pulumi.getter(name="serviceAccountEmail")
|
1345
1345
|
def service_account_email(self) -> pulumi.Output[Optional[str]]:
|
1346
1346
|
"""
|
1347
|
-
The Service Account email used to create the job.
|
1347
|
+
The Service Account email used to create the job.
|
1348
1348
|
"""
|
1349
1349
|
return pulumi.get(self, "service_account_email")
|
1350
1350
|
|
pulumi_gcp/iam/_inputs.py
CHANGED
@@ -18,10 +18,6 @@ __all__ = [
|
|
18
18
|
'DenyPolicyRuleDenyRuleDenialConditionArgs',
|
19
19
|
'WorkforcePoolAccessRestrictionsArgs',
|
20
20
|
'WorkforcePoolAccessRestrictionsAllowedServiceArgs',
|
21
|
-
'WorkforcePoolProviderExtraAttributesOauth2ClientArgs',
|
22
|
-
'WorkforcePoolProviderExtraAttributesOauth2ClientClientSecretArgs',
|
23
|
-
'WorkforcePoolProviderExtraAttributesOauth2ClientClientSecretValueArgs',
|
24
|
-
'WorkforcePoolProviderExtraAttributesOauth2ClientQueryParametersArgs',
|
25
21
|
'WorkforcePoolProviderOidcArgs',
|
26
22
|
'WorkforcePoolProviderOidcClientSecretArgs',
|
27
23
|
'WorkforcePoolProviderOidcClientSecretValueArgs',
|
@@ -498,189 +494,6 @@ class WorkforcePoolAccessRestrictionsAllowedServiceArgs:
|
|
498
494
|
pulumi.set(self, "domain", value)
|
499
495
|
|
500
496
|
|
501
|
-
@pulumi.input_type
|
502
|
-
class WorkforcePoolProviderExtraAttributesOauth2ClientArgs:
|
503
|
-
def __init__(__self__, *,
|
504
|
-
attributes_type: pulumi.Input[str],
|
505
|
-
client_id: pulumi.Input[str],
|
506
|
-
client_secret: pulumi.Input['WorkforcePoolProviderExtraAttributesOauth2ClientClientSecretArgs'],
|
507
|
-
issuer_uri: pulumi.Input[str],
|
508
|
-
query_parameters: Optional[pulumi.Input['WorkforcePoolProviderExtraAttributesOauth2ClientQueryParametersArgs']] = None):
|
509
|
-
"""
|
510
|
-
:param pulumi.Input[str] attributes_type: Represents the IdP and type of claims that should be fetched.
|
511
|
-
* AZURE_AD_GROUPS_MAIL: Used to get the user's group claims from the Azure AD identity provider using configuration provided
|
512
|
-
in ExtraAttributesOAuth2Client and 'mail' property of the 'microsoft.graph.group' object is used for claim mapping.
|
513
|
-
See https://learn.microsoft.com/en-us/graph/api/resources/group?view=graph-rest-1.0#properties for more details on
|
514
|
-
'microsoft.graph.group' properties. The attributes obtained from idntity provider are mapped to 'assertion.groups'. Possible values: ["AZURE_AD_GROUPS_MAIL"]
|
515
|
-
:param pulumi.Input[str] client_id: The OAuth 2.0 client ID for retrieving extra attributes from the identity provider. Required to get the Access Token using client credentials grant flow.
|
516
|
-
:param pulumi.Input['WorkforcePoolProviderExtraAttributesOauth2ClientClientSecretArgs'] client_secret: The OAuth 2.0 client secret for retrieving extra attributes from the identity provider. Required to get the Access Token using client credentials grant flow.
|
517
|
-
:param pulumi.Input[str] issuer_uri: The OIDC identity provider's issuer URI. Must be a valid URI using the 'https' scheme. Required to get the OIDC discovery document.
|
518
|
-
:param pulumi.Input['WorkforcePoolProviderExtraAttributesOauth2ClientQueryParametersArgs'] query_parameters: Represents the parameters to control which claims are fetched from an IdP.
|
519
|
-
"""
|
520
|
-
pulumi.set(__self__, "attributes_type", attributes_type)
|
521
|
-
pulumi.set(__self__, "client_id", client_id)
|
522
|
-
pulumi.set(__self__, "client_secret", client_secret)
|
523
|
-
pulumi.set(__self__, "issuer_uri", issuer_uri)
|
524
|
-
if query_parameters is not None:
|
525
|
-
pulumi.set(__self__, "query_parameters", query_parameters)
|
526
|
-
|
527
|
-
@property
|
528
|
-
@pulumi.getter(name="attributesType")
|
529
|
-
def attributes_type(self) -> pulumi.Input[str]:
|
530
|
-
"""
|
531
|
-
Represents the IdP and type of claims that should be fetched.
|
532
|
-
* AZURE_AD_GROUPS_MAIL: Used to get the user's group claims from the Azure AD identity provider using configuration provided
|
533
|
-
in ExtraAttributesOAuth2Client and 'mail' property of the 'microsoft.graph.group' object is used for claim mapping.
|
534
|
-
See https://learn.microsoft.com/en-us/graph/api/resources/group?view=graph-rest-1.0#properties for more details on
|
535
|
-
'microsoft.graph.group' properties. The attributes obtained from idntity provider are mapped to 'assertion.groups'. Possible values: ["AZURE_AD_GROUPS_MAIL"]
|
536
|
-
"""
|
537
|
-
return pulumi.get(self, "attributes_type")
|
538
|
-
|
539
|
-
@attributes_type.setter
|
540
|
-
def attributes_type(self, value: pulumi.Input[str]):
|
541
|
-
pulumi.set(self, "attributes_type", value)
|
542
|
-
|
543
|
-
@property
|
544
|
-
@pulumi.getter(name="clientId")
|
545
|
-
def client_id(self) -> pulumi.Input[str]:
|
546
|
-
"""
|
547
|
-
The OAuth 2.0 client ID for retrieving extra attributes from the identity provider. Required to get the Access Token using client credentials grant flow.
|
548
|
-
"""
|
549
|
-
return pulumi.get(self, "client_id")
|
550
|
-
|
551
|
-
@client_id.setter
|
552
|
-
def client_id(self, value: pulumi.Input[str]):
|
553
|
-
pulumi.set(self, "client_id", value)
|
554
|
-
|
555
|
-
@property
|
556
|
-
@pulumi.getter(name="clientSecret")
|
557
|
-
def client_secret(self) -> pulumi.Input['WorkforcePoolProviderExtraAttributesOauth2ClientClientSecretArgs']:
|
558
|
-
"""
|
559
|
-
The OAuth 2.0 client secret for retrieving extra attributes from the identity provider. Required to get the Access Token using client credentials grant flow.
|
560
|
-
"""
|
561
|
-
return pulumi.get(self, "client_secret")
|
562
|
-
|
563
|
-
@client_secret.setter
|
564
|
-
def client_secret(self, value: pulumi.Input['WorkforcePoolProviderExtraAttributesOauth2ClientClientSecretArgs']):
|
565
|
-
pulumi.set(self, "client_secret", value)
|
566
|
-
|
567
|
-
@property
|
568
|
-
@pulumi.getter(name="issuerUri")
|
569
|
-
def issuer_uri(self) -> pulumi.Input[str]:
|
570
|
-
"""
|
571
|
-
The OIDC identity provider's issuer URI. Must be a valid URI using the 'https' scheme. Required to get the OIDC discovery document.
|
572
|
-
"""
|
573
|
-
return pulumi.get(self, "issuer_uri")
|
574
|
-
|
575
|
-
@issuer_uri.setter
|
576
|
-
def issuer_uri(self, value: pulumi.Input[str]):
|
577
|
-
pulumi.set(self, "issuer_uri", value)
|
578
|
-
|
579
|
-
@property
|
580
|
-
@pulumi.getter(name="queryParameters")
|
581
|
-
def query_parameters(self) -> Optional[pulumi.Input['WorkforcePoolProviderExtraAttributesOauth2ClientQueryParametersArgs']]:
|
582
|
-
"""
|
583
|
-
Represents the parameters to control which claims are fetched from an IdP.
|
584
|
-
"""
|
585
|
-
return pulumi.get(self, "query_parameters")
|
586
|
-
|
587
|
-
@query_parameters.setter
|
588
|
-
def query_parameters(self, value: Optional[pulumi.Input['WorkforcePoolProviderExtraAttributesOauth2ClientQueryParametersArgs']]):
|
589
|
-
pulumi.set(self, "query_parameters", value)
|
590
|
-
|
591
|
-
|
592
|
-
@pulumi.input_type
|
593
|
-
class WorkforcePoolProviderExtraAttributesOauth2ClientClientSecretArgs:
|
594
|
-
def __init__(__self__, *,
|
595
|
-
value: Optional[pulumi.Input['WorkforcePoolProviderExtraAttributesOauth2ClientClientSecretValueArgs']] = None):
|
596
|
-
"""
|
597
|
-
:param pulumi.Input['WorkforcePoolProviderExtraAttributesOauth2ClientClientSecretValueArgs'] value: The value of the client secret.
|
598
|
-
Structure is documented below.
|
599
|
-
"""
|
600
|
-
if value is not None:
|
601
|
-
pulumi.set(__self__, "value", value)
|
602
|
-
|
603
|
-
@property
|
604
|
-
@pulumi.getter
|
605
|
-
def value(self) -> Optional[pulumi.Input['WorkforcePoolProviderExtraAttributesOauth2ClientClientSecretValueArgs']]:
|
606
|
-
"""
|
607
|
-
The value of the client secret.
|
608
|
-
Structure is documented below.
|
609
|
-
"""
|
610
|
-
return pulumi.get(self, "value")
|
611
|
-
|
612
|
-
@value.setter
|
613
|
-
def value(self, value: Optional[pulumi.Input['WorkforcePoolProviderExtraAttributesOauth2ClientClientSecretValueArgs']]):
|
614
|
-
pulumi.set(self, "value", value)
|
615
|
-
|
616
|
-
|
617
|
-
@pulumi.input_type
|
618
|
-
class WorkforcePoolProviderExtraAttributesOauth2ClientClientSecretValueArgs:
|
619
|
-
def __init__(__self__, *,
|
620
|
-
plain_text: pulumi.Input[str],
|
621
|
-
thumbprint: Optional[pulumi.Input[str]] = None):
|
622
|
-
"""
|
623
|
-
:param pulumi.Input[str] plain_text: The plain text of the client secret value.
|
624
|
-
:param pulumi.Input[str] thumbprint: (Output)
|
625
|
-
A thumbprint to represent the current client secret value.
|
626
|
-
"""
|
627
|
-
pulumi.set(__self__, "plain_text", plain_text)
|
628
|
-
if thumbprint is not None:
|
629
|
-
pulumi.set(__self__, "thumbprint", thumbprint)
|
630
|
-
|
631
|
-
@property
|
632
|
-
@pulumi.getter(name="plainText")
|
633
|
-
def plain_text(self) -> pulumi.Input[str]:
|
634
|
-
"""
|
635
|
-
The plain text of the client secret value.
|
636
|
-
"""
|
637
|
-
return pulumi.get(self, "plain_text")
|
638
|
-
|
639
|
-
@plain_text.setter
|
640
|
-
def plain_text(self, value: pulumi.Input[str]):
|
641
|
-
pulumi.set(self, "plain_text", value)
|
642
|
-
|
643
|
-
@property
|
644
|
-
@pulumi.getter
|
645
|
-
def thumbprint(self) -> Optional[pulumi.Input[str]]:
|
646
|
-
"""
|
647
|
-
(Output)
|
648
|
-
A thumbprint to represent the current client secret value.
|
649
|
-
"""
|
650
|
-
return pulumi.get(self, "thumbprint")
|
651
|
-
|
652
|
-
@thumbprint.setter
|
653
|
-
def thumbprint(self, value: Optional[pulumi.Input[str]]):
|
654
|
-
pulumi.set(self, "thumbprint", value)
|
655
|
-
|
656
|
-
|
657
|
-
@pulumi.input_type
|
658
|
-
class WorkforcePoolProviderExtraAttributesOauth2ClientQueryParametersArgs:
|
659
|
-
def __init__(__self__, *,
|
660
|
-
filter: Optional[pulumi.Input[str]] = None):
|
661
|
-
"""
|
662
|
-
:param pulumi.Input[str] filter: The filter used to request specific records from IdP. In case of attributes type as AZURE_AD_GROUPS_MAIL, it represents the
|
663
|
-
filter used to request specific groups for users from IdP. By default, all of the groups associated with the user are fetched. The
|
664
|
-
groups should be mail enabled and security enabled. See https://learn.microsoft.com/en-us/graph/search-query-parameter for more details.
|
665
|
-
"""
|
666
|
-
if filter is not None:
|
667
|
-
pulumi.set(__self__, "filter", filter)
|
668
|
-
|
669
|
-
@property
|
670
|
-
@pulumi.getter
|
671
|
-
def filter(self) -> Optional[pulumi.Input[str]]:
|
672
|
-
"""
|
673
|
-
The filter used to request specific records from IdP. In case of attributes type as AZURE_AD_GROUPS_MAIL, it represents the
|
674
|
-
filter used to request specific groups for users from IdP. By default, all of the groups associated with the user are fetched. The
|
675
|
-
groups should be mail enabled and security enabled. See https://learn.microsoft.com/en-us/graph/search-query-parameter for more details.
|
676
|
-
"""
|
677
|
-
return pulumi.get(self, "filter")
|
678
|
-
|
679
|
-
@filter.setter
|
680
|
-
def filter(self, value: Optional[pulumi.Input[str]]):
|
681
|
-
pulumi.set(self, "filter", value)
|
682
|
-
|
683
|
-
|
684
497
|
@pulumi.input_type
|
685
498
|
class WorkforcePoolProviderOidcArgs:
|
686
499
|
def __init__(__self__, *,
|
@@ -846,6 +659,7 @@ class WorkforcePoolProviderOidcClientSecretValueArgs:
|
|
846
659
|
thumbprint: Optional[pulumi.Input[str]] = None):
|
847
660
|
"""
|
848
661
|
:param pulumi.Input[str] plain_text: The plain text of the client secret value.
|
662
|
+
**Note**: This property is sensitive and will not be displayed in the plan.
|
849
663
|
:param pulumi.Input[str] thumbprint: (Output)
|
850
664
|
A thumbprint to represent the current client secret value.
|
851
665
|
"""
|
@@ -858,6 +672,7 @@ class WorkforcePoolProviderOidcClientSecretValueArgs:
|
|
858
672
|
def plain_text(self) -> pulumi.Input[str]:
|
859
673
|
"""
|
860
674
|
The plain text of the client secret value.
|
675
|
+
**Note**: This property is sensitive and will not be displayed in the plan.
|
861
676
|
"""
|
862
677
|
return pulumi.get(self, "plain_text")
|
863
678
|
|
@@ -897,8 +712,6 @@ class WorkforcePoolProviderOidcWebSsoConfigArgs:
|
|
897
712
|
Possible values are: `CODE`, `ID_TOKEN`.
|
898
713
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] additional_scopes: Additional scopes to request for in the OIDC authentication request on top of scopes requested by default. By default, the `openid`, `profile` and `email` scopes that are supported by the identity provider are requested.
|
899
714
|
Each additional scope may be at most 256 characters. A maximum of 10 additional scopes may be configured.
|
900
|
-
|
901
|
-
<a name="nested_extra_attributes_oauth2_client"></a>The `extra_attributes_oauth2_client` block supports:
|
902
715
|
"""
|
903
716
|
pulumi.set(__self__, "assertion_claims_behavior", assertion_claims_behavior)
|
904
717
|
pulumi.set(__self__, "response_type", response_type)
|
@@ -942,8 +755,6 @@ class WorkforcePoolProviderOidcWebSsoConfigArgs:
|
|
942
755
|
"""
|
943
756
|
Additional scopes to request for in the OIDC authentication request on top of scopes requested by default. By default, the `openid`, `profile` and `email` scopes that are supported by the identity provider are requested.
|
944
757
|
Each additional scope may be at most 256 characters. A maximum of 10 additional scopes may be configured.
|
945
|
-
|
946
|
-
<a name="nested_extra_attributes_oauth2_client"></a>The `extra_attributes_oauth2_client` block supports:
|
947
758
|
"""
|
948
759
|
return pulumi.get(self, "additional_scopes")
|
949
760
|
|