pulumi-gcp 7.20.0__py3-none-any.whl → 7.20.0a1713918100__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. pulumi_gcp/__init__.py +0 -8
  2. pulumi_gcp/apigee/organization.py +0 -162
  3. pulumi_gcp/artifactregistry/_inputs.py +0 -186
  4. pulumi_gcp/artifactregistry/outputs.py +4 -297
  5. pulumi_gcp/artifactregistry/repository.py +16 -346
  6. pulumi_gcp/bigquery/table.py +0 -61
  7. pulumi_gcp/billing/budget.py +0 -54
  8. pulumi_gcp/cloudfunctionsv2/_inputs.py +0 -16
  9. pulumi_gcp/cloudfunctionsv2/function.py +0 -110
  10. pulumi_gcp/cloudfunctionsv2/outputs.py +0 -25
  11. pulumi_gcp/compute/_inputs.py +0 -48
  12. pulumi_gcp/compute/get_instance_group_manager.py +1 -11
  13. pulumi_gcp/compute/instance_group_manager.py +21 -68
  14. pulumi_gcp/compute/outputs.py +0 -93
  15. pulumi_gcp/compute/region_instance_group_manager.py +14 -61
  16. pulumi_gcp/container/outputs.py +4 -4
  17. pulumi_gcp/dns/_inputs.py +128 -0
  18. pulumi_gcp/dns/get_keys.py +1 -1
  19. pulumi_gcp/dns/get_managed_zones.py +9 -3
  20. pulumi_gcp/dns/get_record_set.py +0 -3
  21. pulumi_gcp/dns/outputs.py +56 -34
  22. pulumi_gcp/firestore/document.py +4 -4
  23. pulumi_gcp/organizations/get_active_folder.py +3 -18
  24. pulumi_gcp/projects/__init__.py +0 -1
  25. pulumi_gcp/vmwareengine/_inputs.py +5 -63
  26. pulumi_gcp/vmwareengine/get_private_cloud.py +21 -1
  27. pulumi_gcp/vmwareengine/outputs.py +5 -113
  28. pulumi_gcp/vmwareengine/private_cloud.py +94 -0
  29. pulumi_gcp/workbench/instance.py +4 -4
  30. pulumi_gcp/workstations/workstation_cluster.py +0 -32
  31. {pulumi_gcp-7.20.0.dist-info → pulumi_gcp-7.20.0a1713918100.dist-info}/METADATA +1 -1
  32. {pulumi_gcp-7.20.0.dist-info → pulumi_gcp-7.20.0a1713918100.dist-info}/RECORD +34 -35
  33. pulumi_gcp/projects/iam_member_remove.py +0 -313
  34. {pulumi_gcp-7.20.0.dist-info → pulumi_gcp-7.20.0a1713918100.dist-info}/WHEEL +0 -0
  35. {pulumi_gcp-7.20.0.dist-info → pulumi_gcp-7.20.0a1713918100.dist-info}/top_level.txt +0 -0
@@ -15043,7 +15043,7 @@ class GetClusterMasterAuthorizedNetworksConfigResult(dict):
15043
15043
  gcp_public_cidrs_access_enabled: bool):
15044
15044
  """
15045
15045
  :param Sequence['GetClusterMasterAuthorizedNetworksConfigCidrBlockArgs'] cidr_blocks: External networks that can access the Kubernetes cluster master through HTTPS.
15046
- :param bool gcp_public_cidrs_access_enabled: Whether Kubernetes master is accessible via Google Compute Engine Public IPs.
15046
+ :param bool gcp_public_cidrs_access_enabled: Whether master is accessbile via Google Compute Engine Public IP addresses.
15047
15047
  """
15048
15048
  pulumi.set(__self__, "cidr_blocks", cidr_blocks)
15049
15049
  pulumi.set(__self__, "gcp_public_cidrs_access_enabled", gcp_public_cidrs_access_enabled)
@@ -15060,7 +15060,7 @@ class GetClusterMasterAuthorizedNetworksConfigResult(dict):
15060
15060
  @pulumi.getter(name="gcpPublicCidrsAccessEnabled")
15061
15061
  def gcp_public_cidrs_access_enabled(self) -> bool:
15062
15062
  """
15063
- Whether Kubernetes master is accessible via Google Compute Engine Public IPs.
15063
+ Whether master is accessbile via Google Compute Engine Public IP addresses.
15064
15064
  """
15065
15065
  return pulumi.get(self, "gcp_public_cidrs_access_enabled")
15066
15066
 
@@ -18403,7 +18403,7 @@ class GetClusterServiceExternalIpsConfigResult(dict):
18403
18403
  def __init__(__self__, *,
18404
18404
  enabled: bool):
18405
18405
  """
18406
- :param bool enabled: When enabled, services with external ips specified will be allowed.
18406
+ :param bool enabled: When enabled, services with exterenal ips specified will be allowed.
18407
18407
  """
18408
18408
  pulumi.set(__self__, "enabled", enabled)
18409
18409
 
@@ -18411,7 +18411,7 @@ class GetClusterServiceExternalIpsConfigResult(dict):
18411
18411
  @pulumi.getter
18412
18412
  def enabled(self) -> bool:
18413
18413
  """
18414
- When enabled, services with external ips specified will be allowed.
18414
+ When enabled, services with exterenal ips specified will be allowed.
18415
18415
  """
18416
18416
  return pulumi.get(self, "enabled")
18417
18417
 
pulumi_gcp/dns/_inputs.py CHANGED
@@ -44,6 +44,7 @@ __all__ = [
44
44
  'ResponsePolicyNetworkArgs',
45
45
  'ResponsePolicyRuleLocalDataArgs',
46
46
  'ResponsePolicyRuleLocalDataLocalDataArgs',
47
+ 'GetManagedZonesManagedZoneArgs',
47
48
  ]
48
49
 
49
50
  @pulumi.input_type
@@ -1686,3 +1687,130 @@ class ResponsePolicyRuleLocalDataLocalDataArgs:
1686
1687
  pulumi.set(self, "ttl", value)
1687
1688
 
1688
1689
 
1690
+ @pulumi.input_type
1691
+ class GetManagedZonesManagedZoneArgs:
1692
+ def __init__(__self__, *,
1693
+ description: str,
1694
+ dns_name: str,
1695
+ id: str,
1696
+ managed_zone_id: int,
1697
+ name: str,
1698
+ name_servers: Sequence[str],
1699
+ project: str,
1700
+ visibility: str):
1701
+ """
1702
+ :param str description: A textual description field.
1703
+ :param str dns_name: The fully qualified DNS name of this zone.
1704
+ :param str id: DNS managed zone identifier
1705
+ :param int managed_zone_id: Unique identifier for the resource; defined by the server.
1706
+ :param str name: A unique name for the resource.
1707
+ :param Sequence[str] name_servers: The list of nameservers that will be authoritative for this domain. Use NS records to redirect from your DNS provider to these names, thus making Google Cloud DNS authoritative for this zone.
1708
+ :param str project: The ID of the project containing Google Cloud DNS zones. If this is not provided the default project will be used.
1709
+ :param str visibility: The zone's visibility: public zones are exposed to the Internet, while private zones are visible only to Virtual Private Cloud resources.
1710
+ """
1711
+ pulumi.set(__self__, "description", description)
1712
+ pulumi.set(__self__, "dns_name", dns_name)
1713
+ pulumi.set(__self__, "id", id)
1714
+ pulumi.set(__self__, "managed_zone_id", managed_zone_id)
1715
+ pulumi.set(__self__, "name", name)
1716
+ pulumi.set(__self__, "name_servers", name_servers)
1717
+ pulumi.set(__self__, "project", project)
1718
+ pulumi.set(__self__, "visibility", visibility)
1719
+
1720
+ @property
1721
+ @pulumi.getter
1722
+ def description(self) -> str:
1723
+ """
1724
+ A textual description field.
1725
+ """
1726
+ return pulumi.get(self, "description")
1727
+
1728
+ @description.setter
1729
+ def description(self, value: str):
1730
+ pulumi.set(self, "description", value)
1731
+
1732
+ @property
1733
+ @pulumi.getter(name="dnsName")
1734
+ def dns_name(self) -> str:
1735
+ """
1736
+ The fully qualified DNS name of this zone.
1737
+ """
1738
+ return pulumi.get(self, "dns_name")
1739
+
1740
+ @dns_name.setter
1741
+ def dns_name(self, value: str):
1742
+ pulumi.set(self, "dns_name", value)
1743
+
1744
+ @property
1745
+ @pulumi.getter
1746
+ def id(self) -> str:
1747
+ """
1748
+ DNS managed zone identifier
1749
+ """
1750
+ return pulumi.get(self, "id")
1751
+
1752
+ @id.setter
1753
+ def id(self, value: str):
1754
+ pulumi.set(self, "id", value)
1755
+
1756
+ @property
1757
+ @pulumi.getter(name="managedZoneId")
1758
+ def managed_zone_id(self) -> int:
1759
+ """
1760
+ Unique identifier for the resource; defined by the server.
1761
+ """
1762
+ return pulumi.get(self, "managed_zone_id")
1763
+
1764
+ @managed_zone_id.setter
1765
+ def managed_zone_id(self, value: int):
1766
+ pulumi.set(self, "managed_zone_id", value)
1767
+
1768
+ @property
1769
+ @pulumi.getter
1770
+ def name(self) -> str:
1771
+ """
1772
+ A unique name for the resource.
1773
+ """
1774
+ return pulumi.get(self, "name")
1775
+
1776
+ @name.setter
1777
+ def name(self, value: str):
1778
+ pulumi.set(self, "name", value)
1779
+
1780
+ @property
1781
+ @pulumi.getter(name="nameServers")
1782
+ def name_servers(self) -> Sequence[str]:
1783
+ """
1784
+ The list of nameservers that will be authoritative for this domain. Use NS records to redirect from your DNS provider to these names, thus making Google Cloud DNS authoritative for this zone.
1785
+ """
1786
+ return pulumi.get(self, "name_servers")
1787
+
1788
+ @name_servers.setter
1789
+ def name_servers(self, value: Sequence[str]):
1790
+ pulumi.set(self, "name_servers", value)
1791
+
1792
+ @property
1793
+ @pulumi.getter
1794
+ def project(self) -> str:
1795
+ """
1796
+ The ID of the project containing Google Cloud DNS zones. If this is not provided the default project will be used.
1797
+ """
1798
+ return pulumi.get(self, "project")
1799
+
1800
+ @project.setter
1801
+ def project(self, value: str):
1802
+ pulumi.set(self, "project", value)
1803
+
1804
+ @property
1805
+ @pulumi.getter
1806
+ def visibility(self) -> str:
1807
+ """
1808
+ The zone's visibility: public zones are exposed to the Internet, while private zones are visible only to Virtual Private Cloud resources.
1809
+ """
1810
+ return pulumi.get(self, "visibility")
1811
+
1812
+ @visibility.setter
1813
+ def visibility(self, value: str):
1814
+ pulumi.set(self, "visibility", value)
1815
+
1816
+
@@ -43,7 +43,7 @@ class GetKeysResult:
43
43
  @pulumi.getter
44
44
  def id(self) -> str:
45
45
  """
46
- The provider-assigned unique ID for this managed resource.
46
+ Unique identifier for the resource; defined by the server.
47
47
  """
48
48
  return pulumi.get(self, "id")
49
49
 
@@ -9,6 +9,7 @@ import pulumi.runtime
9
9
  from typing import Any, Mapping, Optional, Sequence, Union, overload
10
10
  from .. import _utilities
11
11
  from . import outputs
12
+ from ._inputs import *
12
13
 
13
14
  __all__ = [
14
15
  'GetManagedZonesResult',
@@ -40,7 +41,7 @@ class GetManagedZonesResult:
40
41
 
41
42
  @property
42
43
  @pulumi.getter(name="managedZones")
43
- def managed_zones(self) -> Sequence['outputs.GetManagedZonesManagedZoneResult']:
44
+ def managed_zones(self) -> Optional[Sequence['outputs.GetManagedZonesManagedZoneResult']]:
44
45
  """
45
46
  A list of managed zones.
46
47
  """
@@ -63,7 +64,8 @@ class AwaitableGetManagedZonesResult(GetManagedZonesResult):
63
64
  project=self.project)
64
65
 
65
66
 
66
- def get_managed_zones(project: Optional[str] = None,
67
+ def get_managed_zones(managed_zones: Optional[Sequence[pulumi.InputType['GetManagedZonesManagedZoneArgs']]] = None,
68
+ project: Optional[str] = None,
67
69
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetManagedZonesResult:
68
70
  """
69
71
  Provides access to a list of zones within Google Cloud DNS.
@@ -80,9 +82,11 @@ def get_managed_zones(project: Optional[str] = None,
80
82
  ```
81
83
 
82
84
 
85
+ :param Sequence[pulumi.InputType['GetManagedZonesManagedZoneArgs']] managed_zones: A list of managed zones.
83
86
  :param str project: The ID of the project containing Google Cloud DNS zones. If this is not provided the default project will be used.
84
87
  """
85
88
  __args__ = dict()
89
+ __args__['managedZones'] = managed_zones
86
90
  __args__['project'] = project
87
91
  opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
88
92
  __ret__ = pulumi.runtime.invoke('gcp:dns/getManagedZones:getManagedZones', __args__, opts=opts, typ=GetManagedZonesResult).value
@@ -94,7 +98,8 @@ def get_managed_zones(project: Optional[str] = None,
94
98
 
95
99
 
96
100
  @_utilities.lift_output_func(get_managed_zones)
97
- def get_managed_zones_output(project: Optional[pulumi.Input[Optional[str]]] = None,
101
+ def get_managed_zones_output(managed_zones: Optional[pulumi.Input[Optional[Sequence[pulumi.InputType['GetManagedZonesManagedZoneArgs']]]]] = None,
102
+ project: Optional[pulumi.Input[Optional[str]]] = None,
98
103
  opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetManagedZonesResult]:
99
104
  """
100
105
  Provides access to a list of zones within Google Cloud DNS.
@@ -111,6 +116,7 @@ def get_managed_zones_output(project: Optional[pulumi.Input[Optional[str]]] = No
111
116
  ```
112
117
 
113
118
 
119
+ :param Sequence[pulumi.InputType['GetManagedZonesManagedZoneArgs']] managed_zones: A list of managed zones.
114
120
  :param str project: The ID of the project containing Google Cloud DNS zones. If this is not provided the default project will be used.
115
121
  """
116
122
  ...
@@ -47,9 +47,6 @@ class GetRecordSetResult:
47
47
  @property
48
48
  @pulumi.getter
49
49
  def id(self) -> str:
50
- """
51
- The provider-assigned unique ID for this managed resource.
52
- """
53
50
  return pulumi.get(self, "id")
54
51
 
55
52
  @property
pulumi_gcp/dns/outputs.py CHANGED
@@ -2016,20 +2016,18 @@ class GetKeysKeySigningKeyResult(dict):
2016
2016
  @pulumi.output_type
2017
2017
  class GetKeysKeySigningKeyDigestResult(dict):
2018
2018
  def __init__(__self__, *,
2019
- digest: Optional[str] = None,
2020
- type: Optional[str] = None):
2019
+ digest: str,
2020
+ type: str):
2021
2021
  """
2022
2022
  :param str digest: The base-16 encoded bytes of this digest. Suitable for use in a DS resource record.
2023
2023
  :param str type: Specifies the algorithm used to calculate this digest. Possible values are `sha1`, `sha256` and `sha384`
2024
2024
  """
2025
- if digest is not None:
2026
- pulumi.set(__self__, "digest", digest)
2027
- if type is not None:
2028
- pulumi.set(__self__, "type", type)
2025
+ pulumi.set(__self__, "digest", digest)
2026
+ pulumi.set(__self__, "type", type)
2029
2027
 
2030
2028
  @property
2031
2029
  @pulumi.getter
2032
- def digest(self) -> Optional[str]:
2030
+ def digest(self) -> str:
2033
2031
  """
2034
2032
  The base-16 encoded bytes of this digest. Suitable for use in a DS resource record.
2035
2033
  """
@@ -2037,7 +2035,7 @@ class GetKeysKeySigningKeyDigestResult(dict):
2037
2035
 
2038
2036
  @property
2039
2037
  @pulumi.getter
2040
- def type(self) -> Optional[str]:
2038
+ def type(self) -> str:
2041
2039
  """
2042
2040
  Specifies the algorithm used to calculate this digest. Possible values are `sha1`, `sha256` and `sha384`
2043
2041
  """
@@ -2153,20 +2151,18 @@ class GetKeysZoneSigningKeyResult(dict):
2153
2151
  @pulumi.output_type
2154
2152
  class GetKeysZoneSigningKeyDigestResult(dict):
2155
2153
  def __init__(__self__, *,
2156
- digest: Optional[str] = None,
2157
- type: Optional[str] = None):
2154
+ digest: str,
2155
+ type: str):
2158
2156
  """
2159
2157
  :param str digest: The base-16 encoded bytes of this digest. Suitable for use in a DS resource record.
2160
2158
  :param str type: Specifies the algorithm used to calculate this digest. Possible values are `sha1`, `sha256` and `sha384`
2161
2159
  """
2162
- if digest is not None:
2163
- pulumi.set(__self__, "digest", digest)
2164
- if type is not None:
2165
- pulumi.set(__self__, "type", type)
2160
+ pulumi.set(__self__, "digest", digest)
2161
+ pulumi.set(__self__, "type", type)
2166
2162
 
2167
2163
  @property
2168
2164
  @pulumi.getter
2169
- def digest(self) -> Optional[str]:
2165
+ def digest(self) -> str:
2170
2166
  """
2171
2167
  The base-16 encoded bytes of this digest. Suitable for use in a DS resource record.
2172
2168
  """
@@ -2174,7 +2170,7 @@ class GetKeysZoneSigningKeyDigestResult(dict):
2174
2170
 
2175
2171
  @property
2176
2172
  @pulumi.getter
2177
- def type(self) -> Optional[str]:
2173
+ def type(self) -> str:
2178
2174
  """
2179
2175
  Specifies the algorithm used to calculate this digest. Possible values are `sha1`, `sha256` and `sha384`
2180
2176
  """
@@ -2188,65 +2184,91 @@ class GetManagedZonesManagedZoneResult(dict):
2188
2184
  dns_name: str,
2189
2185
  id: str,
2190
2186
  managed_zone_id: int,
2187
+ name: str,
2191
2188
  name_servers: Sequence[str],
2192
- visibility: str,
2193
- name: Optional[str] = None,
2194
- project: Optional[str] = None):
2195
- """
2189
+ project: str,
2190
+ visibility: str):
2191
+ """
2192
+ :param str description: A textual description field.
2193
+ :param str dns_name: The fully qualified DNS name of this zone.
2194
+ :param str id: DNS managed zone identifier
2195
+ :param int managed_zone_id: Unique identifier for the resource; defined by the server.
2196
+ :param str name: A unique name for the resource.
2197
+ :param Sequence[str] name_servers: The list of nameservers that will be authoritative for this domain. Use NS records to redirect from your DNS provider to these names, thus making Google Cloud DNS authoritative for this zone.
2196
2198
  :param str project: The ID of the project containing Google Cloud DNS zones. If this is not provided the default project will be used.
2199
+ :param str visibility: The zone's visibility: public zones are exposed to the Internet, while private zones are visible only to Virtual Private Cloud resources.
2197
2200
  """
2198
2201
  pulumi.set(__self__, "description", description)
2199
2202
  pulumi.set(__self__, "dns_name", dns_name)
2200
2203
  pulumi.set(__self__, "id", id)
2201
2204
  pulumi.set(__self__, "managed_zone_id", managed_zone_id)
2205
+ pulumi.set(__self__, "name", name)
2202
2206
  pulumi.set(__self__, "name_servers", name_servers)
2207
+ pulumi.set(__self__, "project", project)
2203
2208
  pulumi.set(__self__, "visibility", visibility)
2204
- if name is not None:
2205
- pulumi.set(__self__, "name", name)
2206
- if project is not None:
2207
- pulumi.set(__self__, "project", project)
2208
2209
 
2209
2210
  @property
2210
2211
  @pulumi.getter
2211
2212
  def description(self) -> str:
2213
+ """
2214
+ A textual description field.
2215
+ """
2212
2216
  return pulumi.get(self, "description")
2213
2217
 
2214
2218
  @property
2215
2219
  @pulumi.getter(name="dnsName")
2216
2220
  def dns_name(self) -> str:
2221
+ """
2222
+ The fully qualified DNS name of this zone.
2223
+ """
2217
2224
  return pulumi.get(self, "dns_name")
2218
2225
 
2219
2226
  @property
2220
2227
  @pulumi.getter
2221
2228
  def id(self) -> str:
2229
+ """
2230
+ DNS managed zone identifier
2231
+ """
2222
2232
  return pulumi.get(self, "id")
2223
2233
 
2224
2234
  @property
2225
2235
  @pulumi.getter(name="managedZoneId")
2226
2236
  def managed_zone_id(self) -> int:
2237
+ """
2238
+ Unique identifier for the resource; defined by the server.
2239
+ """
2227
2240
  return pulumi.get(self, "managed_zone_id")
2228
2241
 
2242
+ @property
2243
+ @pulumi.getter
2244
+ def name(self) -> str:
2245
+ """
2246
+ A unique name for the resource.
2247
+ """
2248
+ return pulumi.get(self, "name")
2249
+
2229
2250
  @property
2230
2251
  @pulumi.getter(name="nameServers")
2231
2252
  def name_servers(self) -> Sequence[str]:
2253
+ """
2254
+ The list of nameservers that will be authoritative for this domain. Use NS records to redirect from your DNS provider to these names, thus making Google Cloud DNS authoritative for this zone.
2255
+ """
2232
2256
  return pulumi.get(self, "name_servers")
2233
2257
 
2234
2258
  @property
2235
2259
  @pulumi.getter
2236
- def visibility(self) -> str:
2237
- return pulumi.get(self, "visibility")
2238
-
2239
- @property
2240
- @pulumi.getter
2241
- def name(self) -> Optional[str]:
2242
- return pulumi.get(self, "name")
2260
+ def project(self) -> str:
2261
+ """
2262
+ The ID of the project containing Google Cloud DNS zones. If this is not provided the default project will be used.
2263
+ """
2264
+ return pulumi.get(self, "project")
2243
2265
 
2244
2266
  @property
2245
2267
  @pulumi.getter
2246
- def project(self) -> Optional[str]:
2268
+ def visibility(self) -> str:
2247
2269
  """
2248
- The ID of the project containing Google Cloud DNS zones. If this is not provided the default project will be used.
2270
+ The zone's visibility: public zones are exposed to the Internet, while private zones are visible only to Virtual Private Cloud resources.
2249
2271
  """
2250
- return pulumi.get(self, "project")
2272
+ return pulumi.get(self, "visibility")
2251
2273
 
2252
2274
 
@@ -126,7 +126,7 @@ class _DocumentState:
126
126
 
127
127
  - - -
128
128
  :param pulumi.Input[str] fields: The document's [fields](https://cloud.google.com/firestore/docs/reference/rest/v1/projects.databases.documents) formated as a json string.
129
- :param pulumi.Input[str] name: A server defined name for this document. Format:
129
+ :param pulumi.Input[str] name: A server defined name for this index. Format:
130
130
  `projects/{{project_id}}/databases/{{database_id}}/documents/{{path}}/{{document_id}}`
131
131
  :param pulumi.Input[str] path: A relative path to the collection this document exists within
132
132
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
@@ -219,7 +219,7 @@ class _DocumentState:
219
219
  @pulumi.getter
220
220
  def name(self) -> Optional[pulumi.Input[str]]:
221
221
  """
222
- A server defined name for this document. Format:
222
+ A server defined name for this index. Format:
223
223
  `projects/{{project_id}}/databases/{{database_id}}/documents/{{path}}/{{document_id}}`
224
224
  """
225
225
  return pulumi.get(self, "name")
@@ -573,7 +573,7 @@ class Document(pulumi.CustomResource):
573
573
 
574
574
  - - -
575
575
  :param pulumi.Input[str] fields: The document's [fields](https://cloud.google.com/firestore/docs/reference/rest/v1/projects.databases.documents) formated as a json string.
576
- :param pulumi.Input[str] name: A server defined name for this document. Format:
576
+ :param pulumi.Input[str] name: A server defined name for this index. Format:
577
577
  `projects/{{project_id}}/databases/{{database_id}}/documents/{{path}}/{{document_id}}`
578
578
  :param pulumi.Input[str] path: A relative path to the collection this document exists within
579
579
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
@@ -642,7 +642,7 @@ class Document(pulumi.CustomResource):
642
642
  @pulumi.getter
643
643
  def name(self) -> pulumi.Output[str]:
644
644
  """
645
- A server defined name for this document. Format:
645
+ A server defined name for this index. Format:
646
646
  `projects/{{project_id}}/databases/{{database_id}}/documents/{{path}}/{{document_id}}`
647
647
  """
648
648
  return pulumi.get(self, "name")
@@ -21,10 +21,7 @@ class GetActiveFolderResult:
21
21
  """
22
22
  A collection of values returned by getActiveFolder.
23
23
  """
24
- def __init__(__self__, api_method=None, display_name=None, id=None, name=None, parent=None):
25
- if api_method and not isinstance(api_method, str):
26
- raise TypeError("Expected argument 'api_method' to be a str")
27
- pulumi.set(__self__, "api_method", api_method)
24
+ def __init__(__self__, display_name=None, id=None, name=None, parent=None):
28
25
  if display_name and not isinstance(display_name, str):
29
26
  raise TypeError("Expected argument 'display_name' to be a str")
30
27
  pulumi.set(__self__, "display_name", display_name)
@@ -38,11 +35,6 @@ class GetActiveFolderResult:
38
35
  raise TypeError("Expected argument 'parent' to be a str")
39
36
  pulumi.set(__self__, "parent", parent)
40
37
 
41
- @property
42
- @pulumi.getter(name="apiMethod")
43
- def api_method(self) -> Optional[str]:
44
- return pulumi.get(self, "api_method")
45
-
46
38
  @property
47
39
  @pulumi.getter(name="displayName")
48
40
  def display_name(self) -> str:
@@ -76,15 +68,13 @@ class AwaitableGetActiveFolderResult(GetActiveFolderResult):
76
68
  if False:
77
69
  yield self
78
70
  return GetActiveFolderResult(
79
- api_method=self.api_method,
80
71
  display_name=self.display_name,
81
72
  id=self.id,
82
73
  name=self.name,
83
74
  parent=self.parent)
84
75
 
85
76
 
86
- def get_active_folder(api_method: Optional[str] = None,
87
- display_name: Optional[str] = None,
77
+ def get_active_folder(display_name: Optional[str] = None,
88
78
  parent: Optional[str] = None,
89
79
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetActiveFolderResult:
90
80
  """
@@ -93,19 +83,16 @@ def get_active_folder(api_method: Optional[str] = None,
93
83
  ## Example Usage
94
84
 
95
85
 
96
- :param str api_method: The API method to use to search for the folder. Valid values are `LIST` and `SEARCH`. Default Value is `LIST`. `LIST` is [strongly consistent](https://cloud.google.com/resource-manager/reference/rest/v3/folders/list#:~:text=list()%20provides%20a-,strongly%20consistent,-view%20of%20the) and requires `resourcemanager.folders.list` on the parent folder, while `SEARCH` is [eventually consistent](https://cloud.google.com/resource-manager/reference/rest/v3/folders/search#:~:text=eventually%20consistent) and only returns folders that the user has `resourcemanager.folders.get` permission on.
97
86
  :param str display_name: The folder's display name.
98
87
  :param str parent: The resource name of the parent Folder or Organization.
99
88
  """
100
89
  __args__ = dict()
101
- __args__['apiMethod'] = api_method
102
90
  __args__['displayName'] = display_name
103
91
  __args__['parent'] = parent
104
92
  opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
105
93
  __ret__ = pulumi.runtime.invoke('gcp:organizations/getActiveFolder:getActiveFolder', __args__, opts=opts, typ=GetActiveFolderResult).value
106
94
 
107
95
  return AwaitableGetActiveFolderResult(
108
- api_method=pulumi.get(__ret__, 'api_method'),
109
96
  display_name=pulumi.get(__ret__, 'display_name'),
110
97
  id=pulumi.get(__ret__, 'id'),
111
98
  name=pulumi.get(__ret__, 'name'),
@@ -113,8 +100,7 @@ def get_active_folder(api_method: Optional[str] = None,
113
100
 
114
101
 
115
102
  @_utilities.lift_output_func(get_active_folder)
116
- def get_active_folder_output(api_method: Optional[pulumi.Input[Optional[str]]] = None,
117
- display_name: Optional[pulumi.Input[str]] = None,
103
+ def get_active_folder_output(display_name: Optional[pulumi.Input[str]] = None,
118
104
  parent: Optional[pulumi.Input[str]] = None,
119
105
  opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetActiveFolderResult]:
120
106
  """
@@ -123,7 +109,6 @@ def get_active_folder_output(api_method: Optional[pulumi.Input[Optional[str]]] =
123
109
  ## Example Usage
124
110
 
125
111
 
126
- :param str api_method: The API method to use to search for the folder. Valid values are `LIST` and `SEARCH`. Default Value is `LIST`. `LIST` is [strongly consistent](https://cloud.google.com/resource-manager/reference/rest/v3/folders/list#:~:text=list()%20provides%20a-,strongly%20consistent,-view%20of%20the) and requires `resourcemanager.folders.list` on the parent folder, while `SEARCH` is [eventually consistent](https://cloud.google.com/resource-manager/reference/rest/v3/folders/search#:~:text=eventually%20consistent) and only returns folders that the user has `resourcemanager.folders.get` permission on.
127
112
  :param str display_name: The folder's display name.
128
113
  :param str parent: The resource name of the parent Folder or Organization.
129
114
  """
@@ -16,7 +16,6 @@ from .iam_audit_config import *
16
16
  from .iam_binding import *
17
17
  from .iam_custom_role import *
18
18
  from .iam_member import *
19
- from .iam_member_remove import *
20
19
  from .iam_policy import *
21
20
  from .organization_policy import *
22
21
  from .service import *