pulumi-gcp 7.14.0a1710186287__py3-none-any.whl → 7.14.1__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 CHANGED
@@ -1645,6 +1645,30 @@ _utilities.register(
1645
1645
  "gcp:clouddeploy/customTargetType:CustomTargetType": "CustomTargetType"
1646
1646
  }
1647
1647
  },
1648
+ {
1649
+ "pkg": "gcp",
1650
+ "mod": "clouddeploy/customTargetTypeIamBinding",
1651
+ "fqn": "pulumi_gcp.clouddeploy",
1652
+ "classes": {
1653
+ "gcp:clouddeploy/customTargetTypeIamBinding:CustomTargetTypeIamBinding": "CustomTargetTypeIamBinding"
1654
+ }
1655
+ },
1656
+ {
1657
+ "pkg": "gcp",
1658
+ "mod": "clouddeploy/customTargetTypeIamMember",
1659
+ "fqn": "pulumi_gcp.clouddeploy",
1660
+ "classes": {
1661
+ "gcp:clouddeploy/customTargetTypeIamMember:CustomTargetTypeIamMember": "CustomTargetTypeIamMember"
1662
+ }
1663
+ },
1664
+ {
1665
+ "pkg": "gcp",
1666
+ "mod": "clouddeploy/customTargetTypeIamPolicy",
1667
+ "fqn": "pulumi_gcp.clouddeploy",
1668
+ "classes": {
1669
+ "gcp:clouddeploy/customTargetTypeIamPolicy:CustomTargetTypeIamPolicy": "CustomTargetTypeIamPolicy"
1670
+ }
1671
+ },
1648
1672
  {
1649
1673
  "pkg": "gcp",
1650
1674
  "mod": "clouddeploy/deliveryPipeline",
@@ -562,8 +562,13 @@ class DnsAuthorizationDnsResourceRecordArgs:
562
562
 
563
563
 
564
564
  - - -
565
- :param pulumi.Input[str] type: (Output)
566
- Type of the DNS Resource Record.
565
+ :param pulumi.Input[str] type: type of DNS authorization. If unset during the resource creation, FIXED_RECORD will
566
+ be used for global resources, and PER_PROJECT_RECORD will be used for other locations.
567
+ FIXED_RECORD DNS authorization uses DNS-01 validation method
568
+ PER_PROJECT_RECORD DNS authorization allows for independent management
569
+ of Google-managed certificates with DNS authorization across multiple
570
+ projects.
571
+ Possible values are: `FIXED_RECORD`, `PER_PROJECT_RECORD`.
567
572
  """
568
573
  if data is not None:
569
574
  pulumi.set(__self__, "data", data)
@@ -606,8 +611,13 @@ class DnsAuthorizationDnsResourceRecordArgs:
606
611
  @pulumi.getter
607
612
  def type(self) -> Optional[pulumi.Input[str]]:
608
613
  """
609
- (Output)
610
- Type of the DNS Resource Record.
614
+ type of DNS authorization. If unset during the resource creation, FIXED_RECORD will
615
+ be used for global resources, and PER_PROJECT_RECORD will be used for other locations.
616
+ FIXED_RECORD DNS authorization uses DNS-01 validation method
617
+ PER_PROJECT_RECORD DNS authorization allows for independent management
618
+ of Google-managed certificates with DNS authorization across multiple
619
+ projects.
620
+ Possible values are: `FIXED_RECORD`, `PER_PROJECT_RECORD`.
611
621
  """
612
622
  return pulumi.get(self, "type")
613
623
 
@@ -668,6 +668,28 @@ class Certificate(pulumi.CustomResource):
668
668
  ))
669
669
  ```
670
670
  <!--End PulumiCodeChooser -->
671
+ ### Certificate Manager Google Managed Regional Certificate Dns Auth
672
+
673
+ <!--Start PulumiCodeChooser -->
674
+ ```python
675
+ import pulumi
676
+ import pulumi_gcp as gcp
677
+
678
+ instance = gcp.certificatemanager.DnsAuthorization("instance",
679
+ name="dns-auth",
680
+ location="us-central1",
681
+ description="The default dnss",
682
+ domain="subdomain.hashicorptest.com")
683
+ default = gcp.certificatemanager.Certificate("default",
684
+ name="dns-cert",
685
+ description="regional managed certs",
686
+ location="us-central1",
687
+ managed=gcp.certificatemanager.CertificateManagedArgs(
688
+ domains=[instance.domain],
689
+ dns_authorizations=[instance.id],
690
+ ))
691
+ ```
692
+ <!--End PulumiCodeChooser -->
671
693
 
672
694
  ## Import
673
695
 
@@ -985,6 +1007,28 @@ class Certificate(pulumi.CustomResource):
985
1007
  ))
986
1008
  ```
987
1009
  <!--End PulumiCodeChooser -->
1010
+ ### Certificate Manager Google Managed Regional Certificate Dns Auth
1011
+
1012
+ <!--Start PulumiCodeChooser -->
1013
+ ```python
1014
+ import pulumi
1015
+ import pulumi_gcp as gcp
1016
+
1017
+ instance = gcp.certificatemanager.DnsAuthorization("instance",
1018
+ name="dns-auth",
1019
+ location="us-central1",
1020
+ description="The default dnss",
1021
+ domain="subdomain.hashicorptest.com")
1022
+ default = gcp.certificatemanager.Certificate("default",
1023
+ name="dns-cert",
1024
+ description="regional managed certs",
1025
+ location="us-central1",
1026
+ managed=gcp.certificatemanager.CertificateManagedArgs(
1027
+ domains=[instance.domain],
1028
+ dns_authorizations=[instance.id],
1029
+ ))
1030
+ ```
1031
+ <!--End PulumiCodeChooser -->
988
1032
 
989
1033
  ## Import
990
1034
 
@@ -21,7 +21,8 @@ class DnsAuthorizationArgs:
21
21
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
22
22
  location: Optional[pulumi.Input[str]] = None,
23
23
  name: Optional[pulumi.Input[str]] = None,
24
- project: Optional[pulumi.Input[str]] = None):
24
+ project: Optional[pulumi.Input[str]] = None,
25
+ type: Optional[pulumi.Input[str]] = None):
25
26
  """
26
27
  The set of arguments for constructing a DnsAuthorization resource.
27
28
  :param pulumi.Input[str] domain: A domain which is being authorized. A DnsAuthorization resource covers a
@@ -40,6 +41,13 @@ class DnsAuthorizationArgs:
40
41
  - - -
41
42
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
42
43
  If it is not provided, the provider project is used.
44
+ :param pulumi.Input[str] type: type of DNS authorization. If unset during the resource creation, FIXED_RECORD will
45
+ be used for global resources, and PER_PROJECT_RECORD will be used for other locations.
46
+ FIXED_RECORD DNS authorization uses DNS-01 validation method
47
+ PER_PROJECT_RECORD DNS authorization allows for independent management
48
+ of Google-managed certificates with DNS authorization across multiple
49
+ projects.
50
+ Possible values are: `FIXED_RECORD`, `PER_PROJECT_RECORD`.
43
51
  """
44
52
  pulumi.set(__self__, "domain", domain)
45
53
  if description is not None:
@@ -52,6 +60,8 @@ class DnsAuthorizationArgs:
52
60
  pulumi.set(__self__, "name", name)
53
61
  if project is not None:
54
62
  pulumi.set(__self__, "project", project)
63
+ if type is not None:
64
+ pulumi.set(__self__, "type", type)
55
65
 
56
66
  @property
57
67
  @pulumi.getter
@@ -135,6 +145,24 @@ class DnsAuthorizationArgs:
135
145
  def project(self, value: Optional[pulumi.Input[str]]):
136
146
  pulumi.set(self, "project", value)
137
147
 
148
+ @property
149
+ @pulumi.getter
150
+ def type(self) -> Optional[pulumi.Input[str]]:
151
+ """
152
+ type of DNS authorization. If unset during the resource creation, FIXED_RECORD will
153
+ be used for global resources, and PER_PROJECT_RECORD will be used for other locations.
154
+ FIXED_RECORD DNS authorization uses DNS-01 validation method
155
+ PER_PROJECT_RECORD DNS authorization allows for independent management
156
+ of Google-managed certificates with DNS authorization across multiple
157
+ projects.
158
+ Possible values are: `FIXED_RECORD`, `PER_PROJECT_RECORD`.
159
+ """
160
+ return pulumi.get(self, "type")
161
+
162
+ @type.setter
163
+ def type(self, value: Optional[pulumi.Input[str]]):
164
+ pulumi.set(self, "type", value)
165
+
138
166
 
139
167
  @pulumi.input_type
140
168
  class _DnsAuthorizationState:
@@ -147,7 +175,8 @@ class _DnsAuthorizationState:
147
175
  location: Optional[pulumi.Input[str]] = None,
148
176
  name: Optional[pulumi.Input[str]] = None,
149
177
  project: Optional[pulumi.Input[str]] = None,
150
- pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
178
+ pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
179
+ type: Optional[pulumi.Input[str]] = None):
151
180
  """
152
181
  Input properties used for looking up and filtering DnsAuthorization resources.
153
182
  :param pulumi.Input[str] description: A human-readable description of the resource.
@@ -173,6 +202,13 @@ class _DnsAuthorizationState:
173
202
  If it is not provided, the provider project is used.
174
203
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource
175
204
  and default labels configured on the provider.
205
+ :param pulumi.Input[str] type: type of DNS authorization. If unset during the resource creation, FIXED_RECORD will
206
+ be used for global resources, and PER_PROJECT_RECORD will be used for other locations.
207
+ FIXED_RECORD DNS authorization uses DNS-01 validation method
208
+ PER_PROJECT_RECORD DNS authorization allows for independent management
209
+ of Google-managed certificates with DNS authorization across multiple
210
+ projects.
211
+ Possible values are: `FIXED_RECORD`, `PER_PROJECT_RECORD`.
176
212
  """
177
213
  if description is not None:
178
214
  pulumi.set(__self__, "description", description)
@@ -192,6 +228,8 @@ class _DnsAuthorizationState:
192
228
  pulumi.set(__self__, "project", project)
193
229
  if pulumi_labels is not None:
194
230
  pulumi.set(__self__, "pulumi_labels", pulumi_labels)
231
+ if type is not None:
232
+ pulumi.set(__self__, "type", type)
195
233
 
196
234
  @property
197
235
  @pulumi.getter
@@ -315,6 +353,24 @@ class _DnsAuthorizationState:
315
353
  def pulumi_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
316
354
  pulumi.set(self, "pulumi_labels", value)
317
355
 
356
+ @property
357
+ @pulumi.getter
358
+ def type(self) -> Optional[pulumi.Input[str]]:
359
+ """
360
+ type of DNS authorization. If unset during the resource creation, FIXED_RECORD will
361
+ be used for global resources, and PER_PROJECT_RECORD will be used for other locations.
362
+ FIXED_RECORD DNS authorization uses DNS-01 validation method
363
+ PER_PROJECT_RECORD DNS authorization allows for independent management
364
+ of Google-managed certificates with DNS authorization across multiple
365
+ projects.
366
+ Possible values are: `FIXED_RECORD`, `PER_PROJECT_RECORD`.
367
+ """
368
+ return pulumi.get(self, "type")
369
+
370
+ @type.setter
371
+ def type(self, value: Optional[pulumi.Input[str]]):
372
+ pulumi.set(self, "type", value)
373
+
318
374
 
319
375
  class DnsAuthorization(pulumi.CustomResource):
320
376
  @overload
@@ -327,6 +383,7 @@ class DnsAuthorization(pulumi.CustomResource):
327
383
  location: Optional[pulumi.Input[str]] = None,
328
384
  name: Optional[pulumi.Input[str]] = None,
329
385
  project: Optional[pulumi.Input[str]] = None,
386
+ type: Optional[pulumi.Input[str]] = None,
330
387
  __props__=None):
331
388
  """
332
389
  DnsAuthorization represents a HTTP-reachable backend for a DnsAuthorization.
@@ -350,6 +407,21 @@ class DnsAuthorization(pulumi.CustomResource):
350
407
  pulumi.export("recordDataToInsert", default.dns_resource_records[0].data)
351
408
  ```
352
409
  <!--End PulumiCodeChooser -->
410
+ ### Certificate Manager Dns Authorization Regional
411
+
412
+ <!--Start PulumiCodeChooser -->
413
+ ```python
414
+ import pulumi
415
+ import pulumi_gcp as gcp
416
+
417
+ default = gcp.certificatemanager.DnsAuthorization("default",
418
+ name="dns-auth",
419
+ location="us-central1",
420
+ description="reginal dns",
421
+ type="PER_PROJECT_RECORD",
422
+ domain="subdomain.hashicorptest.com")
423
+ ```
424
+ <!--End PulumiCodeChooser -->
353
425
 
354
426
  ## Import
355
427
 
@@ -393,6 +465,13 @@ class DnsAuthorization(pulumi.CustomResource):
393
465
  - - -
394
466
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
395
467
  If it is not provided, the provider project is used.
468
+ :param pulumi.Input[str] type: type of DNS authorization. If unset during the resource creation, FIXED_RECORD will
469
+ be used for global resources, and PER_PROJECT_RECORD will be used for other locations.
470
+ FIXED_RECORD DNS authorization uses DNS-01 validation method
471
+ PER_PROJECT_RECORD DNS authorization allows for independent management
472
+ of Google-managed certificates with DNS authorization across multiple
473
+ projects.
474
+ Possible values are: `FIXED_RECORD`, `PER_PROJECT_RECORD`.
396
475
  """
397
476
  ...
398
477
  @overload
@@ -422,6 +501,21 @@ class DnsAuthorization(pulumi.CustomResource):
422
501
  pulumi.export("recordDataToInsert", default.dns_resource_records[0].data)
423
502
  ```
424
503
  <!--End PulumiCodeChooser -->
504
+ ### Certificate Manager Dns Authorization Regional
505
+
506
+ <!--Start PulumiCodeChooser -->
507
+ ```python
508
+ import pulumi
509
+ import pulumi_gcp as gcp
510
+
511
+ default = gcp.certificatemanager.DnsAuthorization("default",
512
+ name="dns-auth",
513
+ location="us-central1",
514
+ description="reginal dns",
515
+ type="PER_PROJECT_RECORD",
516
+ domain="subdomain.hashicorptest.com")
517
+ ```
518
+ <!--End PulumiCodeChooser -->
425
519
 
426
520
  ## Import
427
521
 
@@ -468,6 +562,7 @@ class DnsAuthorization(pulumi.CustomResource):
468
562
  location: Optional[pulumi.Input[str]] = None,
469
563
  name: Optional[pulumi.Input[str]] = None,
470
564
  project: Optional[pulumi.Input[str]] = None,
565
+ type: Optional[pulumi.Input[str]] = None,
471
566
  __props__=None):
472
567
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
473
568
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -485,6 +580,7 @@ class DnsAuthorization(pulumi.CustomResource):
485
580
  __props__.__dict__["location"] = location
486
581
  __props__.__dict__["name"] = name
487
582
  __props__.__dict__["project"] = project
583
+ __props__.__dict__["type"] = type
488
584
  __props__.__dict__["dns_resource_records"] = None
489
585
  __props__.__dict__["effective_labels"] = None
490
586
  __props__.__dict__["pulumi_labels"] = None
@@ -508,7 +604,8 @@ class DnsAuthorization(pulumi.CustomResource):
508
604
  location: Optional[pulumi.Input[str]] = None,
509
605
  name: Optional[pulumi.Input[str]] = None,
510
606
  project: Optional[pulumi.Input[str]] = None,
511
- pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None) -> 'DnsAuthorization':
607
+ pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
608
+ type: Optional[pulumi.Input[str]] = None) -> 'DnsAuthorization':
512
609
  """
513
610
  Get an existing DnsAuthorization resource's state with the given name, id, and optional extra
514
611
  properties used to qualify the lookup.
@@ -539,6 +636,13 @@ class DnsAuthorization(pulumi.CustomResource):
539
636
  If it is not provided, the provider project is used.
540
637
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource
541
638
  and default labels configured on the provider.
639
+ :param pulumi.Input[str] type: type of DNS authorization. If unset during the resource creation, FIXED_RECORD will
640
+ be used for global resources, and PER_PROJECT_RECORD will be used for other locations.
641
+ FIXED_RECORD DNS authorization uses DNS-01 validation method
642
+ PER_PROJECT_RECORD DNS authorization allows for independent management
643
+ of Google-managed certificates with DNS authorization across multiple
644
+ projects.
645
+ Possible values are: `FIXED_RECORD`, `PER_PROJECT_RECORD`.
542
646
  """
543
647
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
544
648
 
@@ -553,6 +657,7 @@ class DnsAuthorization(pulumi.CustomResource):
553
657
  __props__.__dict__["name"] = name
554
658
  __props__.__dict__["project"] = project
555
659
  __props__.__dict__["pulumi_labels"] = pulumi_labels
660
+ __props__.__dict__["type"] = type
556
661
  return DnsAuthorization(resource_name, opts=opts, __props__=__props__)
557
662
 
558
663
  @property
@@ -641,3 +746,17 @@ class DnsAuthorization(pulumi.CustomResource):
641
746
  """
642
747
  return pulumi.get(self, "pulumi_labels")
643
748
 
749
+ @property
750
+ @pulumi.getter
751
+ def type(self) -> pulumi.Output[str]:
752
+ """
753
+ type of DNS authorization. If unset during the resource creation, FIXED_RECORD will
754
+ be used for global resources, and PER_PROJECT_RECORD will be used for other locations.
755
+ FIXED_RECORD DNS authorization uses DNS-01 validation method
756
+ PER_PROJECT_RECORD DNS authorization allows for independent management
757
+ of Google-managed certificates with DNS authorization across multiple
758
+ projects.
759
+ Possible values are: `FIXED_RECORD`, `PER_PROJECT_RECORD`.
760
+ """
761
+ return pulumi.get(self, "type")
762
+
@@ -602,8 +602,13 @@ class DnsAuthorizationDnsResourceRecord(dict):
602
602
 
603
603
 
604
604
  - - -
605
- :param str type: (Output)
606
- Type of the DNS Resource Record.
605
+ :param str type: type of DNS authorization. If unset during the resource creation, FIXED_RECORD will
606
+ be used for global resources, and PER_PROJECT_RECORD will be used for other locations.
607
+ FIXED_RECORD DNS authorization uses DNS-01 validation method
608
+ PER_PROJECT_RECORD DNS authorization allows for independent management
609
+ of Google-managed certificates with DNS authorization across multiple
610
+ projects.
611
+ Possible values are: `FIXED_RECORD`, `PER_PROJECT_RECORD`.
607
612
  """
608
613
  if data is not None:
609
614
  pulumi.set(__self__, "data", data)
@@ -638,8 +643,13 @@ class DnsAuthorizationDnsResourceRecord(dict):
638
643
  @pulumi.getter
639
644
  def type(self) -> Optional[str]:
640
645
  """
641
- (Output)
642
- Type of the DNS Resource Record.
646
+ type of DNS authorization. If unset during the resource creation, FIXED_RECORD will
647
+ be used for global resources, and PER_PROJECT_RECORD will be used for other locations.
648
+ FIXED_RECORD DNS authorization uses DNS-01 validation method
649
+ PER_PROJECT_RECORD DNS authorization allows for independent management
650
+ of Google-managed certificates with DNS authorization across multiple
651
+ projects.
652
+ Possible values are: `FIXED_RECORD`, `PER_PROJECT_RECORD`.
643
653
  """
644
654
  return pulumi.get(self, "type")
645
655
 
@@ -7,10 +7,14 @@ import typing
7
7
  # Export this package's modules as members:
8
8
  from .automation import *
9
9
  from .custom_target_type import *
10
+ from .custom_target_type_iam_binding import *
11
+ from .custom_target_type_iam_member import *
12
+ from .custom_target_type_iam_policy import *
10
13
  from .delivery_pipeline import *
11
14
  from .delivery_pipeline_iam_binding import *
12
15
  from .delivery_pipeline_iam_member import *
13
16
  from .delivery_pipeline_iam_policy import *
17
+ from .get_custom_target_type_iam_policy import *
14
18
  from .get_delivery_pipeline_iam_policy import *
15
19
  from .get_target_iam_policy import *
16
20
  from .target import *
@@ -19,6 +19,8 @@ __all__ = [
19
19
  'CustomTargetTypeCustomActionsIncludeSkaffoldModuleArgs',
20
20
  'CustomTargetTypeCustomActionsIncludeSkaffoldModuleGitArgs',
21
21
  'CustomTargetTypeCustomActionsIncludeSkaffoldModuleGoogleCloudStorageArgs',
22
+ 'CustomTargetTypeIamBindingConditionArgs',
23
+ 'CustomTargetTypeIamMemberConditionArgs',
22
24
  'DeliveryPipelineConditionArgs',
23
25
  'DeliveryPipelineConditionPipelineReadyConditionArgs',
24
26
  'DeliveryPipelineConditionTargetsPresentConditionArgs',
@@ -495,6 +497,84 @@ class CustomTargetTypeCustomActionsIncludeSkaffoldModuleGoogleCloudStorageArgs:
495
497
  pulumi.set(self, "path", value)
496
498
 
497
499
 
500
+ @pulumi.input_type
501
+ class CustomTargetTypeIamBindingConditionArgs:
502
+ def __init__(__self__, *,
503
+ expression: pulumi.Input[str],
504
+ title: pulumi.Input[str],
505
+ description: Optional[pulumi.Input[str]] = None):
506
+ pulumi.set(__self__, "expression", expression)
507
+ pulumi.set(__self__, "title", title)
508
+ if description is not None:
509
+ pulumi.set(__self__, "description", description)
510
+
511
+ @property
512
+ @pulumi.getter
513
+ def expression(self) -> pulumi.Input[str]:
514
+ return pulumi.get(self, "expression")
515
+
516
+ @expression.setter
517
+ def expression(self, value: pulumi.Input[str]):
518
+ pulumi.set(self, "expression", value)
519
+
520
+ @property
521
+ @pulumi.getter
522
+ def title(self) -> pulumi.Input[str]:
523
+ return pulumi.get(self, "title")
524
+
525
+ @title.setter
526
+ def title(self, value: pulumi.Input[str]):
527
+ pulumi.set(self, "title", value)
528
+
529
+ @property
530
+ @pulumi.getter
531
+ def description(self) -> Optional[pulumi.Input[str]]:
532
+ return pulumi.get(self, "description")
533
+
534
+ @description.setter
535
+ def description(self, value: Optional[pulumi.Input[str]]):
536
+ pulumi.set(self, "description", value)
537
+
538
+
539
+ @pulumi.input_type
540
+ class CustomTargetTypeIamMemberConditionArgs:
541
+ def __init__(__self__, *,
542
+ expression: pulumi.Input[str],
543
+ title: pulumi.Input[str],
544
+ description: Optional[pulumi.Input[str]] = None):
545
+ pulumi.set(__self__, "expression", expression)
546
+ pulumi.set(__self__, "title", title)
547
+ if description is not None:
548
+ pulumi.set(__self__, "description", description)
549
+
550
+ @property
551
+ @pulumi.getter
552
+ def expression(self) -> pulumi.Input[str]:
553
+ return pulumi.get(self, "expression")
554
+
555
+ @expression.setter
556
+ def expression(self, value: pulumi.Input[str]):
557
+ pulumi.set(self, "expression", value)
558
+
559
+ @property
560
+ @pulumi.getter
561
+ def title(self) -> pulumi.Input[str]:
562
+ return pulumi.get(self, "title")
563
+
564
+ @title.setter
565
+ def title(self, value: pulumi.Input[str]):
566
+ pulumi.set(self, "title", value)
567
+
568
+ @property
569
+ @pulumi.getter
570
+ def description(self) -> Optional[pulumi.Input[str]]:
571
+ return pulumi.get(self, "description")
572
+
573
+ @description.setter
574
+ def description(self, value: Optional[pulumi.Input[str]]):
575
+ pulumi.set(self, "description", value)
576
+
577
+
498
578
  @pulumi.input_type
499
579
  class DeliveryPipelineConditionArgs:
500
580
  def __init__(__self__, *,