pulumi-gcp 7.20.0__py3-none-any.whl → 7.20.0a1713984378__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 -8
- pulumi_gcp/apigee/organization.py +0 -162
- pulumi_gcp/artifactregistry/_inputs.py +0 -186
- pulumi_gcp/artifactregistry/outputs.py +4 -297
- pulumi_gcp/artifactregistry/repository.py +16 -346
- pulumi_gcp/bigquery/table.py +0 -61
- pulumi_gcp/billing/budget.py +0 -54
- pulumi_gcp/cloudfunctionsv2/_inputs.py +0 -16
- pulumi_gcp/cloudfunctionsv2/function.py +0 -110
- pulumi_gcp/cloudfunctionsv2/outputs.py +0 -25
- pulumi_gcp/compute/_inputs.py +0 -48
- pulumi_gcp/compute/get_instance_group_manager.py +1 -11
- pulumi_gcp/compute/instance_group_manager.py +21 -68
- pulumi_gcp/compute/outputs.py +0 -93
- pulumi_gcp/compute/region_instance_group_manager.py +14 -61
- pulumi_gcp/container/outputs.py +4 -4
- pulumi_gcp/dns/_inputs.py +128 -0
- pulumi_gcp/dns/get_keys.py +1 -1
- pulumi_gcp/dns/get_managed_zones.py +9 -3
- pulumi_gcp/dns/get_record_set.py +0 -3
- pulumi_gcp/dns/outputs.py +56 -34
- pulumi_gcp/firestore/document.py +4 -4
- pulumi_gcp/organizations/get_active_folder.py +3 -18
- pulumi_gcp/projects/__init__.py +0 -1
- pulumi_gcp/vmwareengine/_inputs.py +5 -63
- pulumi_gcp/vmwareengine/get_private_cloud.py +21 -1
- pulumi_gcp/vmwareengine/outputs.py +5 -113
- pulumi_gcp/vmwareengine/private_cloud.py +94 -0
- pulumi_gcp/workbench/instance.py +4 -4
- pulumi_gcp/workstations/workstation_cluster.py +0 -32
- {pulumi_gcp-7.20.0.dist-info → pulumi_gcp-7.20.0a1713984378.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.20.0.dist-info → pulumi_gcp-7.20.0a1713984378.dist-info}/RECORD +34 -35
- pulumi_gcp/projects/iam_member_remove.py +0 -313
- {pulumi_gcp-7.20.0.dist-info → pulumi_gcp-7.20.0a1713984378.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.20.0.dist-info → pulumi_gcp-7.20.0a1713984378.dist-info}/top_level.txt +0 -0
pulumi_gcp/__init__.py
CHANGED
@@ -6305,14 +6305,6 @@ _utilities.register(
|
|
6305
6305
|
"gcp:projects/iAMPolicy:IAMPolicy": "IAMPolicy"
|
6306
6306
|
}
|
6307
6307
|
},
|
6308
|
-
{
|
6309
|
-
"pkg": "gcp",
|
6310
|
-
"mod": "projects/iamMemberRemove",
|
6311
|
-
"fqn": "pulumi_gcp.projects",
|
6312
|
-
"classes": {
|
6313
|
-
"gcp:projects/iamMemberRemove:IamMemberRemove": "IamMemberRemove"
|
6314
|
-
}
|
6315
|
-
},
|
6316
6308
|
{
|
6317
6309
|
"pkg": "gcp",
|
6318
6310
|
"mod": "projects/organizationPolicy",
|
@@ -18,11 +18,8 @@ class OrganizationArgs:
|
|
18
18
|
def __init__(__self__, *,
|
19
19
|
project_id: pulumi.Input[str],
|
20
20
|
analytics_region: Optional[pulumi.Input[str]] = None,
|
21
|
-
api_consumer_data_encryption_key_name: Optional[pulumi.Input[str]] = None,
|
22
|
-
api_consumer_data_location: Optional[pulumi.Input[str]] = None,
|
23
21
|
authorized_network: Optional[pulumi.Input[str]] = None,
|
24
22
|
billing_type: Optional[pulumi.Input[str]] = None,
|
25
|
-
control_plane_encryption_key_name: Optional[pulumi.Input[str]] = None,
|
26
23
|
description: Optional[pulumi.Input[str]] = None,
|
27
24
|
disable_vpc_peering: Optional[pulumi.Input[bool]] = None,
|
28
25
|
display_name: Optional[pulumi.Input[str]] = None,
|
@@ -37,16 +34,10 @@ class OrganizationArgs:
|
|
37
34
|
|
38
35
|
- - -
|
39
36
|
:param pulumi.Input[str] analytics_region: Primary GCP region for analytics data storage. For valid values, see [Create an Apigee organization](https://cloud.google.com/apigee/docs/api-platform/get-started/create-org).
|
40
|
-
:param pulumi.Input[str] api_consumer_data_encryption_key_name: Cloud KMS key name used for encrypting API consumer data.
|
41
|
-
:param pulumi.Input[str] api_consumer_data_location: This field is needed only for customers using non-default data residency regions.
|
42
|
-
Apigee stores some control plane data only in single region.
|
43
|
-
This field determines which single region Apigee should use.
|
44
37
|
:param pulumi.Input[str] authorized_network: Compute Engine network used for Service Networking to be peered with Apigee runtime instances.
|
45
38
|
See [Getting started with the Service Networking API](https://cloud.google.com/service-infrastructure/docs/service-networking/getting-started).
|
46
39
|
Valid only when `RuntimeType` is set to CLOUD. The value can be updated only when there are no runtime instances. For example: "default".
|
47
40
|
:param pulumi.Input[str] billing_type: Billing type of the Apigee organization. See [Apigee pricing](https://cloud.google.com/apigee/pricing).
|
48
|
-
:param pulumi.Input[str] control_plane_encryption_key_name: Cloud KMS key name used for encrypting control plane data that is stored in a multi region.
|
49
|
-
Only used for the data residency region "US" or "EU".
|
50
41
|
:param pulumi.Input[str] description: Description of the Apigee organization.
|
51
42
|
:param pulumi.Input[bool] disable_vpc_peering: Flag that specifies whether the VPC Peering through Private Google Access should be
|
52
43
|
disabled between the consumer network and Apigee. Required if an `authorizedNetwork`
|
@@ -73,16 +64,10 @@ class OrganizationArgs:
|
|
73
64
|
pulumi.set(__self__, "project_id", project_id)
|
74
65
|
if analytics_region is not None:
|
75
66
|
pulumi.set(__self__, "analytics_region", analytics_region)
|
76
|
-
if api_consumer_data_encryption_key_name is not None:
|
77
|
-
pulumi.set(__self__, "api_consumer_data_encryption_key_name", api_consumer_data_encryption_key_name)
|
78
|
-
if api_consumer_data_location is not None:
|
79
|
-
pulumi.set(__self__, "api_consumer_data_location", api_consumer_data_location)
|
80
67
|
if authorized_network is not None:
|
81
68
|
pulumi.set(__self__, "authorized_network", authorized_network)
|
82
69
|
if billing_type is not None:
|
83
70
|
pulumi.set(__self__, "billing_type", billing_type)
|
84
|
-
if control_plane_encryption_key_name is not None:
|
85
|
-
pulumi.set(__self__, "control_plane_encryption_key_name", control_plane_encryption_key_name)
|
86
71
|
if description is not None:
|
87
72
|
pulumi.set(__self__, "description", description)
|
88
73
|
if disable_vpc_peering is not None:
|
@@ -125,32 +110,6 @@ class OrganizationArgs:
|
|
125
110
|
def analytics_region(self, value: Optional[pulumi.Input[str]]):
|
126
111
|
pulumi.set(self, "analytics_region", value)
|
127
112
|
|
128
|
-
@property
|
129
|
-
@pulumi.getter(name="apiConsumerDataEncryptionKeyName")
|
130
|
-
def api_consumer_data_encryption_key_name(self) -> Optional[pulumi.Input[str]]:
|
131
|
-
"""
|
132
|
-
Cloud KMS key name used for encrypting API consumer data.
|
133
|
-
"""
|
134
|
-
return pulumi.get(self, "api_consumer_data_encryption_key_name")
|
135
|
-
|
136
|
-
@api_consumer_data_encryption_key_name.setter
|
137
|
-
def api_consumer_data_encryption_key_name(self, value: Optional[pulumi.Input[str]]):
|
138
|
-
pulumi.set(self, "api_consumer_data_encryption_key_name", value)
|
139
|
-
|
140
|
-
@property
|
141
|
-
@pulumi.getter(name="apiConsumerDataLocation")
|
142
|
-
def api_consumer_data_location(self) -> Optional[pulumi.Input[str]]:
|
143
|
-
"""
|
144
|
-
This field is needed only for customers using non-default data residency regions.
|
145
|
-
Apigee stores some control plane data only in single region.
|
146
|
-
This field determines which single region Apigee should use.
|
147
|
-
"""
|
148
|
-
return pulumi.get(self, "api_consumer_data_location")
|
149
|
-
|
150
|
-
@api_consumer_data_location.setter
|
151
|
-
def api_consumer_data_location(self, value: Optional[pulumi.Input[str]]):
|
152
|
-
pulumi.set(self, "api_consumer_data_location", value)
|
153
|
-
|
154
113
|
@property
|
155
114
|
@pulumi.getter(name="authorizedNetwork")
|
156
115
|
def authorized_network(self) -> Optional[pulumi.Input[str]]:
|
@@ -177,19 +136,6 @@ class OrganizationArgs:
|
|
177
136
|
def billing_type(self, value: Optional[pulumi.Input[str]]):
|
178
137
|
pulumi.set(self, "billing_type", value)
|
179
138
|
|
180
|
-
@property
|
181
|
-
@pulumi.getter(name="controlPlaneEncryptionKeyName")
|
182
|
-
def control_plane_encryption_key_name(self) -> Optional[pulumi.Input[str]]:
|
183
|
-
"""
|
184
|
-
Cloud KMS key name used for encrypting control plane data that is stored in a multi region.
|
185
|
-
Only used for the data residency region "US" or "EU".
|
186
|
-
"""
|
187
|
-
return pulumi.get(self, "control_plane_encryption_key_name")
|
188
|
-
|
189
|
-
@control_plane_encryption_key_name.setter
|
190
|
-
def control_plane_encryption_key_name(self, value: Optional[pulumi.Input[str]]):
|
191
|
-
pulumi.set(self, "control_plane_encryption_key_name", value)
|
192
|
-
|
193
139
|
@property
|
194
140
|
@pulumi.getter
|
195
141
|
def description(self) -> Optional[pulumi.Input[str]]:
|
@@ -294,13 +240,10 @@ class OrganizationArgs:
|
|
294
240
|
class _OrganizationState:
|
295
241
|
def __init__(__self__, *,
|
296
242
|
analytics_region: Optional[pulumi.Input[str]] = None,
|
297
|
-
api_consumer_data_encryption_key_name: Optional[pulumi.Input[str]] = None,
|
298
|
-
api_consumer_data_location: Optional[pulumi.Input[str]] = None,
|
299
243
|
apigee_project_id: Optional[pulumi.Input[str]] = None,
|
300
244
|
authorized_network: Optional[pulumi.Input[str]] = None,
|
301
245
|
billing_type: Optional[pulumi.Input[str]] = None,
|
302
246
|
ca_certificate: Optional[pulumi.Input[str]] = None,
|
303
|
-
control_plane_encryption_key_name: Optional[pulumi.Input[str]] = None,
|
304
247
|
description: Optional[pulumi.Input[str]] = None,
|
305
248
|
disable_vpc_peering: Optional[pulumi.Input[bool]] = None,
|
306
249
|
display_name: Optional[pulumi.Input[str]] = None,
|
@@ -314,10 +257,6 @@ class _OrganizationState:
|
|
314
257
|
"""
|
315
258
|
Input properties used for looking up and filtering Organization resources.
|
316
259
|
:param pulumi.Input[str] analytics_region: Primary GCP region for analytics data storage. For valid values, see [Create an Apigee organization](https://cloud.google.com/apigee/docs/api-platform/get-started/create-org).
|
317
|
-
:param pulumi.Input[str] api_consumer_data_encryption_key_name: Cloud KMS key name used for encrypting API consumer data.
|
318
|
-
:param pulumi.Input[str] api_consumer_data_location: This field is needed only for customers using non-default data residency regions.
|
319
|
-
Apigee stores some control plane data only in single region.
|
320
|
-
This field determines which single region Apigee should use.
|
321
260
|
:param pulumi.Input[str] apigee_project_id: Output only. Project ID of the Apigee Tenant Project.
|
322
261
|
:param pulumi.Input[str] authorized_network: Compute Engine network used for Service Networking to be peered with Apigee runtime instances.
|
323
262
|
See [Getting started with the Service Networking API](https://cloud.google.com/service-infrastructure/docs/service-networking/getting-started).
|
@@ -325,8 +264,6 @@ class _OrganizationState:
|
|
325
264
|
:param pulumi.Input[str] billing_type: Billing type of the Apigee organization. See [Apigee pricing](https://cloud.google.com/apigee/pricing).
|
326
265
|
:param pulumi.Input[str] ca_certificate: Output only. Base64-encoded public certificate for the root CA of the Apigee organization.
|
327
266
|
Valid only when `RuntimeType` is CLOUD. A base64-encoded string.
|
328
|
-
:param pulumi.Input[str] control_plane_encryption_key_name: Cloud KMS key name used for encrypting control plane data that is stored in a multi region.
|
329
|
-
Only used for the data residency region "US" or "EU".
|
330
267
|
:param pulumi.Input[str] description: Description of the Apigee organization.
|
331
268
|
:param pulumi.Input[bool] disable_vpc_peering: Flag that specifies whether the VPC Peering through Private Google Access should be
|
332
269
|
disabled between the consumer network and Apigee. Required if an `authorizedNetwork`
|
@@ -359,10 +296,6 @@ class _OrganizationState:
|
|
359
296
|
"""
|
360
297
|
if analytics_region is not None:
|
361
298
|
pulumi.set(__self__, "analytics_region", analytics_region)
|
362
|
-
if api_consumer_data_encryption_key_name is not None:
|
363
|
-
pulumi.set(__self__, "api_consumer_data_encryption_key_name", api_consumer_data_encryption_key_name)
|
364
|
-
if api_consumer_data_location is not None:
|
365
|
-
pulumi.set(__self__, "api_consumer_data_location", api_consumer_data_location)
|
366
299
|
if apigee_project_id is not None:
|
367
300
|
pulumi.set(__self__, "apigee_project_id", apigee_project_id)
|
368
301
|
if authorized_network is not None:
|
@@ -371,8 +304,6 @@ class _OrganizationState:
|
|
371
304
|
pulumi.set(__self__, "billing_type", billing_type)
|
372
305
|
if ca_certificate is not None:
|
373
306
|
pulumi.set(__self__, "ca_certificate", ca_certificate)
|
374
|
-
if control_plane_encryption_key_name is not None:
|
375
|
-
pulumi.set(__self__, "control_plane_encryption_key_name", control_plane_encryption_key_name)
|
376
307
|
if description is not None:
|
377
308
|
pulumi.set(__self__, "description", description)
|
378
309
|
if disable_vpc_peering is not None:
|
@@ -406,32 +337,6 @@ class _OrganizationState:
|
|
406
337
|
def analytics_region(self, value: Optional[pulumi.Input[str]]):
|
407
338
|
pulumi.set(self, "analytics_region", value)
|
408
339
|
|
409
|
-
@property
|
410
|
-
@pulumi.getter(name="apiConsumerDataEncryptionKeyName")
|
411
|
-
def api_consumer_data_encryption_key_name(self) -> Optional[pulumi.Input[str]]:
|
412
|
-
"""
|
413
|
-
Cloud KMS key name used for encrypting API consumer data.
|
414
|
-
"""
|
415
|
-
return pulumi.get(self, "api_consumer_data_encryption_key_name")
|
416
|
-
|
417
|
-
@api_consumer_data_encryption_key_name.setter
|
418
|
-
def api_consumer_data_encryption_key_name(self, value: Optional[pulumi.Input[str]]):
|
419
|
-
pulumi.set(self, "api_consumer_data_encryption_key_name", value)
|
420
|
-
|
421
|
-
@property
|
422
|
-
@pulumi.getter(name="apiConsumerDataLocation")
|
423
|
-
def api_consumer_data_location(self) -> Optional[pulumi.Input[str]]:
|
424
|
-
"""
|
425
|
-
This field is needed only for customers using non-default data residency regions.
|
426
|
-
Apigee stores some control plane data only in single region.
|
427
|
-
This field determines which single region Apigee should use.
|
428
|
-
"""
|
429
|
-
return pulumi.get(self, "api_consumer_data_location")
|
430
|
-
|
431
|
-
@api_consumer_data_location.setter
|
432
|
-
def api_consumer_data_location(self, value: Optional[pulumi.Input[str]]):
|
433
|
-
pulumi.set(self, "api_consumer_data_location", value)
|
434
|
-
|
435
340
|
@property
|
436
341
|
@pulumi.getter(name="apigeeProjectId")
|
437
342
|
def apigee_project_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -483,19 +388,6 @@ class _OrganizationState:
|
|
483
388
|
def ca_certificate(self, value: Optional[pulumi.Input[str]]):
|
484
389
|
pulumi.set(self, "ca_certificate", value)
|
485
390
|
|
486
|
-
@property
|
487
|
-
@pulumi.getter(name="controlPlaneEncryptionKeyName")
|
488
|
-
def control_plane_encryption_key_name(self) -> Optional[pulumi.Input[str]]:
|
489
|
-
"""
|
490
|
-
Cloud KMS key name used for encrypting control plane data that is stored in a multi region.
|
491
|
-
Only used for the data residency region "US" or "EU".
|
492
|
-
"""
|
493
|
-
return pulumi.get(self, "control_plane_encryption_key_name")
|
494
|
-
|
495
|
-
@control_plane_encryption_key_name.setter
|
496
|
-
def control_plane_encryption_key_name(self, value: Optional[pulumi.Input[str]]):
|
497
|
-
pulumi.set(self, "control_plane_encryption_key_name", value)
|
498
|
-
|
499
391
|
@property
|
500
392
|
@pulumi.getter
|
501
393
|
def description(self) -> Optional[pulumi.Input[str]]:
|
@@ -642,11 +534,8 @@ class Organization(pulumi.CustomResource):
|
|
642
534
|
resource_name: str,
|
643
535
|
opts: Optional[pulumi.ResourceOptions] = None,
|
644
536
|
analytics_region: Optional[pulumi.Input[str]] = None,
|
645
|
-
api_consumer_data_encryption_key_name: Optional[pulumi.Input[str]] = None,
|
646
|
-
api_consumer_data_location: Optional[pulumi.Input[str]] = None,
|
647
537
|
authorized_network: Optional[pulumi.Input[str]] = None,
|
648
538
|
billing_type: Optional[pulumi.Input[str]] = None,
|
649
|
-
control_plane_encryption_key_name: Optional[pulumi.Input[str]] = None,
|
650
539
|
description: Optional[pulumi.Input[str]] = None,
|
651
540
|
disable_vpc_peering: Optional[pulumi.Input[bool]] = None,
|
652
541
|
display_name: Optional[pulumi.Input[str]] = None,
|
@@ -792,16 +681,10 @@ class Organization(pulumi.CustomResource):
|
|
792
681
|
:param str resource_name: The name of the resource.
|
793
682
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
794
683
|
:param pulumi.Input[str] analytics_region: Primary GCP region for analytics data storage. For valid values, see [Create an Apigee organization](https://cloud.google.com/apigee/docs/api-platform/get-started/create-org).
|
795
|
-
:param pulumi.Input[str] api_consumer_data_encryption_key_name: Cloud KMS key name used for encrypting API consumer data.
|
796
|
-
:param pulumi.Input[str] api_consumer_data_location: This field is needed only for customers using non-default data residency regions.
|
797
|
-
Apigee stores some control plane data only in single region.
|
798
|
-
This field determines which single region Apigee should use.
|
799
684
|
:param pulumi.Input[str] authorized_network: Compute Engine network used for Service Networking to be peered with Apigee runtime instances.
|
800
685
|
See [Getting started with the Service Networking API](https://cloud.google.com/service-infrastructure/docs/service-networking/getting-started).
|
801
686
|
Valid only when `RuntimeType` is set to CLOUD. The value can be updated only when there are no runtime instances. For example: "default".
|
802
687
|
:param pulumi.Input[str] billing_type: Billing type of the Apigee organization. See [Apigee pricing](https://cloud.google.com/apigee/pricing).
|
803
|
-
:param pulumi.Input[str] control_plane_encryption_key_name: Cloud KMS key name used for encrypting control plane data that is stored in a multi region.
|
804
|
-
Only used for the data residency region "US" or "EU".
|
805
688
|
:param pulumi.Input[str] description: Description of the Apigee organization.
|
806
689
|
:param pulumi.Input[bool] disable_vpc_peering: Flag that specifies whether the VPC Peering through Private Google Access should be
|
807
690
|
disabled between the consumer network and Apigee. Required if an `authorizedNetwork`
|
@@ -984,11 +867,8 @@ class Organization(pulumi.CustomResource):
|
|
984
867
|
resource_name: str,
|
985
868
|
opts: Optional[pulumi.ResourceOptions] = None,
|
986
869
|
analytics_region: Optional[pulumi.Input[str]] = None,
|
987
|
-
api_consumer_data_encryption_key_name: Optional[pulumi.Input[str]] = None,
|
988
|
-
api_consumer_data_location: Optional[pulumi.Input[str]] = None,
|
989
870
|
authorized_network: Optional[pulumi.Input[str]] = None,
|
990
871
|
billing_type: Optional[pulumi.Input[str]] = None,
|
991
|
-
control_plane_encryption_key_name: Optional[pulumi.Input[str]] = None,
|
992
872
|
description: Optional[pulumi.Input[str]] = None,
|
993
873
|
disable_vpc_peering: Optional[pulumi.Input[bool]] = None,
|
994
874
|
display_name: Optional[pulumi.Input[str]] = None,
|
@@ -1007,11 +887,8 @@ class Organization(pulumi.CustomResource):
|
|
1007
887
|
__props__ = OrganizationArgs.__new__(OrganizationArgs)
|
1008
888
|
|
1009
889
|
__props__.__dict__["analytics_region"] = analytics_region
|
1010
|
-
__props__.__dict__["api_consumer_data_encryption_key_name"] = api_consumer_data_encryption_key_name
|
1011
|
-
__props__.__dict__["api_consumer_data_location"] = api_consumer_data_location
|
1012
890
|
__props__.__dict__["authorized_network"] = authorized_network
|
1013
891
|
__props__.__dict__["billing_type"] = billing_type
|
1014
|
-
__props__.__dict__["control_plane_encryption_key_name"] = control_plane_encryption_key_name
|
1015
892
|
__props__.__dict__["description"] = description
|
1016
893
|
__props__.__dict__["disable_vpc_peering"] = disable_vpc_peering
|
1017
894
|
__props__.__dict__["display_name"] = display_name
|
@@ -1037,13 +914,10 @@ class Organization(pulumi.CustomResource):
|
|
1037
914
|
id: pulumi.Input[str],
|
1038
915
|
opts: Optional[pulumi.ResourceOptions] = None,
|
1039
916
|
analytics_region: Optional[pulumi.Input[str]] = None,
|
1040
|
-
api_consumer_data_encryption_key_name: Optional[pulumi.Input[str]] = None,
|
1041
|
-
api_consumer_data_location: Optional[pulumi.Input[str]] = None,
|
1042
917
|
apigee_project_id: Optional[pulumi.Input[str]] = None,
|
1043
918
|
authorized_network: Optional[pulumi.Input[str]] = None,
|
1044
919
|
billing_type: Optional[pulumi.Input[str]] = None,
|
1045
920
|
ca_certificate: Optional[pulumi.Input[str]] = None,
|
1046
|
-
control_plane_encryption_key_name: Optional[pulumi.Input[str]] = None,
|
1047
921
|
description: Optional[pulumi.Input[str]] = None,
|
1048
922
|
disable_vpc_peering: Optional[pulumi.Input[bool]] = None,
|
1049
923
|
display_name: Optional[pulumi.Input[str]] = None,
|
@@ -1062,10 +936,6 @@ class Organization(pulumi.CustomResource):
|
|
1062
936
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
1063
937
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
1064
938
|
:param pulumi.Input[str] analytics_region: Primary GCP region for analytics data storage. For valid values, see [Create an Apigee organization](https://cloud.google.com/apigee/docs/api-platform/get-started/create-org).
|
1065
|
-
:param pulumi.Input[str] api_consumer_data_encryption_key_name: Cloud KMS key name used for encrypting API consumer data.
|
1066
|
-
:param pulumi.Input[str] api_consumer_data_location: This field is needed only for customers using non-default data residency regions.
|
1067
|
-
Apigee stores some control plane data only in single region.
|
1068
|
-
This field determines which single region Apigee should use.
|
1069
939
|
:param pulumi.Input[str] apigee_project_id: Output only. Project ID of the Apigee Tenant Project.
|
1070
940
|
:param pulumi.Input[str] authorized_network: Compute Engine network used for Service Networking to be peered with Apigee runtime instances.
|
1071
941
|
See [Getting started with the Service Networking API](https://cloud.google.com/service-infrastructure/docs/service-networking/getting-started).
|
@@ -1073,8 +943,6 @@ class Organization(pulumi.CustomResource):
|
|
1073
943
|
:param pulumi.Input[str] billing_type: Billing type of the Apigee organization. See [Apigee pricing](https://cloud.google.com/apigee/pricing).
|
1074
944
|
:param pulumi.Input[str] ca_certificate: Output only. Base64-encoded public certificate for the root CA of the Apigee organization.
|
1075
945
|
Valid only when `RuntimeType` is CLOUD. A base64-encoded string.
|
1076
|
-
:param pulumi.Input[str] control_plane_encryption_key_name: Cloud KMS key name used for encrypting control plane data that is stored in a multi region.
|
1077
|
-
Only used for the data residency region "US" or "EU".
|
1078
946
|
:param pulumi.Input[str] description: Description of the Apigee organization.
|
1079
947
|
:param pulumi.Input[bool] disable_vpc_peering: Flag that specifies whether the VPC Peering through Private Google Access should be
|
1080
948
|
disabled between the consumer network and Apigee. Required if an `authorizedNetwork`
|
@@ -1110,13 +978,10 @@ class Organization(pulumi.CustomResource):
|
|
1110
978
|
__props__ = _OrganizationState.__new__(_OrganizationState)
|
1111
979
|
|
1112
980
|
__props__.__dict__["analytics_region"] = analytics_region
|
1113
|
-
__props__.__dict__["api_consumer_data_encryption_key_name"] = api_consumer_data_encryption_key_name
|
1114
|
-
__props__.__dict__["api_consumer_data_location"] = api_consumer_data_location
|
1115
981
|
__props__.__dict__["apigee_project_id"] = apigee_project_id
|
1116
982
|
__props__.__dict__["authorized_network"] = authorized_network
|
1117
983
|
__props__.__dict__["billing_type"] = billing_type
|
1118
984
|
__props__.__dict__["ca_certificate"] = ca_certificate
|
1119
|
-
__props__.__dict__["control_plane_encryption_key_name"] = control_plane_encryption_key_name
|
1120
985
|
__props__.__dict__["description"] = description
|
1121
986
|
__props__.__dict__["disable_vpc_peering"] = disable_vpc_peering
|
1122
987
|
__props__.__dict__["display_name"] = display_name
|
@@ -1137,24 +1002,6 @@ class Organization(pulumi.CustomResource):
|
|
1137
1002
|
"""
|
1138
1003
|
return pulumi.get(self, "analytics_region")
|
1139
1004
|
|
1140
|
-
@property
|
1141
|
-
@pulumi.getter(name="apiConsumerDataEncryptionKeyName")
|
1142
|
-
def api_consumer_data_encryption_key_name(self) -> pulumi.Output[Optional[str]]:
|
1143
|
-
"""
|
1144
|
-
Cloud KMS key name used for encrypting API consumer data.
|
1145
|
-
"""
|
1146
|
-
return pulumi.get(self, "api_consumer_data_encryption_key_name")
|
1147
|
-
|
1148
|
-
@property
|
1149
|
-
@pulumi.getter(name="apiConsumerDataLocation")
|
1150
|
-
def api_consumer_data_location(self) -> pulumi.Output[Optional[str]]:
|
1151
|
-
"""
|
1152
|
-
This field is needed only for customers using non-default data residency regions.
|
1153
|
-
Apigee stores some control plane data only in single region.
|
1154
|
-
This field determines which single region Apigee should use.
|
1155
|
-
"""
|
1156
|
-
return pulumi.get(self, "api_consumer_data_location")
|
1157
|
-
|
1158
1005
|
@property
|
1159
1006
|
@pulumi.getter(name="apigeeProjectId")
|
1160
1007
|
def apigee_project_id(self) -> pulumi.Output[str]:
|
@@ -1190,15 +1037,6 @@ class Organization(pulumi.CustomResource):
|
|
1190
1037
|
"""
|
1191
1038
|
return pulumi.get(self, "ca_certificate")
|
1192
1039
|
|
1193
|
-
@property
|
1194
|
-
@pulumi.getter(name="controlPlaneEncryptionKeyName")
|
1195
|
-
def control_plane_encryption_key_name(self) -> pulumi.Output[Optional[str]]:
|
1196
|
-
"""
|
1197
|
-
Cloud KMS key name used for encrypting control plane data that is stored in a multi region.
|
1198
|
-
Only used for the data residency region "US" or "EU".
|
1199
|
-
"""
|
1200
|
-
return pulumi.get(self, "control_plane_encryption_key_name")
|
1201
|
-
|
1202
1040
|
@property
|
1203
1041
|
@pulumi.getter
|
1204
1042
|
def description(self) -> pulumi.Output[Optional[str]]:
|
@@ -21,13 +21,9 @@ __all__ = [
|
|
21
21
|
'RepositoryRemoteRepositoryConfigAptRepositoryArgs',
|
22
22
|
'RepositoryRemoteRepositoryConfigAptRepositoryPublicRepositoryArgs',
|
23
23
|
'RepositoryRemoteRepositoryConfigDockerRepositoryArgs',
|
24
|
-
'RepositoryRemoteRepositoryConfigDockerRepositoryCustomRepositoryArgs',
|
25
24
|
'RepositoryRemoteRepositoryConfigMavenRepositoryArgs',
|
26
|
-
'RepositoryRemoteRepositoryConfigMavenRepositoryCustomRepositoryArgs',
|
27
25
|
'RepositoryRemoteRepositoryConfigNpmRepositoryArgs',
|
28
|
-
'RepositoryRemoteRepositoryConfigNpmRepositoryCustomRepositoryArgs',
|
29
26
|
'RepositoryRemoteRepositoryConfigPythonRepositoryArgs',
|
30
|
-
'RepositoryRemoteRepositoryConfigPythonRepositoryCustomRepositoryArgs',
|
31
27
|
'RepositoryRemoteRepositoryConfigUpstreamCredentialsArgs',
|
32
28
|
'RepositoryRemoteRepositoryConfigUpstreamCredentialsUsernamePasswordCredentialsArgs',
|
33
29
|
'RepositoryRemoteRepositoryConfigYumRepositoryArgs',
|
@@ -411,7 +407,6 @@ class RepositoryRemoteRepositoryConfigArgs:
|
|
411
407
|
def __init__(__self__, *,
|
412
408
|
apt_repository: Optional[pulumi.Input['RepositoryRemoteRepositoryConfigAptRepositoryArgs']] = None,
|
413
409
|
description: Optional[pulumi.Input[str]] = None,
|
414
|
-
disable_upstream_validation: Optional[pulumi.Input[bool]] = None,
|
415
410
|
docker_repository: Optional[pulumi.Input['RepositoryRemoteRepositoryConfigDockerRepositoryArgs']] = None,
|
416
411
|
maven_repository: Optional[pulumi.Input['RepositoryRemoteRepositoryConfigMavenRepositoryArgs']] = None,
|
417
412
|
npm_repository: Optional[pulumi.Input['RepositoryRemoteRepositoryConfigNpmRepositoryArgs']] = None,
|
@@ -422,8 +417,6 @@ class RepositoryRemoteRepositoryConfigArgs:
|
|
422
417
|
:param pulumi.Input['RepositoryRemoteRepositoryConfigAptRepositoryArgs'] apt_repository: Specific settings for an Apt remote repository.
|
423
418
|
Structure is documented below.
|
424
419
|
:param pulumi.Input[str] description: The description of the remote source.
|
425
|
-
:param pulumi.Input[bool] disable_upstream_validation: If true, the remote repository upstream and upstream credentials will
|
426
|
-
not be validated.
|
427
420
|
:param pulumi.Input['RepositoryRemoteRepositoryConfigDockerRepositoryArgs'] docker_repository: Specific settings for a Docker remote repository.
|
428
421
|
Structure is documented below.
|
429
422
|
:param pulumi.Input['RepositoryRemoteRepositoryConfigMavenRepositoryArgs'] maven_repository: Specific settings for a Maven remote repository.
|
@@ -441,8 +434,6 @@ class RepositoryRemoteRepositoryConfigArgs:
|
|
441
434
|
pulumi.set(__self__, "apt_repository", apt_repository)
|
442
435
|
if description is not None:
|
443
436
|
pulumi.set(__self__, "description", description)
|
444
|
-
if disable_upstream_validation is not None:
|
445
|
-
pulumi.set(__self__, "disable_upstream_validation", disable_upstream_validation)
|
446
437
|
if docker_repository is not None:
|
447
438
|
pulumi.set(__self__, "docker_repository", docker_repository)
|
448
439
|
if maven_repository is not None:
|
@@ -481,19 +472,6 @@ class RepositoryRemoteRepositoryConfigArgs:
|
|
481
472
|
def description(self, value: Optional[pulumi.Input[str]]):
|
482
473
|
pulumi.set(self, "description", value)
|
483
474
|
|
484
|
-
@property
|
485
|
-
@pulumi.getter(name="disableUpstreamValidation")
|
486
|
-
def disable_upstream_validation(self) -> Optional[pulumi.Input[bool]]:
|
487
|
-
"""
|
488
|
-
If true, the remote repository upstream and upstream credentials will
|
489
|
-
not be validated.
|
490
|
-
"""
|
491
|
-
return pulumi.get(self, "disable_upstream_validation")
|
492
|
-
|
493
|
-
@disable_upstream_validation.setter
|
494
|
-
def disable_upstream_validation(self, value: Optional[pulumi.Input[bool]]):
|
495
|
-
pulumi.set(self, "disable_upstream_validation", value)
|
496
|
-
|
497
475
|
@property
|
498
476
|
@pulumi.getter(name="dockerRepository")
|
499
477
|
def docker_repository(self) -> Optional[pulumi.Input['RepositoryRemoteRepositoryConfigDockerRepositoryArgs']]:
|
@@ -640,33 +618,15 @@ class RepositoryRemoteRepositoryConfigAptRepositoryPublicRepositoryArgs:
|
|
640
618
|
@pulumi.input_type
|
641
619
|
class RepositoryRemoteRepositoryConfigDockerRepositoryArgs:
|
642
620
|
def __init__(__self__, *,
|
643
|
-
custom_repository: Optional[pulumi.Input['RepositoryRemoteRepositoryConfigDockerRepositoryCustomRepositoryArgs']] = None,
|
644
621
|
public_repository: Optional[pulumi.Input[str]] = None):
|
645
622
|
"""
|
646
|
-
:param pulumi.Input['RepositoryRemoteRepositoryConfigDockerRepositoryCustomRepositoryArgs'] custom_repository: Settings for a remote repository with a custom uri.
|
647
|
-
Structure is documented below.
|
648
623
|
:param pulumi.Input[str] public_repository: Address of the remote repository.
|
649
624
|
Default value is `DOCKER_HUB`.
|
650
625
|
Possible values are: `DOCKER_HUB`.
|
651
626
|
"""
|
652
|
-
if custom_repository is not None:
|
653
|
-
pulumi.set(__self__, "custom_repository", custom_repository)
|
654
627
|
if public_repository is not None:
|
655
628
|
pulumi.set(__self__, "public_repository", public_repository)
|
656
629
|
|
657
|
-
@property
|
658
|
-
@pulumi.getter(name="customRepository")
|
659
|
-
def custom_repository(self) -> Optional[pulumi.Input['RepositoryRemoteRepositoryConfigDockerRepositoryCustomRepositoryArgs']]:
|
660
|
-
"""
|
661
|
-
Settings for a remote repository with a custom uri.
|
662
|
-
Structure is documented below.
|
663
|
-
"""
|
664
|
-
return pulumi.get(self, "custom_repository")
|
665
|
-
|
666
|
-
@custom_repository.setter
|
667
|
-
def custom_repository(self, value: Optional[pulumi.Input['RepositoryRemoteRepositoryConfigDockerRepositoryCustomRepositoryArgs']]):
|
668
|
-
pulumi.set(self, "custom_repository", value)
|
669
|
-
|
670
630
|
@property
|
671
631
|
@pulumi.getter(name="publicRepository")
|
672
632
|
def public_repository(self) -> Optional[pulumi.Input[str]]:
|
@@ -682,59 +642,18 @@ class RepositoryRemoteRepositoryConfigDockerRepositoryArgs:
|
|
682
642
|
pulumi.set(self, "public_repository", value)
|
683
643
|
|
684
644
|
|
685
|
-
@pulumi.input_type
|
686
|
-
class RepositoryRemoteRepositoryConfigDockerRepositoryCustomRepositoryArgs:
|
687
|
-
def __init__(__self__, *,
|
688
|
-
uri: Optional[pulumi.Input[str]] = None):
|
689
|
-
"""
|
690
|
-
:param pulumi.Input[str] uri: Specific uri to the registry, e.g. `"https://pypi.io"`
|
691
|
-
"""
|
692
|
-
if uri is not None:
|
693
|
-
pulumi.set(__self__, "uri", uri)
|
694
|
-
|
695
|
-
@property
|
696
|
-
@pulumi.getter
|
697
|
-
def uri(self) -> Optional[pulumi.Input[str]]:
|
698
|
-
"""
|
699
|
-
Specific uri to the registry, e.g. `"https://pypi.io"`
|
700
|
-
"""
|
701
|
-
return pulumi.get(self, "uri")
|
702
|
-
|
703
|
-
@uri.setter
|
704
|
-
def uri(self, value: Optional[pulumi.Input[str]]):
|
705
|
-
pulumi.set(self, "uri", value)
|
706
|
-
|
707
|
-
|
708
645
|
@pulumi.input_type
|
709
646
|
class RepositoryRemoteRepositoryConfigMavenRepositoryArgs:
|
710
647
|
def __init__(__self__, *,
|
711
|
-
custom_repository: Optional[pulumi.Input['RepositoryRemoteRepositoryConfigMavenRepositoryCustomRepositoryArgs']] = None,
|
712
648
|
public_repository: Optional[pulumi.Input[str]] = None):
|
713
649
|
"""
|
714
|
-
:param pulumi.Input['RepositoryRemoteRepositoryConfigMavenRepositoryCustomRepositoryArgs'] custom_repository: Settings for a remote repository with a custom uri.
|
715
|
-
Structure is documented below.
|
716
650
|
:param pulumi.Input[str] public_repository: Address of the remote repository.
|
717
651
|
Default value is `MAVEN_CENTRAL`.
|
718
652
|
Possible values are: `MAVEN_CENTRAL`.
|
719
653
|
"""
|
720
|
-
if custom_repository is not None:
|
721
|
-
pulumi.set(__self__, "custom_repository", custom_repository)
|
722
654
|
if public_repository is not None:
|
723
655
|
pulumi.set(__self__, "public_repository", public_repository)
|
724
656
|
|
725
|
-
@property
|
726
|
-
@pulumi.getter(name="customRepository")
|
727
|
-
def custom_repository(self) -> Optional[pulumi.Input['RepositoryRemoteRepositoryConfigMavenRepositoryCustomRepositoryArgs']]:
|
728
|
-
"""
|
729
|
-
Settings for a remote repository with a custom uri.
|
730
|
-
Structure is documented below.
|
731
|
-
"""
|
732
|
-
return pulumi.get(self, "custom_repository")
|
733
|
-
|
734
|
-
@custom_repository.setter
|
735
|
-
def custom_repository(self, value: Optional[pulumi.Input['RepositoryRemoteRepositoryConfigMavenRepositoryCustomRepositoryArgs']]):
|
736
|
-
pulumi.set(self, "custom_repository", value)
|
737
|
-
|
738
657
|
@property
|
739
658
|
@pulumi.getter(name="publicRepository")
|
740
659
|
def public_repository(self) -> Optional[pulumi.Input[str]]:
|
@@ -750,59 +669,18 @@ class RepositoryRemoteRepositoryConfigMavenRepositoryArgs:
|
|
750
669
|
pulumi.set(self, "public_repository", value)
|
751
670
|
|
752
671
|
|
753
|
-
@pulumi.input_type
|
754
|
-
class RepositoryRemoteRepositoryConfigMavenRepositoryCustomRepositoryArgs:
|
755
|
-
def __init__(__self__, *,
|
756
|
-
uri: Optional[pulumi.Input[str]] = None):
|
757
|
-
"""
|
758
|
-
:param pulumi.Input[str] uri: Specific uri to the registry, e.g. `"https://pypi.io"`
|
759
|
-
"""
|
760
|
-
if uri is not None:
|
761
|
-
pulumi.set(__self__, "uri", uri)
|
762
|
-
|
763
|
-
@property
|
764
|
-
@pulumi.getter
|
765
|
-
def uri(self) -> Optional[pulumi.Input[str]]:
|
766
|
-
"""
|
767
|
-
Specific uri to the registry, e.g. `"https://pypi.io"`
|
768
|
-
"""
|
769
|
-
return pulumi.get(self, "uri")
|
770
|
-
|
771
|
-
@uri.setter
|
772
|
-
def uri(self, value: Optional[pulumi.Input[str]]):
|
773
|
-
pulumi.set(self, "uri", value)
|
774
|
-
|
775
|
-
|
776
672
|
@pulumi.input_type
|
777
673
|
class RepositoryRemoteRepositoryConfigNpmRepositoryArgs:
|
778
674
|
def __init__(__self__, *,
|
779
|
-
custom_repository: Optional[pulumi.Input['RepositoryRemoteRepositoryConfigNpmRepositoryCustomRepositoryArgs']] = None,
|
780
675
|
public_repository: Optional[pulumi.Input[str]] = None):
|
781
676
|
"""
|
782
|
-
:param pulumi.Input['RepositoryRemoteRepositoryConfigNpmRepositoryCustomRepositoryArgs'] custom_repository: Settings for a remote repository with a custom uri.
|
783
|
-
Structure is documented below.
|
784
677
|
:param pulumi.Input[str] public_repository: Address of the remote repository.
|
785
678
|
Default value is `NPMJS`.
|
786
679
|
Possible values are: `NPMJS`.
|
787
680
|
"""
|
788
|
-
if custom_repository is not None:
|
789
|
-
pulumi.set(__self__, "custom_repository", custom_repository)
|
790
681
|
if public_repository is not None:
|
791
682
|
pulumi.set(__self__, "public_repository", public_repository)
|
792
683
|
|
793
|
-
@property
|
794
|
-
@pulumi.getter(name="customRepository")
|
795
|
-
def custom_repository(self) -> Optional[pulumi.Input['RepositoryRemoteRepositoryConfigNpmRepositoryCustomRepositoryArgs']]:
|
796
|
-
"""
|
797
|
-
Settings for a remote repository with a custom uri.
|
798
|
-
Structure is documented below.
|
799
|
-
"""
|
800
|
-
return pulumi.get(self, "custom_repository")
|
801
|
-
|
802
|
-
@custom_repository.setter
|
803
|
-
def custom_repository(self, value: Optional[pulumi.Input['RepositoryRemoteRepositoryConfigNpmRepositoryCustomRepositoryArgs']]):
|
804
|
-
pulumi.set(self, "custom_repository", value)
|
805
|
-
|
806
684
|
@property
|
807
685
|
@pulumi.getter(name="publicRepository")
|
808
686
|
def public_repository(self) -> Optional[pulumi.Input[str]]:
|
@@ -818,59 +696,18 @@ class RepositoryRemoteRepositoryConfigNpmRepositoryArgs:
|
|
818
696
|
pulumi.set(self, "public_repository", value)
|
819
697
|
|
820
698
|
|
821
|
-
@pulumi.input_type
|
822
|
-
class RepositoryRemoteRepositoryConfigNpmRepositoryCustomRepositoryArgs:
|
823
|
-
def __init__(__self__, *,
|
824
|
-
uri: Optional[pulumi.Input[str]] = None):
|
825
|
-
"""
|
826
|
-
:param pulumi.Input[str] uri: Specific uri to the registry, e.g. `"https://pypi.io"`
|
827
|
-
"""
|
828
|
-
if uri is not None:
|
829
|
-
pulumi.set(__self__, "uri", uri)
|
830
|
-
|
831
|
-
@property
|
832
|
-
@pulumi.getter
|
833
|
-
def uri(self) -> Optional[pulumi.Input[str]]:
|
834
|
-
"""
|
835
|
-
Specific uri to the registry, e.g. `"https://pypi.io"`
|
836
|
-
"""
|
837
|
-
return pulumi.get(self, "uri")
|
838
|
-
|
839
|
-
@uri.setter
|
840
|
-
def uri(self, value: Optional[pulumi.Input[str]]):
|
841
|
-
pulumi.set(self, "uri", value)
|
842
|
-
|
843
|
-
|
844
699
|
@pulumi.input_type
|
845
700
|
class RepositoryRemoteRepositoryConfigPythonRepositoryArgs:
|
846
701
|
def __init__(__self__, *,
|
847
|
-
custom_repository: Optional[pulumi.Input['RepositoryRemoteRepositoryConfigPythonRepositoryCustomRepositoryArgs']] = None,
|
848
702
|
public_repository: Optional[pulumi.Input[str]] = None):
|
849
703
|
"""
|
850
|
-
:param pulumi.Input['RepositoryRemoteRepositoryConfigPythonRepositoryCustomRepositoryArgs'] custom_repository: Settings for a remote repository with a custom uri.
|
851
|
-
Structure is documented below.
|
852
704
|
:param pulumi.Input[str] public_repository: Address of the remote repository.
|
853
705
|
Default value is `PYPI`.
|
854
706
|
Possible values are: `PYPI`.
|
855
707
|
"""
|
856
|
-
if custom_repository is not None:
|
857
|
-
pulumi.set(__self__, "custom_repository", custom_repository)
|
858
708
|
if public_repository is not None:
|
859
709
|
pulumi.set(__self__, "public_repository", public_repository)
|
860
710
|
|
861
|
-
@property
|
862
|
-
@pulumi.getter(name="customRepository")
|
863
|
-
def custom_repository(self) -> Optional[pulumi.Input['RepositoryRemoteRepositoryConfigPythonRepositoryCustomRepositoryArgs']]:
|
864
|
-
"""
|
865
|
-
Settings for a remote repository with a custom uri.
|
866
|
-
Structure is documented below.
|
867
|
-
"""
|
868
|
-
return pulumi.get(self, "custom_repository")
|
869
|
-
|
870
|
-
@custom_repository.setter
|
871
|
-
def custom_repository(self, value: Optional[pulumi.Input['RepositoryRemoteRepositoryConfigPythonRepositoryCustomRepositoryArgs']]):
|
872
|
-
pulumi.set(self, "custom_repository", value)
|
873
|
-
|
874
711
|
@property
|
875
712
|
@pulumi.getter(name="publicRepository")
|
876
713
|
def public_repository(self) -> Optional[pulumi.Input[str]]:
|
@@ -886,29 +723,6 @@ class RepositoryRemoteRepositoryConfigPythonRepositoryArgs:
|
|
886
723
|
pulumi.set(self, "public_repository", value)
|
887
724
|
|
888
725
|
|
889
|
-
@pulumi.input_type
|
890
|
-
class RepositoryRemoteRepositoryConfigPythonRepositoryCustomRepositoryArgs:
|
891
|
-
def __init__(__self__, *,
|
892
|
-
uri: Optional[pulumi.Input[str]] = None):
|
893
|
-
"""
|
894
|
-
:param pulumi.Input[str] uri: Specific uri to the registry, e.g. `"https://pypi.io"`
|
895
|
-
"""
|
896
|
-
if uri is not None:
|
897
|
-
pulumi.set(__self__, "uri", uri)
|
898
|
-
|
899
|
-
@property
|
900
|
-
@pulumi.getter
|
901
|
-
def uri(self) -> Optional[pulumi.Input[str]]:
|
902
|
-
"""
|
903
|
-
Specific uri to the registry, e.g. `"https://pypi.io"`
|
904
|
-
"""
|
905
|
-
return pulumi.get(self, "uri")
|
906
|
-
|
907
|
-
@uri.setter
|
908
|
-
def uri(self, value: Optional[pulumi.Input[str]]):
|
909
|
-
pulumi.set(self, "uri", value)
|
910
|
-
|
911
|
-
|
912
726
|
@pulumi.input_type
|
913
727
|
class RepositoryRemoteRepositoryConfigUpstreamCredentialsArgs:
|
914
728
|
def __init__(__self__, *,
|