google-apis-deploymentmanager_alpha 0.40.0 → 0.41.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: bb41049bcc0ab8f8a1d25b782134d1f07a9bdcf6124aaaffac2610fed2f43088
4
- data.tar.gz: 47cedb80c49263a317ee71fd915a51ec4e7ce6c2cf24e09a70f019edf6979d29
3
+ metadata.gz: eb98adf89b1273f710ab80756c6d0f84dc5a15e8e5f9830eb118fad74c315fe6
4
+ data.tar.gz: 45555994ac744af86f22bce67f97fd1c8c3be7f4123f28d4ab905f845cb6ebed
5
5
  SHA512:
6
- metadata.gz: 8a88d080e3fd0588043e4675bf01d9cfbcf09f7815b2d9795ef3fc0626fb30f4cc47c863b82d9ea5330de6deabffc63503a24660c0dd8146f21340fb3a70d776
7
- data.tar.gz: ba4bd0175044281cfa9e54d4c1d83866d0f0dd1e1a8cf1db87cafc0dabd42b5546a4f228fa0b00c5bd675b42707dd71ac65fb41d1ff5750261c8c348f2bd75a6
6
+ metadata.gz: 2efdaf2fd7391b387a4dd613b867f40125a060ed4dfdc00199e8d8e97e3446c5a21513bf86783338ad7604579d5c903a669caa4e34828b8794bed13e79d1e9c0
7
+ data.tar.gz: 24934900bb89b0a84e95464383e555d88674f18964b7a7a7c03c76b82c5b25b33ac97b6ffbfb9ec053ceba82f8e0621f3c6bb6d0bee9c1e53d6223910400aa90
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-deploymentmanager_alpha
2
2
 
3
+ ### v0.41.0 (2026-03-22)
4
+
5
+ * Regenerated from discovery document revision 20260312
6
+
3
7
  ### v0.40.0 (2025-12-07)
4
8
 
5
9
  * Regenerated from discovery document revision 20251128
@@ -1053,6 +1053,52 @@ module Google
1053
1053
  end
1054
1054
  end
1055
1055
 
1056
+ #
1057
+ class GetVersionOperationMetadata
1058
+ include Google::Apis::Core::Hashable
1059
+
1060
+ #
1061
+ # Corresponds to the JSON property `inlineSbomInfo`
1062
+ # @return [Google::Apis::DeploymentmanagerAlpha::GetVersionOperationMetadataSbomInfo]
1063
+ attr_accessor :inline_sbom_info
1064
+
1065
+ def initialize(**args)
1066
+ update!(**args)
1067
+ end
1068
+
1069
+ # Update properties of this object
1070
+ def update!(**args)
1071
+ @inline_sbom_info = args[:inline_sbom_info] if args.key?(:inline_sbom_info)
1072
+ end
1073
+ end
1074
+
1075
+ #
1076
+ class GetVersionOperationMetadataSbomInfo
1077
+ include Google::Apis::Core::Hashable
1078
+
1079
+ # SBOM versions currently applied to the resource. The key is the component name
1080
+ # and the value is the version.
1081
+ # Corresponds to the JSON property `currentComponentVersions`
1082
+ # @return [Hash<String,String>]
1083
+ attr_accessor :current_component_versions
1084
+
1085
+ # SBOM versions scheduled for the next maintenance. The key is the component
1086
+ # name and the value is the version.
1087
+ # Corresponds to the JSON property `targetComponentVersions`
1088
+ # @return [Hash<String,String>]
1089
+ attr_accessor :target_component_versions
1090
+
1091
+ def initialize(**args)
1092
+ update!(**args)
1093
+ end
1094
+
1095
+ # Update properties of this object
1096
+ def update!(**args)
1097
+ @current_component_versions = args[:current_component_versions] if args.key?(:current_component_versions)
1098
+ @target_component_versions = args[:target_component_versions] if args.key?(:target_component_versions)
1099
+ end
1100
+ end
1101
+
1056
1102
  #
1057
1103
  class GlobalSetPolicyRequest
1058
1104
  include Google::Apis::Core::Hashable
@@ -1476,6 +1522,11 @@ module Google
1476
1522
  # @return [Google::Apis::DeploymentmanagerAlpha::FirewallPolicyRuleOperationMetadata]
1477
1523
  attr_accessor :firewall_policy_rule_operation_metadata
1478
1524
 
1525
+ #
1526
+ # Corresponds to the JSON property `getVersionOperationMetadata`
1527
+ # @return [Google::Apis::DeploymentmanagerAlpha::GetVersionOperationMetadata]
1528
+ attr_accessor :get_version_operation_metadata
1529
+
1479
1530
  # [Output Only] If the operation fails, this field contains the HTTP error
1480
1531
  # message that was returned, such as `NOT FOUND`.
1481
1532
  # Corresponds to the JSON property `httpErrorMessage`
@@ -1628,6 +1679,7 @@ module Google
1628
1679
  @end_time = args[:end_time] if args.key?(:end_time)
1629
1680
  @error = args[:error] if args.key?(:error)
1630
1681
  @firewall_policy_rule_operation_metadata = args[:firewall_policy_rule_operation_metadata] if args.key?(:firewall_policy_rule_operation_metadata)
1682
+ @get_version_operation_metadata = args[:get_version_operation_metadata] if args.key?(:get_version_operation_metadata)
1631
1683
  @http_error_message = args[:http_error_message] if args.key?(:http_error_message)
1632
1684
  @http_error_status_code = args[:http_error_status_code] if args.key?(:http_error_status_code)
1633
1685
  @id = args[:id] if args.key?(:id)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DeploymentmanagerAlpha
18
18
  # Version of the google-apis-deploymentmanager_alpha gem
19
- GEM_VERSION = "0.40.0"
19
+ GEM_VERSION = "0.41.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 = "20251128"
25
+ REVISION = "20260312"
26
26
  end
27
27
  end
28
28
  end
@@ -178,6 +178,18 @@ module Google
178
178
  include Google::Apis::Core::JsonObjectSupport
179
179
  end
180
180
 
181
+ class GetVersionOperationMetadata
182
+ class Representation < Google::Apis::Core::JsonRepresentation; end
183
+
184
+ include Google::Apis::Core::JsonObjectSupport
185
+ end
186
+
187
+ class GetVersionOperationMetadataSbomInfo
188
+ class Representation < Google::Apis::Core::JsonRepresentation; end
189
+
190
+ include Google::Apis::Core::JsonObjectSupport
191
+ end
192
+
181
193
  class GlobalSetPolicyRequest
182
194
  class Representation < Google::Apis::Core::JsonRepresentation; end
183
195
 
@@ -743,6 +755,22 @@ module Google
743
755
  end
744
756
  end
745
757
 
758
+ class GetVersionOperationMetadata
759
+ # @private
760
+ class Representation < Google::Apis::Core::JsonRepresentation
761
+ property :inline_sbom_info, as: 'inlineSbomInfo', class: Google::Apis::DeploymentmanagerAlpha::GetVersionOperationMetadataSbomInfo, decorator: Google::Apis::DeploymentmanagerAlpha::GetVersionOperationMetadataSbomInfo::Representation
762
+
763
+ end
764
+ end
765
+
766
+ class GetVersionOperationMetadataSbomInfo
767
+ # @private
768
+ class Representation < Google::Apis::Core::JsonRepresentation
769
+ hash :current_component_versions, as: 'currentComponentVersions'
770
+ hash :target_component_versions, as: 'targetComponentVersions'
771
+ end
772
+ end
773
+
746
774
  class GlobalSetPolicyRequest
747
775
  # @private
748
776
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -855,6 +883,8 @@ module Google
855
883
 
856
884
  property :firewall_policy_rule_operation_metadata, as: 'firewallPolicyRuleOperationMetadata', class: Google::Apis::DeploymentmanagerAlpha::FirewallPolicyRuleOperationMetadata, decorator: Google::Apis::DeploymentmanagerAlpha::FirewallPolicyRuleOperationMetadata::Representation
857
885
 
886
+ property :get_version_operation_metadata, as: 'getVersionOperationMetadata', class: Google::Apis::DeploymentmanagerAlpha::GetVersionOperationMetadata, decorator: Google::Apis::DeploymentmanagerAlpha::GetVersionOperationMetadata::Representation
887
+
858
888
  property :http_error_message, as: 'httpErrorMessage'
859
889
  property :http_error_status_code, as: 'httpErrorStatusCode'
860
890
  property :id, :numeric_string => true, as: 'id'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-deploymentmanager_alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.40.0
4
+ version: 0.41.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-deploymentmanager_alpha/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-deploymentmanager_alpha/v0.40.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-deploymentmanager_alpha/v0.41.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-deploymentmanager_alpha
62
62
  rdoc_options: []
63
63
  require_paths: