google-apis-config_v1 0.17.0 → 0.19.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 59a05cb90881dcdb89052d8c6666fecbd3578f65050cbea7bfc1c5d59d5988af
4
- data.tar.gz: 0a09b853623d0fc190622135f13eb67eed274a0af15946ef9b87f05e79371e83
3
+ metadata.gz: a699f77597b10716e15691b1c62d225bc5f745a1fe78c2e87712ef8d986b6367
4
+ data.tar.gz: 07e0b09ce24568006c5af03c0978bbaa0de74080c521c61eb72ae1364852b133
5
5
  SHA512:
6
- metadata.gz: 638e0c2d517dba29124015f5d71ff2ae9b0d6f46fb02fe3d54d49508d1c82768a4c4801613f695837e0b7a2a4d61b4cf3d32400a70f236b0195194f6f2277079
7
- data.tar.gz: '099d2612a3d125c1a0b60d1115a58e7b06343e6577662d42230d10a5acb0923c55619fb22b8ec84a446801aacc4e23e74ea5a5ec8899b7d1caf3b31e7df4ebee'
6
+ metadata.gz: 25e0245040559c4b8d18d829910b171850811b9ab06c59c5b53689b8ea588d807d68fe085011ea23e21a160bf208c13cd92b24a11e69cafa0d13231a58b7f18f
7
+ data.tar.gz: 52255155dc929e89158a5d2d408bf9cd168aa6df0c76d66db448d585f28417acd4d827923f25fc9ed4e12e4b9ea3457899e0656a951e8cfd130523ccae0a6126
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-config_v1
2
2
 
3
+ ### v0.19.0 (2026-05-03)
4
+
5
+ * Regenerated from discovery document revision 20260422
6
+
7
+ ### v0.18.0 (2026-04-19)
8
+
9
+ * Regenerated from discovery document revision 20260324
10
+
3
11
  ### v0.17.0 (2026-02-08)
4
12
 
5
13
  * Regenerated from discovery document revision 20260128
@@ -479,6 +479,139 @@ module Google
479
479
  end
480
480
  end
481
481
 
482
+ # A DeploymentGroup is a collection of DeploymentUnits that in a DAG-like
483
+ # structure.
484
+ class DeploymentGroup
485
+ include Google::Apis::Core::Hashable
486
+
487
+ # Optional. Arbitrary key-value metadata storage e.g. to help client tools
488
+ # identify deployment group during automation. See https://google.aip.dev/148#
489
+ # annotations for details on format and size limitations.
490
+ # Corresponds to the JSON property `annotations`
491
+ # @return [Hash<String,String>]
492
+ attr_accessor :annotations
493
+
494
+ # Output only. Time when the deployment group was created.
495
+ # Corresponds to the JSON property `createTime`
496
+ # @return [String]
497
+ attr_accessor :create_time
498
+
499
+ # The deployment units of the deployment group in a DAG like structure. When a
500
+ # deployment group is being provisioned, the deployment units are deployed in a
501
+ # DAG order. The provided units must be in a DAG order, otherwise an error will
502
+ # be returned.
503
+ # Corresponds to the JSON property `deploymentUnits`
504
+ # @return [Array<Google::Apis::ConfigV1::DeploymentUnit>]
505
+ attr_accessor :deployment_units
506
+
507
+ # Optional. User-defined metadata for the deployment group.
508
+ # Corresponds to the JSON property `labels`
509
+ # @return [Hash<String,String>]
510
+ attr_accessor :labels
511
+
512
+ # Identifier. The name of the deployment group. Format: 'projects/`project_id`/
513
+ # locations/`location`/deploymentGroups/`deployment_group`'.
514
+ # Corresponds to the JSON property `name`
515
+ # @return [String]
516
+ attr_accessor :name
517
+
518
+ # The `Status` type defines a logical error model that is suitable for different
519
+ # programming environments, including REST APIs and RPC APIs. It is used by [
520
+ # gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
521
+ # data: error code, error message, and error details. You can find out more
522
+ # about this error model and how to work with it in the [API Design Guide](https:
523
+ # //cloud.google.com/apis/design/errors).
524
+ # Corresponds to the JSON property `provisioningError`
525
+ # @return [Google::Apis::ConfigV1::Status]
526
+ attr_accessor :provisioning_error
527
+
528
+ # Output only. The provisioning state of the deployment group.
529
+ # Corresponds to the JSON property `provisioningState`
530
+ # @return [String]
531
+ attr_accessor :provisioning_state
532
+
533
+ # Output only. Additional information regarding the current provisioning state.
534
+ # Corresponds to the JSON property `provisioningStateDescription`
535
+ # @return [String]
536
+ attr_accessor :provisioning_state_description
537
+
538
+ # Output only. Current state of the deployment group.
539
+ # Corresponds to the JSON property `state`
540
+ # @return [String]
541
+ attr_accessor :state
542
+
543
+ # Output only. Additional information regarding the current state.
544
+ # Corresponds to the JSON property `stateDescription`
545
+ # @return [String]
546
+ attr_accessor :state_description
547
+
548
+ # Output only. Time when the deployment group was last updated.
549
+ # Corresponds to the JSON property `updateTime`
550
+ # @return [String]
551
+ attr_accessor :update_time
552
+
553
+ def initialize(**args)
554
+ update!(**args)
555
+ end
556
+
557
+ # Update properties of this object
558
+ def update!(**args)
559
+ @annotations = args[:annotations] if args.key?(:annotations)
560
+ @create_time = args[:create_time] if args.key?(:create_time)
561
+ @deployment_units = args[:deployment_units] if args.key?(:deployment_units)
562
+ @labels = args[:labels] if args.key?(:labels)
563
+ @name = args[:name] if args.key?(:name)
564
+ @provisioning_error = args[:provisioning_error] if args.key?(:provisioning_error)
565
+ @provisioning_state = args[:provisioning_state] if args.key?(:provisioning_state)
566
+ @provisioning_state_description = args[:provisioning_state_description] if args.key?(:provisioning_state_description)
567
+ @state = args[:state] if args.key?(:state)
568
+ @state_description = args[:state_description] if args.key?(:state_description)
569
+ @update_time = args[:update_time] if args.key?(:update_time)
570
+ end
571
+ end
572
+
573
+ # A DeploymentGroupRevision represents a snapshot of a DeploymentGroup at a
574
+ # given point in time, created when a DeploymentGroup is provisioned or
575
+ # deprovisioned.
576
+ class DeploymentGroupRevision
577
+ include Google::Apis::Core::Hashable
578
+
579
+ # Output only. The alternative IDs of the deployment group revision.
580
+ # Corresponds to the JSON property `alternativeIds`
581
+ # @return [Array<String>]
582
+ attr_accessor :alternative_ids
583
+
584
+ # Output only. Time when the deployment group revision was created.
585
+ # Corresponds to the JSON property `createTime`
586
+ # @return [String]
587
+ attr_accessor :create_time
588
+
589
+ # Identifier. The name of the deployment group revision. Format: 'projects/`
590
+ # project_id`/locations/`location`/deploymentGroups/`deployment_group`/revisions/
591
+ # `revision`'.
592
+ # Corresponds to the JSON property `name`
593
+ # @return [String]
594
+ attr_accessor :name
595
+
596
+ # A DeploymentGroup is a collection of DeploymentUnits that in a DAG-like
597
+ # structure.
598
+ # Corresponds to the JSON property `snapshot`
599
+ # @return [Google::Apis::ConfigV1::DeploymentGroup]
600
+ attr_accessor :snapshot
601
+
602
+ def initialize(**args)
603
+ update!(**args)
604
+ end
605
+
606
+ # Update properties of this object
607
+ def update!(**args)
608
+ @alternative_ids = args[:alternative_ids] if args.key?(:alternative_ids)
609
+ @create_time = args[:create_time] if args.key?(:create_time)
610
+ @name = args[:name] if args.key?(:name)
611
+ @snapshot = args[:snapshot] if args.key?(:snapshot)
612
+ end
613
+ end
614
+
482
615
  # Ephemeral metadata content describing the state of a deployment operation.
483
616
  class DeploymentOperationMetadata
484
617
  include Google::Apis::Core::Hashable
@@ -517,6 +650,235 @@ module Google
517
650
  end
518
651
  end
519
652
 
653
+ # The summary of the deployment operation.
654
+ class DeploymentOperationSummary
655
+ include Google::Apis::Core::Hashable
656
+
657
+ # Output only. Location of Deployment operations artifacts in `gs://`bucket`/`
658
+ # object`` format.
659
+ # Corresponds to the JSON property `artifacts`
660
+ # @return [String]
661
+ attr_accessor :artifacts
662
+
663
+ # Output only. Cloud Build instance UUID associated with this operation.
664
+ # Corresponds to the JSON property `build`
665
+ # @return [String]
666
+ attr_accessor :build
667
+
668
+ # Output only. Location of Deployment operations content in `gs://`bucket`/`
669
+ # object`` format.
670
+ # Corresponds to the JSON property `content`
671
+ # @return [String]
672
+ attr_accessor :content
673
+
674
+ # Output only. The current step the deployment operation is running.
675
+ # Corresponds to the JSON property `deploymentStep`
676
+ # @return [String]
677
+ attr_accessor :deployment_step
678
+
679
+ # Output only. Location of Deployment operations logs in `gs://`bucket`/`object``
680
+ # format.
681
+ # Corresponds to the JSON property `logs`
682
+ # @return [String]
683
+ attr_accessor :logs
684
+
685
+ def initialize(**args)
686
+ update!(**args)
687
+ end
688
+
689
+ # Update properties of this object
690
+ def update!(**args)
691
+ @artifacts = args[:artifacts] if args.key?(:artifacts)
692
+ @build = args[:build] if args.key?(:build)
693
+ @content = args[:content] if args.key?(:content)
694
+ @deployment_step = args[:deployment_step] if args.key?(:deployment_step)
695
+ @logs = args[:logs] if args.key?(:logs)
696
+ end
697
+ end
698
+
699
+ # Configuration for a value sourced from a Deployment.
700
+ class DeploymentSource
701
+ include Google::Apis::Core::Hashable
702
+
703
+ # Required. The resource name of the source Deployment to import the output from.
704
+ # Format: projects/`project`/locations/`location`/deployments/`deployment` The
705
+ # source deployment must be in the same project and location.
706
+ # Corresponds to the JSON property `deployment`
707
+ # @return [String]
708
+ attr_accessor :deployment
709
+
710
+ # Required. The name of the output variable in the source deployment's latest
711
+ # successfully applied revision.
712
+ # Corresponds to the JSON property `outputName`
713
+ # @return [String]
714
+ attr_accessor :output_name
715
+
716
+ def initialize(**args)
717
+ update!(**args)
718
+ end
719
+
720
+ # Update properties of this object
721
+ def update!(**args)
722
+ @deployment = args[:deployment] if args.key?(:deployment)
723
+ @output_name = args[:output_name] if args.key?(:output_name)
724
+ end
725
+ end
726
+
727
+ # Spec for a deployment to be created.
728
+ class DeploymentSpec
729
+ include Google::Apis::Core::Hashable
730
+
731
+ # A Deployment is a group of resources and configs managed and provisioned by
732
+ # Infra Manager.
733
+ # Corresponds to the JSON property `deployment`
734
+ # @return [Google::Apis::ConfigV1::Deployment]
735
+ attr_accessor :deployment
736
+
737
+ # Required. The id of the deployment to be created which doesn't include the
738
+ # project id and location.
739
+ # Corresponds to the JSON property `deploymentId`
740
+ # @return [String]
741
+ attr_accessor :deployment_id
742
+
743
+ def initialize(**args)
744
+ update!(**args)
745
+ end
746
+
747
+ # Update properties of this object
748
+ def update!(**args)
749
+ @deployment = args[:deployment] if args.key?(:deployment)
750
+ @deployment_id = args[:deployment_id] if args.key?(:deployment_id)
751
+ end
752
+ end
753
+
754
+ # A DeploymentUnit is a container for a deployment and its dependencies. An
755
+ # existing deployment can be provided directly in the unit, or the unit can act
756
+ # as a placeholder to define the DAG, with the deployment specs supplied in a `
757
+ # provisionDeploymentRequest`.
758
+ class DeploymentUnit
759
+ include Google::Apis::Core::Hashable
760
+
761
+ # Required. The IDs of the deployment units within the deployment group that
762
+ # this unit depends on.
763
+ # Corresponds to the JSON property `dependencies`
764
+ # @return [Array<String>]
765
+ attr_accessor :dependencies
766
+
767
+ # Optional. The name of the deployment to be provisioned. Format: 'projects/`
768
+ # project_id`/locations/`location`/deployments/`deployment`'.
769
+ # Corresponds to the JSON property `deployment`
770
+ # @return [String]
771
+ attr_accessor :deployment
772
+
773
+ # The id of the deployment unit. Must be unique within the deployment group.
774
+ # Corresponds to the JSON property `id`
775
+ # @return [String]
776
+ attr_accessor :id
777
+
778
+ def initialize(**args)
779
+ update!(**args)
780
+ end
781
+
782
+ # Update properties of this object
783
+ def update!(**args)
784
+ @dependencies = args[:dependencies] if args.key?(:dependencies)
785
+ @deployment = args[:deployment] if args.key?(:deployment)
786
+ @id = args[:id] if args.key?(:id)
787
+ end
788
+ end
789
+
790
+ # The progress of a deployment unit provisioning or deprovisioning.
791
+ class DeploymentUnitProgress
792
+ include Google::Apis::Core::Hashable
793
+
794
+ # Output only. The name of the deployment to be provisioned. Format: 'projects/`
795
+ # project`/locations/`location`/deployments/`deployment`'.
796
+ # Corresponds to the JSON property `deployment`
797
+ # @return [String]
798
+ attr_accessor :deployment
799
+
800
+ # The summary of the deployment operation.
801
+ # Corresponds to the JSON property `deploymentOperationSummary`
802
+ # @return [Google::Apis::ConfigV1::DeploymentOperationSummary]
803
+ attr_accessor :deployment_operation_summary
804
+
805
+ # The `Status` type defines a logical error model that is suitable for different
806
+ # programming environments, including REST APIs and RPC APIs. It is used by [
807
+ # gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
808
+ # data: error code, error message, and error details. You can find out more
809
+ # about this error model and how to work with it in the [API Design Guide](https:
810
+ # //cloud.google.com/apis/design/errors).
811
+ # Corresponds to the JSON property `error`
812
+ # @return [Google::Apis::ConfigV1::Status]
813
+ attr_accessor :error
814
+
815
+ # Output only. The intent of the deployment unit.
816
+ # Corresponds to the JSON property `intent`
817
+ # @return [String]
818
+ attr_accessor :intent
819
+
820
+ # Output only. The current step of the deployment unit provisioning.
821
+ # Corresponds to the JSON property `state`
822
+ # @return [String]
823
+ attr_accessor :state
824
+
825
+ # Output only. Additional information regarding the current state.
826
+ # Corresponds to the JSON property `stateDescription`
827
+ # @return [String]
828
+ attr_accessor :state_description
829
+
830
+ # Output only. The unit id of the deployment unit to be provisioned.
831
+ # Corresponds to the JSON property `unitId`
832
+ # @return [String]
833
+ attr_accessor :unit_id
834
+
835
+ def initialize(**args)
836
+ update!(**args)
837
+ end
838
+
839
+ # Update properties of this object
840
+ def update!(**args)
841
+ @deployment = args[:deployment] if args.key?(:deployment)
842
+ @deployment_operation_summary = args[:deployment_operation_summary] if args.key?(:deployment_operation_summary)
843
+ @error = args[:error] if args.key?(:error)
844
+ @intent = args[:intent] if args.key?(:intent)
845
+ @state = args[:state] if args.key?(:state)
846
+ @state_description = args[:state_description] if args.key?(:state_description)
847
+ @unit_id = args[:unit_id] if args.key?(:unit_id)
848
+ end
849
+ end
850
+
851
+ # The request message for the DeprovisionDeploymentGroup method.
852
+ class DeprovisionDeploymentGroupRequest
853
+ include Google::Apis::Core::Hashable
854
+
855
+ # Optional. Policy on how resources within each deployment should be handled
856
+ # during deletion. This policy is applied globally to the deletion of all
857
+ # deployments in this group. This corresponds to the 'delete_policy' field in
858
+ # DeleteDeploymentRequest.
859
+ # Corresponds to the JSON property `deletePolicy`
860
+ # @return [String]
861
+ attr_accessor :delete_policy
862
+
863
+ # Optional. If set to true, this option is propagated to the deletion of each
864
+ # deployment in the group. This corresponds to the 'force' field in
865
+ # DeleteDeploymentRequest.
866
+ # Corresponds to the JSON property `force`
867
+ # @return [Boolean]
868
+ attr_accessor :force
869
+ alias_method :force?, :force
870
+
871
+ def initialize(**args)
872
+ update!(**args)
873
+ end
874
+
875
+ # Update properties of this object
876
+ def update!(**args)
877
+ @delete_policy = args[:delete_policy] if args.key?(:delete_policy)
878
+ @force = args[:force] if args.key?(:force)
879
+ end
880
+ end
881
+
520
882
  # A generic empty message that you can re-use to avoid defining duplicated empty
521
883
  # messages in your APIs. A typical example is to use it as the request or the
522
884
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
@@ -654,6 +1016,25 @@ module Google
654
1016
  end
655
1017
  end
656
1018
 
1019
+ # Configuration for a source of an external value.
1020
+ class ExternalValueSource
1021
+ include Google::Apis::Core::Hashable
1022
+
1023
+ # Configuration for a value sourced from a Deployment.
1024
+ # Corresponds to the JSON property `deploymentSource`
1025
+ # @return [Google::Apis::ConfigV1::DeploymentSource]
1026
+ attr_accessor :deployment_source
1027
+
1028
+ def initialize(**args)
1029
+ update!(**args)
1030
+ end
1031
+
1032
+ # Update properties of this object
1033
+ def update!(**args)
1034
+ @deployment_source = args[:deployment_source] if args.key?(:deployment_source)
1035
+ end
1036
+ end
1037
+
657
1038
  # A set of files in a Git repository.
658
1039
  class GitSource
659
1040
  include Google::Apis::Core::Hashable
@@ -705,6 +1086,70 @@ module Google
705
1086
  end
706
1087
  end
707
1088
 
1089
+ # The response message for the ListDeploymentGroupRevisions method.
1090
+ class ListDeploymentGroupRevisionsResponse
1091
+ include Google::Apis::Core::Hashable
1092
+
1093
+ # The deployment group revisions from the specified collection.
1094
+ # Corresponds to the JSON property `deploymentGroupRevisions`
1095
+ # @return [Array<Google::Apis::ConfigV1::DeploymentGroupRevision>]
1096
+ attr_accessor :deployment_group_revisions
1097
+
1098
+ # Token to be supplied to the next ListDeploymentGroupRevisions request via `
1099
+ # page_token` to obtain the next set of results.
1100
+ # Corresponds to the JSON property `nextPageToken`
1101
+ # @return [String]
1102
+ attr_accessor :next_page_token
1103
+
1104
+ # Unordered list. Locations that could not be reached.
1105
+ # Corresponds to the JSON property `unreachable`
1106
+ # @return [Array<String>]
1107
+ attr_accessor :unreachable
1108
+
1109
+ def initialize(**args)
1110
+ update!(**args)
1111
+ end
1112
+
1113
+ # Update properties of this object
1114
+ def update!(**args)
1115
+ @deployment_group_revisions = args[:deployment_group_revisions] if args.key?(:deployment_group_revisions)
1116
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1117
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
1118
+ end
1119
+ end
1120
+
1121
+ # The response message for the ListDeploymentGroups method.
1122
+ class ListDeploymentGroupsResponse
1123
+ include Google::Apis::Core::Hashable
1124
+
1125
+ # The deployment groups from the specified collection.
1126
+ # Corresponds to the JSON property `deploymentGroups`
1127
+ # @return [Array<Google::Apis::ConfigV1::DeploymentGroup>]
1128
+ attr_accessor :deployment_groups
1129
+
1130
+ # Token to be supplied to the next ListDeploymentGroups request via `page_token`
1131
+ # to obtain the next set of results.
1132
+ # Corresponds to the JSON property `nextPageToken`
1133
+ # @return [String]
1134
+ attr_accessor :next_page_token
1135
+
1136
+ # Locations that could not be reached.
1137
+ # Corresponds to the JSON property `unreachable`
1138
+ # @return [Array<String>]
1139
+ attr_accessor :unreachable
1140
+
1141
+ def initialize(**args)
1142
+ update!(**args)
1143
+ end
1144
+
1145
+ # Update properties of this object
1146
+ def update!(**args)
1147
+ @deployment_groups = args[:deployment_groups] if args.key?(:deployment_groups)
1148
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1149
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
1150
+ end
1151
+ end
1152
+
708
1153
  #
709
1154
  class ListDeploymentsResponse
710
1155
  include Google::Apis::Core::Hashable
@@ -1190,6 +1635,12 @@ module Google
1190
1635
  # @return [Google::Apis::ConfigV1::PreviewOperationMetadata]
1191
1636
  attr_accessor :preview_metadata
1192
1637
 
1638
+ # Operation metadata for `ProvisionDeploymentGroup` and `
1639
+ # DeprovisionDeploymentGroup` long-running operations.
1640
+ # Corresponds to the JSON property `provisionDeploymentGroupMetadata`
1641
+ # @return [Google::Apis::ConfigV1::ProvisionDeploymentGroupOperationMetadata]
1642
+ attr_accessor :provision_deployment_group_metadata
1643
+
1193
1644
  # Output only. Identifies whether the user has requested cancellation of the
1194
1645
  # operation. Operations that have successfully been cancelled have google.
1195
1646
  # longrunning.Operation.error value with a google.rpc.Status.code of `1`,
@@ -1225,6 +1676,7 @@ module Google
1225
1676
  @deployment_metadata = args[:deployment_metadata] if args.key?(:deployment_metadata)
1226
1677
  @end_time = args[:end_time] if args.key?(:end_time)
1227
1678
  @preview_metadata = args[:preview_metadata] if args.key?(:preview_metadata)
1679
+ @provision_deployment_group_metadata = args[:provision_deployment_group_metadata] if args.key?(:provision_deployment_group_metadata)
1228
1680
  @requested_cancellation = args[:requested_cancellation] if args.key?(:requested_cancellation)
1229
1681
  @status_message = args[:status_message] if args.key?(:status_message)
1230
1682
  @target = args[:target] if args.key?(:target)
@@ -1694,6 +2146,58 @@ module Google
1694
2146
  end
1695
2147
  end
1696
2148
 
2149
+ # Operation metadata for `ProvisionDeploymentGroup` and `
2150
+ # DeprovisionDeploymentGroup` long-running operations.
2151
+ class ProvisionDeploymentGroupOperationMetadata
2152
+ include Google::Apis::Core::Hashable
2153
+
2154
+ # Output only. Progress information for each deployment unit within the
2155
+ # operation.
2156
+ # Corresponds to the JSON property `deploymentUnitProgresses`
2157
+ # @return [Array<Google::Apis::ConfigV1::DeploymentUnitProgress>]
2158
+ attr_accessor :deployment_unit_progresses
2159
+
2160
+ # Output only. The current step of the deployment group operation.
2161
+ # Corresponds to the JSON property `step`
2162
+ # @return [String]
2163
+ attr_accessor :step
2164
+
2165
+ def initialize(**args)
2166
+ update!(**args)
2167
+ end
2168
+
2169
+ # Update properties of this object
2170
+ def update!(**args)
2171
+ @deployment_unit_progresses = args[:deployment_unit_progresses] if args.key?(:deployment_unit_progresses)
2172
+ @step = args[:step] if args.key?(:step)
2173
+ end
2174
+ end
2175
+
2176
+ # The request message for the ProvisionDeploymentGroup method.
2177
+ class ProvisionDeploymentGroupRequest
2178
+ include Google::Apis::Core::Hashable
2179
+
2180
+ # Optional. The deployment specs of the deployment units to be created within
2181
+ # the same project and location of the deployment group. The key is the unit ID,
2182
+ # and the value is the `DeploymentSpec`. Provisioning will fail if a `
2183
+ # deployment_spec` has a `deployment_id` that matches an existing deployment in
2184
+ # the same project and location. If an existing deployment was part of the last
2185
+ # successful revision but is no longer in the current DeploymentGroup's `
2186
+ # deployment_units`, it will be recreated if included in `deployment_specs`.
2187
+ # Corresponds to the JSON property `deploymentSpecs`
2188
+ # @return [Hash<String,Google::Apis::ConfigV1::DeploymentSpec>]
2189
+ attr_accessor :deployment_specs
2190
+
2191
+ def initialize(**args)
2192
+ update!(**args)
2193
+ end
2194
+
2195
+ # Update properties of this object
2196
+ def update!(**args)
2197
+ @deployment_specs = args[:deployment_specs] if args.key?(:deployment_specs)
2198
+ end
2199
+ end
2200
+
1697
2201
  # Resource represents a Google Cloud Platform resource actuated by IM. Resources
1698
2202
  # are child resources of Revisions.
1699
2203
  class Resource
@@ -2223,6 +2727,12 @@ module Google
2223
2727
  class TerraformBlueprint
2224
2728
  include Google::Apis::Core::Hashable
2225
2729
 
2730
+ # Optional. Map of input variable names in this blueprint to configurations for
2731
+ # importing values from external sources.
2732
+ # Corresponds to the JSON property `externalValues`
2733
+ # @return [Hash<String,Google::Apis::ConfigV1::ExternalValueSource>]
2734
+ attr_accessor :external_values
2735
+
2226
2736
  # URI of an object in Google Cloud Storage. Format: `gs://`bucket`/`object`` URI
2227
2737
  # may also specify an object version for zipped objects. Format: `gs://`bucket`/`
2228
2738
  # object`#`version``
@@ -2246,6 +2756,7 @@ module Google
2246
2756
 
2247
2757
  # Update properties of this object
2248
2758
  def update!(**args)
2759
+ @external_values = args[:external_values] if args.key?(:external_values)
2249
2760
  @gcs_source = args[:gcs_source] if args.key?(:gcs_source)
2250
2761
  @git_source = args[:git_source] if args.key?(:git_source)
2251
2762
  @input_values = args[:input_values] if args.key?(:input_values)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ConfigV1
18
18
  # Version of the google-apis-config_v1 gem
19
- GEM_VERSION = "0.17.0"
19
+ GEM_VERSION = "0.19.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260128"
25
+ REVISION = "20260422"
26
26
  end
27
27
  end
28
28
  end