google-apis-deploymentmanager_alpha 0.30.0 → 0.32.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 +4 -4
- data/CHANGELOG.md +9 -0
- data/lib/google/apis/deploymentmanager_alpha/classes.rb +360 -2
- data/lib/google/apis/deploymentmanager_alpha/gem_version.rb +3 -3
- data/lib/google/apis/deploymentmanager_alpha/representations.rb +141 -0
- data/lib/google/apis/deploymentmanager_alpha/service.rb +66 -22
- metadata +6 -6
@@ -100,6 +100,12 @@ module Google
|
|
100
100
|
include Google::Apis::Core::JsonObjectSupport
|
101
101
|
end
|
102
102
|
|
103
|
+
class DebugInfo
|
104
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
105
|
+
|
106
|
+
include Google::Apis::Core::JsonObjectSupport
|
107
|
+
end
|
108
|
+
|
103
109
|
class Deployment
|
104
110
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
105
111
|
|
@@ -154,6 +160,12 @@ module Google
|
|
154
160
|
include Google::Apis::Core::JsonObjectSupport
|
155
161
|
end
|
156
162
|
|
163
|
+
class ErrorInfo
|
164
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
165
|
+
|
166
|
+
include Google::Apis::Core::JsonObjectSupport
|
167
|
+
end
|
168
|
+
|
157
169
|
class Expr
|
158
170
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
159
171
|
|
@@ -166,6 +178,18 @@ module Google
|
|
166
178
|
include Google::Apis::Core::JsonObjectSupport
|
167
179
|
end
|
168
180
|
|
181
|
+
class Help
|
182
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
183
|
+
|
184
|
+
include Google::Apis::Core::JsonObjectSupport
|
185
|
+
end
|
186
|
+
|
187
|
+
class HelpLink
|
188
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
|
+
|
190
|
+
include Google::Apis::Core::JsonObjectSupport
|
191
|
+
end
|
192
|
+
|
169
193
|
class ImportFile
|
170
194
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
171
195
|
|
@@ -184,6 +208,12 @@ module Google
|
|
184
208
|
include Google::Apis::Core::JsonObjectSupport
|
185
209
|
end
|
186
210
|
|
211
|
+
class LocalizedMessage
|
212
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
213
|
+
|
214
|
+
include Google::Apis::Core::JsonObjectSupport
|
215
|
+
end
|
216
|
+
|
187
217
|
class Manifest
|
188
218
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
219
|
|
@@ -210,6 +240,12 @@ module Google
|
|
210
240
|
|
211
241
|
class Error
|
212
242
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
243
|
+
|
244
|
+
class ErrorDetail
|
245
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
246
|
+
|
247
|
+
include Google::Apis::Core::JsonObjectSupport
|
248
|
+
end
|
213
249
|
|
214
250
|
include Google::Apis::Core::JsonObjectSupport
|
215
251
|
end
|
@@ -256,6 +292,12 @@ module Google
|
|
256
292
|
include Google::Apis::Core::JsonObjectSupport
|
257
293
|
end
|
258
294
|
|
295
|
+
class QuotaExceededInfo
|
296
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
297
|
+
|
298
|
+
include Google::Apis::Core::JsonObjectSupport
|
299
|
+
end
|
300
|
+
|
259
301
|
class Resource
|
260
302
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
261
303
|
|
@@ -288,6 +330,12 @@ module Google
|
|
288
330
|
|
289
331
|
class Error
|
290
332
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
333
|
+
|
334
|
+
class ErrorDetail
|
335
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
336
|
+
|
337
|
+
include Google::Apis::Core::JsonObjectSupport
|
338
|
+
end
|
291
339
|
|
292
340
|
include Google::Apis::Core::JsonObjectSupport
|
293
341
|
end
|
@@ -556,6 +604,14 @@ module Google
|
|
556
604
|
end
|
557
605
|
end
|
558
606
|
|
607
|
+
class DebugInfo
|
608
|
+
# @private
|
609
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
610
|
+
property :detail, as: 'detail'
|
611
|
+
collection :stack_entries, as: 'stackEntries'
|
612
|
+
end
|
613
|
+
end
|
614
|
+
|
559
615
|
class Deployment
|
560
616
|
# @private
|
561
617
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -649,6 +705,15 @@ module Google
|
|
649
705
|
end
|
650
706
|
end
|
651
707
|
|
708
|
+
class ErrorInfo
|
709
|
+
# @private
|
710
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
711
|
+
property :domain, as: 'domain'
|
712
|
+
hash :metadata, as: 'metadata'
|
713
|
+
property :reason, as: 'reason'
|
714
|
+
end
|
715
|
+
end
|
716
|
+
|
652
717
|
class Expr
|
653
718
|
# @private
|
654
719
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -667,6 +732,23 @@ module Google
|
|
667
732
|
property :etag, :base64 => true, as: 'etag'
|
668
733
|
property :policy, as: 'policy', class: Google::Apis::DeploymentmanagerAlpha::Policy, decorator: Google::Apis::DeploymentmanagerAlpha::Policy::Representation
|
669
734
|
|
735
|
+
property :update_mask, as: 'updateMask'
|
736
|
+
end
|
737
|
+
end
|
738
|
+
|
739
|
+
class Help
|
740
|
+
# @private
|
741
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
742
|
+
collection :links, as: 'links', class: Google::Apis::DeploymentmanagerAlpha::HelpLink, decorator: Google::Apis::DeploymentmanagerAlpha::HelpLink::Representation
|
743
|
+
|
744
|
+
end
|
745
|
+
end
|
746
|
+
|
747
|
+
class HelpLink
|
748
|
+
# @private
|
749
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
750
|
+
property :description, as: 'description'
|
751
|
+
property :url, as: 'url'
|
670
752
|
end
|
671
753
|
end
|
672
754
|
|
@@ -696,6 +778,14 @@ module Google
|
|
696
778
|
end
|
697
779
|
end
|
698
780
|
|
781
|
+
class LocalizedMessage
|
782
|
+
# @private
|
783
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
784
|
+
property :locale, as: 'locale'
|
785
|
+
property :message, as: 'message'
|
786
|
+
end
|
787
|
+
end
|
788
|
+
|
699
789
|
class Manifest
|
700
790
|
# @private
|
701
791
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -756,6 +846,7 @@ module Google
|
|
756
846
|
property :progress, as: 'progress'
|
757
847
|
property :region, as: 'region'
|
758
848
|
property :self_link, as: 'selfLink'
|
849
|
+
property :self_link_with_id, as: 'selfLinkWithId'
|
759
850
|
property :set_common_instance_metadata_operation_metadata, as: 'setCommonInstanceMetadataOperationMetadata', class: Google::Apis::DeploymentmanagerAlpha::SetCommonInstanceMetadataOperationMetadata, decorator: Google::Apis::DeploymentmanagerAlpha::SetCommonInstanceMetadataOperationMetadata::Representation
|
760
851
|
|
761
852
|
property :start_time, as: 'startTime'
|
@@ -779,10 +870,29 @@ module Google
|
|
779
870
|
class Error
|
780
871
|
# @private
|
781
872
|
class Representation < Google::Apis::Core::JsonRepresentation
|
873
|
+
collection :arguments, as: 'arguments'
|
782
874
|
property :code, as: 'code'
|
875
|
+
property :debug_info, as: 'debugInfo', class: Google::Apis::DeploymentmanagerAlpha::DebugInfo, decorator: Google::Apis::DeploymentmanagerAlpha::DebugInfo::Representation
|
876
|
+
|
877
|
+
collection :error_details, as: 'errorDetails', class: Google::Apis::DeploymentmanagerAlpha::Operation::Error::Error::ErrorDetail, decorator: Google::Apis::DeploymentmanagerAlpha::Operation::Error::Error::ErrorDetail::Representation
|
878
|
+
|
783
879
|
property :location, as: 'location'
|
784
880
|
property :message, as: 'message'
|
785
881
|
end
|
882
|
+
|
883
|
+
class ErrorDetail
|
884
|
+
# @private
|
885
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
886
|
+
property :error_info, as: 'errorInfo', class: Google::Apis::DeploymentmanagerAlpha::ErrorInfo, decorator: Google::Apis::DeploymentmanagerAlpha::ErrorInfo::Representation
|
887
|
+
|
888
|
+
property :help, as: 'help', class: Google::Apis::DeploymentmanagerAlpha::Help, decorator: Google::Apis::DeploymentmanagerAlpha::Help::Representation
|
889
|
+
|
890
|
+
property :localized_message, as: 'localizedMessage', class: Google::Apis::DeploymentmanagerAlpha::LocalizedMessage, decorator: Google::Apis::DeploymentmanagerAlpha::LocalizedMessage::Representation
|
891
|
+
|
892
|
+
property :quota_info, as: 'quotaInfo', class: Google::Apis::DeploymentmanagerAlpha::QuotaExceededInfo, decorator: Google::Apis::DeploymentmanagerAlpha::QuotaExceededInfo::Representation
|
893
|
+
|
894
|
+
end
|
895
|
+
end
|
786
896
|
end
|
787
897
|
end
|
788
898
|
|
@@ -851,6 +961,18 @@ module Google
|
|
851
961
|
end
|
852
962
|
end
|
853
963
|
|
964
|
+
class QuotaExceededInfo
|
965
|
+
# @private
|
966
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
967
|
+
hash :dimensions, as: 'dimensions'
|
968
|
+
property :future_limit, as: 'futureLimit'
|
969
|
+
property :limit, as: 'limit'
|
970
|
+
property :limit_name, as: 'limitName'
|
971
|
+
property :metric_name, as: 'metricName'
|
972
|
+
property :rollout_status, as: 'rolloutStatus'
|
973
|
+
end
|
974
|
+
end
|
975
|
+
|
854
976
|
class Resource
|
855
977
|
# @private
|
856
978
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -929,10 +1051,29 @@ module Google
|
|
929
1051
|
class Error
|
930
1052
|
# @private
|
931
1053
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1054
|
+
collection :arguments, as: 'arguments'
|
932
1055
|
property :code, as: 'code'
|
1056
|
+
property :debug_info, as: 'debugInfo', class: Google::Apis::DeploymentmanagerAlpha::DebugInfo, decorator: Google::Apis::DeploymentmanagerAlpha::DebugInfo::Representation
|
1057
|
+
|
1058
|
+
collection :error_details, as: 'errorDetails', class: Google::Apis::DeploymentmanagerAlpha::ResourceUpdate::Error::Error::ErrorDetail, decorator: Google::Apis::DeploymentmanagerAlpha::ResourceUpdate::Error::Error::ErrorDetail::Representation
|
1059
|
+
|
933
1060
|
property :location, as: 'location'
|
934
1061
|
property :message, as: 'message'
|
935
1062
|
end
|
1063
|
+
|
1064
|
+
class ErrorDetail
|
1065
|
+
# @private
|
1066
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1067
|
+
property :error_info, as: 'errorInfo', class: Google::Apis::DeploymentmanagerAlpha::ErrorInfo, decorator: Google::Apis::DeploymentmanagerAlpha::ErrorInfo::Representation
|
1068
|
+
|
1069
|
+
property :help, as: 'help', class: Google::Apis::DeploymentmanagerAlpha::Help, decorator: Google::Apis::DeploymentmanagerAlpha::Help::Representation
|
1070
|
+
|
1071
|
+
property :localized_message, as: 'localizedMessage', class: Google::Apis::DeploymentmanagerAlpha::LocalizedMessage, decorator: Google::Apis::DeploymentmanagerAlpha::LocalizedMessage::Representation
|
1072
|
+
|
1073
|
+
property :quota_info, as: 'quotaInfo', class: Google::Apis::DeploymentmanagerAlpha::QuotaExceededInfo, decorator: Google::Apis::DeploymentmanagerAlpha::QuotaExceededInfo::Representation
|
1074
|
+
|
1075
|
+
end
|
1076
|
+
end
|
936
1077
|
end
|
937
1078
|
end
|
938
1079
|
|