google-apis-deploymentmanager_alpha 0.37.0 → 0.39.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7ec9f67f6a4ef127732fe46174dcf1e43292a248001cf807e82894bab09dd530
|
|
4
|
+
data.tar.gz: a0b3eb9e98c338415fdf7cb8280e5b48ea1b0fa74a816804b72b4e1a21134973
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 96036fa80d5a0692aca14e8d6cefcfa5e8d7216c40d12cf50703a05b4b883ef3a0e62d9f6e3db471b9fa7fb314783c03e8f47d66d59586188b2dc6f57f093237
|
|
7
|
+
data.tar.gz: 8a3193c547fd105752e011f4fc45f948584a9860159d81adb973d629c48f75a2e92b7851747449e4105ba4eabf2732f47765a57a098458f56a42b9328bf4d5ff
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-deploymentmanager_alpha
|
|
2
2
|
|
|
3
|
+
### v0.39.0 (2025-11-30)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251121
|
|
6
|
+
|
|
7
|
+
### v0.38.0 (2025-09-07)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20250828
|
|
10
|
+
|
|
3
11
|
### v0.37.0 (2025-08-31)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20250822
|
|
@@ -1033,6 +1033,26 @@ module Google
|
|
|
1033
1033
|
end
|
|
1034
1034
|
end
|
|
1035
1035
|
|
|
1036
|
+
#
|
|
1037
|
+
class FirewallPolicyRuleOperationMetadata
|
|
1038
|
+
include Google::Apis::Core::Hashable
|
|
1039
|
+
|
|
1040
|
+
# The priority allocated for the firewall policy rule if query parameters
|
|
1041
|
+
# specified minPriority/maxPriority.
|
|
1042
|
+
# Corresponds to the JSON property `allocatedPriority`
|
|
1043
|
+
# @return [Fixnum]
|
|
1044
|
+
attr_accessor :allocated_priority
|
|
1045
|
+
|
|
1046
|
+
def initialize(**args)
|
|
1047
|
+
update!(**args)
|
|
1048
|
+
end
|
|
1049
|
+
|
|
1050
|
+
# Update properties of this object
|
|
1051
|
+
def update!(**args)
|
|
1052
|
+
@allocated_priority = args[:allocated_priority] if args.key?(:allocated_priority)
|
|
1053
|
+
end
|
|
1054
|
+
end
|
|
1055
|
+
|
|
1036
1056
|
#
|
|
1037
1057
|
class GlobalSetPolicyRequest
|
|
1038
1058
|
include Google::Apis::Core::Hashable
|
|
@@ -1081,7 +1101,7 @@ module Google
|
|
|
1081
1101
|
# @return [Google::Apis::DeploymentmanagerAlpha::Policy]
|
|
1082
1102
|
attr_accessor :policy
|
|
1083
1103
|
|
|
1084
|
-
#
|
|
1104
|
+
# Update mask for the policy.
|
|
1085
1105
|
# Corresponds to the JSON property `updateMask`
|
|
1086
1106
|
# @return [String]
|
|
1087
1107
|
attr_accessor :update_mask
|
|
@@ -1451,6 +1471,11 @@ module Google
|
|
|
1451
1471
|
# @return [Google::Apis::DeploymentmanagerAlpha::Operation::Error]
|
|
1452
1472
|
attr_accessor :error
|
|
1453
1473
|
|
|
1474
|
+
#
|
|
1475
|
+
# Corresponds to the JSON property `firewallPolicyRuleOperationMetadata`
|
|
1476
|
+
# @return [Google::Apis::DeploymentmanagerAlpha::FirewallPolicyRuleOperationMetadata]
|
|
1477
|
+
attr_accessor :firewall_policy_rule_operation_metadata
|
|
1478
|
+
|
|
1454
1479
|
# [Output Only] If the operation fails, this field contains the HTTP error
|
|
1455
1480
|
# message that was returned, such as `NOT FOUND`.
|
|
1456
1481
|
# Corresponds to the JSON property `httpErrorMessage`
|
|
@@ -1600,6 +1625,7 @@ module Google
|
|
|
1600
1625
|
@description = args[:description] if args.key?(:description)
|
|
1601
1626
|
@end_time = args[:end_time] if args.key?(:end_time)
|
|
1602
1627
|
@error = args[:error] if args.key?(:error)
|
|
1628
|
+
@firewall_policy_rule_operation_metadata = args[:firewall_policy_rule_operation_metadata] if args.key?(:firewall_policy_rule_operation_metadata)
|
|
1603
1629
|
@http_error_message = args[:http_error_message] if args.key?(:http_error_message)
|
|
1604
1630
|
@http_error_status_code = args[:http_error_status_code] if args.key?(:http_error_status_code)
|
|
1605
1631
|
@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.
|
|
19
|
+
GEM_VERSION = "0.39.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 = "
|
|
25
|
+
REVISION = "20251121"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -172,6 +172,12 @@ module Google
|
|
|
172
172
|
include Google::Apis::Core::JsonObjectSupport
|
|
173
173
|
end
|
|
174
174
|
|
|
175
|
+
class FirewallPolicyRuleOperationMetadata
|
|
176
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
177
|
+
|
|
178
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
179
|
+
end
|
|
180
|
+
|
|
175
181
|
class GlobalSetPolicyRequest
|
|
176
182
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
177
183
|
|
|
@@ -730,6 +736,13 @@ module Google
|
|
|
730
736
|
end
|
|
731
737
|
end
|
|
732
738
|
|
|
739
|
+
class FirewallPolicyRuleOperationMetadata
|
|
740
|
+
# @private
|
|
741
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
742
|
+
property :allocated_priority, as: 'allocatedPriority'
|
|
743
|
+
end
|
|
744
|
+
end
|
|
745
|
+
|
|
733
746
|
class GlobalSetPolicyRequest
|
|
734
747
|
# @private
|
|
735
748
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -840,6 +853,8 @@ module Google
|
|
|
840
853
|
property :end_time, as: 'endTime'
|
|
841
854
|
property :error, as: 'error', class: Google::Apis::DeploymentmanagerAlpha::Operation::Error, decorator: Google::Apis::DeploymentmanagerAlpha::Operation::Error::Representation
|
|
842
855
|
|
|
856
|
+
property :firewall_policy_rule_operation_metadata, as: 'firewallPolicyRuleOperationMetadata', class: Google::Apis::DeploymentmanagerAlpha::FirewallPolicyRuleOperationMetadata, decorator: Google::Apis::DeploymentmanagerAlpha::FirewallPolicyRuleOperationMetadata::Representation
|
|
857
|
+
|
|
843
858
|
property :http_error_message, as: 'httpErrorMessage'
|
|
844
859
|
property :http_error_status_code, as: 'httpErrorStatusCode'
|
|
845
860
|
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.
|
|
4
|
+
version: 0.39.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.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-deploymentmanager_alpha/v0.39.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:
|