google-apis-deploymentmanager_v2beta 0.31.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 +5 -0
- data/lib/google/apis/deploymentmanager_v2beta/classes.rb +360 -2
- data/lib/google/apis/deploymentmanager_v2beta/gem_version.rb +3 -3
- data/lib/google/apis/deploymentmanager_v2beta/representations.rb +141 -0
- data/lib/google/apis/deploymentmanager_v2beta/service.rb +63 -21
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2b15c1f10b7785cc751d2ef33059c07932dd2588a0adc0da54de7bfdd562e7a9
|
4
|
+
data.tar.gz: 4629a46d2fd1b0218afe04d7db0708c199fa96e97fcc81ee73a9bb6eb8d07327
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '0856ad002e87781de1b371921b2bdcbb206246fbdf27910d92a70e2f869f468f6ce7d5af0cf2e16cd4e86c95be85dfc7eba45d741f37ef8816b63228335eaa27'
|
7
|
+
data.tar.gz: d32842b8b7caa337926cce19ca71334ff424794df5aff6b15afabca6082ca443e6d1ce65f7ba1e91a313504034ee36641dfb9ac186bcd1f99cfb5635f542a619
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-deploymentmanager_v2beta
|
2
2
|
|
3
|
+
### v0.32.0 (2024-12-02)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20241122
|
6
|
+
* Regenerated using generator version 0.15.1
|
7
|
+
|
3
8
|
### v0.31.0 (2024-05-19)
|
4
9
|
|
5
10
|
* Regenerated using generator version 0.15.0
|
@@ -540,6 +540,31 @@ module Google
|
|
540
540
|
end
|
541
541
|
end
|
542
542
|
|
543
|
+
# Describes additional debugging info.
|
544
|
+
class DebugInfo
|
545
|
+
include Google::Apis::Core::Hashable
|
546
|
+
|
547
|
+
# Additional debugging information provided by the server.
|
548
|
+
# Corresponds to the JSON property `detail`
|
549
|
+
# @return [String]
|
550
|
+
attr_accessor :detail
|
551
|
+
|
552
|
+
# The stack trace entries indicating where the error occurred.
|
553
|
+
# Corresponds to the JSON property `stackEntries`
|
554
|
+
# @return [Array<String>]
|
555
|
+
attr_accessor :stack_entries
|
556
|
+
|
557
|
+
def initialize(**args)
|
558
|
+
update!(**args)
|
559
|
+
end
|
560
|
+
|
561
|
+
# Update properties of this object
|
562
|
+
def update!(**args)
|
563
|
+
@detail = args[:detail] if args.key?(:detail)
|
564
|
+
@stack_entries = args[:stack_entries] if args.key?(:stack_entries)
|
565
|
+
end
|
566
|
+
end
|
567
|
+
|
543
568
|
#
|
544
569
|
class Deployment
|
545
570
|
include Google::Apis::Core::Hashable
|
@@ -850,6 +875,58 @@ module Google
|
|
850
875
|
end
|
851
876
|
end
|
852
877
|
|
878
|
+
# Describes the cause of the error with structured details. Example of an error
|
879
|
+
# when contacting the "pubsub.googleapis.com" API when it is not enabled: ` "
|
880
|
+
# reason": "API_DISABLED" "domain": "googleapis.com" "metadata": ` "resource": "
|
881
|
+
# projects/123", "service": "pubsub.googleapis.com" ` ` This response indicates
|
882
|
+
# that the pubsub.googleapis.com API is not enabled. Example of an error that is
|
883
|
+
# returned when attempting to create a Spanner instance in a region that is out
|
884
|
+
# of stock: ` "reason": "STOCKOUT" "domain": "spanner.googleapis.com", "metadata"
|
885
|
+
# : ` "availableRegions": "us-central1,us-east2" ` `
|
886
|
+
class ErrorInfo
|
887
|
+
include Google::Apis::Core::Hashable
|
888
|
+
|
889
|
+
# The logical grouping to which the "reason" belongs. The error domain is
|
890
|
+
# typically the registered service name of the tool or product that generates
|
891
|
+
# the error. Example: "pubsub.googleapis.com". If the error is generated by some
|
892
|
+
# common infrastructure, the error domain must be a globally unique value that
|
893
|
+
# identifies the infrastructure. For Google API infrastructure, the error domain
|
894
|
+
# is "googleapis.com".
|
895
|
+
# Corresponds to the JSON property `domain`
|
896
|
+
# @return [String]
|
897
|
+
attr_accessor :domain
|
898
|
+
|
899
|
+
# Additional structured details about this error. Keys must match /a-z+/ but
|
900
|
+
# should ideally be lowerCamelCase. Also they must be limited to 64 characters
|
901
|
+
# in length. When identifying the current value of an exceeded limit, the units
|
902
|
+
# should be contained in the key, not the value. For example, rather than `"
|
903
|
+
# instanceLimit": "100/request"`, should be returned as, `"
|
904
|
+
# instanceLimitPerRequest": "100"`, if the client exceeds the number of
|
905
|
+
# instances that can be created in a single (batch) request.
|
906
|
+
# Corresponds to the JSON property `metadata`
|
907
|
+
# @return [Hash<String,String>]
|
908
|
+
attr_accessor :metadata
|
909
|
+
|
910
|
+
# The reason of the error. This is a constant value that identifies the
|
911
|
+
# proximate cause of the error. Error reasons are unique within a particular
|
912
|
+
# domain of errors. This should be at most 63 characters and match a regular
|
913
|
+
# expression of `A-Z+[A-Z0-9]`, which represents UPPER_SNAKE_CASE.
|
914
|
+
# Corresponds to the JSON property `reason`
|
915
|
+
# @return [String]
|
916
|
+
attr_accessor :reason
|
917
|
+
|
918
|
+
def initialize(**args)
|
919
|
+
update!(**args)
|
920
|
+
end
|
921
|
+
|
922
|
+
# Update properties of this object
|
923
|
+
def update!(**args)
|
924
|
+
@domain = args[:domain] if args.key?(:domain)
|
925
|
+
@metadata = args[:metadata] if args.key?(:metadata)
|
926
|
+
@reason = args[:reason] if args.key?(:reason)
|
927
|
+
end
|
928
|
+
end
|
929
|
+
|
853
930
|
# Represents a textual expression in the Common Expression Language (CEL) syntax.
|
854
931
|
# CEL is a C-like expression language. The syntax and semantics of CEL are
|
855
932
|
# documented at https://github.com/google/cel-spec. Example (Comparison): title:
|
@@ -952,6 +1029,11 @@ module Google
|
|
952
1029
|
# @return [Google::Apis::DeploymentmanagerV2beta::Policy]
|
953
1030
|
attr_accessor :policy
|
954
1031
|
|
1032
|
+
#
|
1033
|
+
# Corresponds to the JSON property `updateMask`
|
1034
|
+
# @return [String]
|
1035
|
+
attr_accessor :update_mask
|
1036
|
+
|
955
1037
|
def initialize(**args)
|
956
1038
|
update!(**args)
|
957
1039
|
end
|
@@ -961,6 +1043,54 @@ module Google
|
|
961
1043
|
@bindings = args[:bindings] if args.key?(:bindings)
|
962
1044
|
@etag = args[:etag] if args.key?(:etag)
|
963
1045
|
@policy = args[:policy] if args.key?(:policy)
|
1046
|
+
@update_mask = args[:update_mask] if args.key?(:update_mask)
|
1047
|
+
end
|
1048
|
+
end
|
1049
|
+
|
1050
|
+
# Provides links to documentation or for performing an out of band action. For
|
1051
|
+
# example, if a quota check failed with an error indicating the calling project
|
1052
|
+
# hasn't enabled the accessed service, this can contain a URL pointing directly
|
1053
|
+
# to the right place in the developer console to flip the bit.
|
1054
|
+
class Help
|
1055
|
+
include Google::Apis::Core::Hashable
|
1056
|
+
|
1057
|
+
# URL(s) pointing to additional information on handling the current error.
|
1058
|
+
# Corresponds to the JSON property `links`
|
1059
|
+
# @return [Array<Google::Apis::DeploymentmanagerV2beta::HelpLink>]
|
1060
|
+
attr_accessor :links
|
1061
|
+
|
1062
|
+
def initialize(**args)
|
1063
|
+
update!(**args)
|
1064
|
+
end
|
1065
|
+
|
1066
|
+
# Update properties of this object
|
1067
|
+
def update!(**args)
|
1068
|
+
@links = args[:links] if args.key?(:links)
|
1069
|
+
end
|
1070
|
+
end
|
1071
|
+
|
1072
|
+
# Describes a URL link.
|
1073
|
+
class HelpLink
|
1074
|
+
include Google::Apis::Core::Hashable
|
1075
|
+
|
1076
|
+
# Describes what the link offers.
|
1077
|
+
# Corresponds to the JSON property `description`
|
1078
|
+
# @return [String]
|
1079
|
+
attr_accessor :description
|
1080
|
+
|
1081
|
+
# The URL of the link.
|
1082
|
+
# Corresponds to the JSON property `url`
|
1083
|
+
# @return [String]
|
1084
|
+
attr_accessor :url
|
1085
|
+
|
1086
|
+
def initialize(**args)
|
1087
|
+
update!(**args)
|
1088
|
+
end
|
1089
|
+
|
1090
|
+
# Update properties of this object
|
1091
|
+
def update!(**args)
|
1092
|
+
@description = args[:description] if args.key?(:description)
|
1093
|
+
@url = args[:url] if args.key?(:url)
|
964
1094
|
end
|
965
1095
|
end
|
966
1096
|
|
@@ -1047,6 +1177,33 @@ module Google
|
|
1047
1177
|
end
|
1048
1178
|
end
|
1049
1179
|
|
1180
|
+
# Provides a localized error message that is safe to return to the user which
|
1181
|
+
# can be attached to an RPC error.
|
1182
|
+
class LocalizedMessage
|
1183
|
+
include Google::Apis::Core::Hashable
|
1184
|
+
|
1185
|
+
# The locale used following the specification defined at https://www.rfc-editor.
|
1186
|
+
# org/rfc/bcp/bcp47.txt. Examples are: "en-US", "fr-CH", "es-MX"
|
1187
|
+
# Corresponds to the JSON property `locale`
|
1188
|
+
# @return [String]
|
1189
|
+
attr_accessor :locale
|
1190
|
+
|
1191
|
+
# The localized error message in the above locale.
|
1192
|
+
# Corresponds to the JSON property `message`
|
1193
|
+
# @return [String]
|
1194
|
+
attr_accessor :message
|
1195
|
+
|
1196
|
+
def initialize(**args)
|
1197
|
+
update!(**args)
|
1198
|
+
end
|
1199
|
+
|
1200
|
+
# Update properties of this object
|
1201
|
+
def update!(**args)
|
1202
|
+
@locale = args[:locale] if args.key?(:locale)
|
1203
|
+
@message = args[:message] if args.key?(:message)
|
1204
|
+
end
|
1205
|
+
end
|
1206
|
+
|
1050
1207
|
#
|
1051
1208
|
class Manifest
|
1052
1209
|
include Google::Apis::Core::Hashable
|
@@ -1262,6 +1419,11 @@ module Google
|
|
1262
1419
|
# @return [String]
|
1263
1420
|
attr_accessor :self_link
|
1264
1421
|
|
1422
|
+
# [Output Only] Server-defined URL for this resource with the resource id.
|
1423
|
+
# Corresponds to the JSON property `selfLinkWithId`
|
1424
|
+
# @return [String]
|
1425
|
+
attr_accessor :self_link_with_id
|
1426
|
+
|
1265
1427
|
# [Output Only] If the operation is for projects.setCommonInstanceMetadata, this
|
1266
1428
|
# field will contain information on all underlying zonal actions and their state.
|
1267
1429
|
# Corresponds to the JSON property `setCommonInstanceMetadataOperationMetadata`
|
@@ -1293,8 +1455,8 @@ module Google
|
|
1293
1455
|
attr_accessor :target_id
|
1294
1456
|
|
1295
1457
|
# [Output Only] The URL of the resource that the operation modifies. For
|
1296
|
-
# operations related to creating a snapshot, this points to the
|
1297
|
-
#
|
1458
|
+
# operations related to creating a snapshot, this points to the disk that the
|
1459
|
+
# snapshot was created from.
|
1298
1460
|
# Corresponds to the JSON property `targetLink`
|
1299
1461
|
# @return [String]
|
1300
1462
|
attr_accessor :target_link
|
@@ -1340,6 +1502,7 @@ module Google
|
|
1340
1502
|
@progress = args[:progress] if args.key?(:progress)
|
1341
1503
|
@region = args[:region] if args.key?(:region)
|
1342
1504
|
@self_link = args[:self_link] if args.key?(:self_link)
|
1505
|
+
@self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
|
1343
1506
|
@set_common_instance_metadata_operation_metadata = args[:set_common_instance_metadata_operation_metadata] if args.key?(:set_common_instance_metadata_operation_metadata)
|
1344
1507
|
@start_time = args[:start_time] if args.key?(:start_time)
|
1345
1508
|
@status = args[:status] if args.key?(:status)
|
@@ -1374,11 +1537,32 @@ module Google
|
|
1374
1537
|
class Error
|
1375
1538
|
include Google::Apis::Core::Hashable
|
1376
1539
|
|
1540
|
+
# [Output Only] Optional error details WARNING: DO NOT MAKE VISIBLE This is for
|
1541
|
+
# internal use-only (like componentization) (thus the visibility "none") and in
|
1542
|
+
# case of public exposure it is strongly recommended to follow pattern of: https:
|
1543
|
+
# //aip.dev/193 and expose as details field.
|
1544
|
+
# Corresponds to the JSON property `arguments`
|
1545
|
+
# @return [Array<String>]
|
1546
|
+
attr_accessor :arguments
|
1547
|
+
|
1377
1548
|
# [Output Only] The error type identifier for this error.
|
1378
1549
|
# Corresponds to the JSON property `code`
|
1379
1550
|
# @return [String]
|
1380
1551
|
attr_accessor :code
|
1381
1552
|
|
1553
|
+
# Describes additional debugging info.
|
1554
|
+
# Corresponds to the JSON property `debugInfo`
|
1555
|
+
# @return [Google::Apis::DeploymentmanagerV2beta::DebugInfo]
|
1556
|
+
attr_accessor :debug_info
|
1557
|
+
|
1558
|
+
# [Output Only] An optional list of messages that contain the error details.
|
1559
|
+
# There is a set of defined message types to use for providing details.The
|
1560
|
+
# syntax depends on the error code. For example, QuotaExceededInfo will have
|
1561
|
+
# details when the error code is QUOTA_EXCEEDED.
|
1562
|
+
# Corresponds to the JSON property `errorDetails`
|
1563
|
+
# @return [Array<Google::Apis::DeploymentmanagerV2beta::Operation::Error::Error::ErrorDetail>]
|
1564
|
+
attr_accessor :error_details
|
1565
|
+
|
1382
1566
|
# [Output Only] Indicates the field in the request that caused the error. This
|
1383
1567
|
# property is optional.
|
1384
1568
|
# Corresponds to the JSON property `location`
|
@@ -1396,10 +1580,61 @@ module Google
|
|
1396
1580
|
|
1397
1581
|
# Update properties of this object
|
1398
1582
|
def update!(**args)
|
1583
|
+
@arguments = args[:arguments] if args.key?(:arguments)
|
1399
1584
|
@code = args[:code] if args.key?(:code)
|
1585
|
+
@debug_info = args[:debug_info] if args.key?(:debug_info)
|
1586
|
+
@error_details = args[:error_details] if args.key?(:error_details)
|
1400
1587
|
@location = args[:location] if args.key?(:location)
|
1401
1588
|
@message = args[:message] if args.key?(:message)
|
1402
1589
|
end
|
1590
|
+
|
1591
|
+
#
|
1592
|
+
class ErrorDetail
|
1593
|
+
include Google::Apis::Core::Hashable
|
1594
|
+
|
1595
|
+
# Describes the cause of the error with structured details. Example of an error
|
1596
|
+
# when contacting the "pubsub.googleapis.com" API when it is not enabled: ` "
|
1597
|
+
# reason": "API_DISABLED" "domain": "googleapis.com" "metadata": ` "resource": "
|
1598
|
+
# projects/123", "service": "pubsub.googleapis.com" ` ` This response indicates
|
1599
|
+
# that the pubsub.googleapis.com API is not enabled. Example of an error that is
|
1600
|
+
# returned when attempting to create a Spanner instance in a region that is out
|
1601
|
+
# of stock: ` "reason": "STOCKOUT" "domain": "spanner.googleapis.com", "metadata"
|
1602
|
+
# : ` "availableRegions": "us-central1,us-east2" ` `
|
1603
|
+
# Corresponds to the JSON property `errorInfo`
|
1604
|
+
# @return [Google::Apis::DeploymentmanagerV2beta::ErrorInfo]
|
1605
|
+
attr_accessor :error_info
|
1606
|
+
|
1607
|
+
# Provides links to documentation or for performing an out of band action. For
|
1608
|
+
# example, if a quota check failed with an error indicating the calling project
|
1609
|
+
# hasn't enabled the accessed service, this can contain a URL pointing directly
|
1610
|
+
# to the right place in the developer console to flip the bit.
|
1611
|
+
# Corresponds to the JSON property `help`
|
1612
|
+
# @return [Google::Apis::DeploymentmanagerV2beta::Help]
|
1613
|
+
attr_accessor :help
|
1614
|
+
|
1615
|
+
# Provides a localized error message that is safe to return to the user which
|
1616
|
+
# can be attached to an RPC error.
|
1617
|
+
# Corresponds to the JSON property `localizedMessage`
|
1618
|
+
# @return [Google::Apis::DeploymentmanagerV2beta::LocalizedMessage]
|
1619
|
+
attr_accessor :localized_message
|
1620
|
+
|
1621
|
+
# Additional details for quota exceeded error for resource quota.
|
1622
|
+
# Corresponds to the JSON property `quotaInfo`
|
1623
|
+
# @return [Google::Apis::DeploymentmanagerV2beta::QuotaExceededInfo]
|
1624
|
+
attr_accessor :quota_info
|
1625
|
+
|
1626
|
+
def initialize(**args)
|
1627
|
+
update!(**args)
|
1628
|
+
end
|
1629
|
+
|
1630
|
+
# Update properties of this object
|
1631
|
+
def update!(**args)
|
1632
|
+
@error_info = args[:error_info] if args.key?(:error_info)
|
1633
|
+
@help = args[:help] if args.key?(:help)
|
1634
|
+
@localized_message = args[:localized_message] if args.key?(:localized_message)
|
1635
|
+
@quota_info = args[:quota_info] if args.key?(:quota_info)
|
1636
|
+
end
|
1637
|
+
end
|
1403
1638
|
end
|
1404
1639
|
end
|
1405
1640
|
|
@@ -1677,6 +1912,57 @@ module Google
|
|
1677
1912
|
end
|
1678
1913
|
end
|
1679
1914
|
|
1915
|
+
# Additional details for quota exceeded error for resource quota.
|
1916
|
+
class QuotaExceededInfo
|
1917
|
+
include Google::Apis::Core::Hashable
|
1918
|
+
|
1919
|
+
# The map holding related quota dimensions.
|
1920
|
+
# Corresponds to the JSON property `dimensions`
|
1921
|
+
# @return [Hash<String,String>]
|
1922
|
+
attr_accessor :dimensions
|
1923
|
+
|
1924
|
+
# Future quota limit being rolled out. The limit's unit depends on the quota
|
1925
|
+
# type or metric.
|
1926
|
+
# Corresponds to the JSON property `futureLimit`
|
1927
|
+
# @return [Float]
|
1928
|
+
attr_accessor :future_limit
|
1929
|
+
|
1930
|
+
# Current effective quota limit. The limit's unit depends on the quota type or
|
1931
|
+
# metric.
|
1932
|
+
# Corresponds to the JSON property `limit`
|
1933
|
+
# @return [Float]
|
1934
|
+
attr_accessor :limit
|
1935
|
+
|
1936
|
+
# The name of the quota limit.
|
1937
|
+
# Corresponds to the JSON property `limitName`
|
1938
|
+
# @return [String]
|
1939
|
+
attr_accessor :limit_name
|
1940
|
+
|
1941
|
+
# The Compute Engine quota metric name.
|
1942
|
+
# Corresponds to the JSON property `metricName`
|
1943
|
+
# @return [String]
|
1944
|
+
attr_accessor :metric_name
|
1945
|
+
|
1946
|
+
# Rollout status of the future quota limit.
|
1947
|
+
# Corresponds to the JSON property `rolloutStatus`
|
1948
|
+
# @return [String]
|
1949
|
+
attr_accessor :rollout_status
|
1950
|
+
|
1951
|
+
def initialize(**args)
|
1952
|
+
update!(**args)
|
1953
|
+
end
|
1954
|
+
|
1955
|
+
# Update properties of this object
|
1956
|
+
def update!(**args)
|
1957
|
+
@dimensions = args[:dimensions] if args.key?(:dimensions)
|
1958
|
+
@future_limit = args[:future_limit] if args.key?(:future_limit)
|
1959
|
+
@limit = args[:limit] if args.key?(:limit)
|
1960
|
+
@limit_name = args[:limit_name] if args.key?(:limit_name)
|
1961
|
+
@metric_name = args[:metric_name] if args.key?(:metric_name)
|
1962
|
+
@rollout_status = args[:rollout_status] if args.key?(:rollout_status)
|
1963
|
+
end
|
1964
|
+
end
|
1965
|
+
|
1680
1966
|
#
|
1681
1967
|
class Resource
|
1682
1968
|
include Google::Apis::Core::Hashable
|
@@ -1939,11 +2225,32 @@ module Google
|
|
1939
2225
|
class Error
|
1940
2226
|
include Google::Apis::Core::Hashable
|
1941
2227
|
|
2228
|
+
# [Output Only] Optional error details WARNING: DO NOT MAKE VISIBLE This is for
|
2229
|
+
# internal use-only (like componentization) (thus the visibility "none") and in
|
2230
|
+
# case of public exposure it is strongly recommended to follow pattern of: https:
|
2231
|
+
# //aip.dev/193 and expose as details field.
|
2232
|
+
# Corresponds to the JSON property `arguments`
|
2233
|
+
# @return [Array<String>]
|
2234
|
+
attr_accessor :arguments
|
2235
|
+
|
1942
2236
|
# [Output Only] The error type identifier for this error.
|
1943
2237
|
# Corresponds to the JSON property `code`
|
1944
2238
|
# @return [String]
|
1945
2239
|
attr_accessor :code
|
1946
2240
|
|
2241
|
+
# Describes additional debugging info.
|
2242
|
+
# Corresponds to the JSON property `debugInfo`
|
2243
|
+
# @return [Google::Apis::DeploymentmanagerV2beta::DebugInfo]
|
2244
|
+
attr_accessor :debug_info
|
2245
|
+
|
2246
|
+
# [Output Only] An optional list of messages that contain the error details.
|
2247
|
+
# There is a set of defined message types to use for providing details.The
|
2248
|
+
# syntax depends on the error code. For example, QuotaExceededInfo will have
|
2249
|
+
# details when the error code is QUOTA_EXCEEDED.
|
2250
|
+
# Corresponds to the JSON property `errorDetails`
|
2251
|
+
# @return [Array<Google::Apis::DeploymentmanagerV2beta::ResourceUpdate::Error::Error::ErrorDetail>]
|
2252
|
+
attr_accessor :error_details
|
2253
|
+
|
1947
2254
|
# [Output Only] Indicates the field in the request that caused the error. This
|
1948
2255
|
# property is optional.
|
1949
2256
|
# Corresponds to the JSON property `location`
|
@@ -1961,10 +2268,61 @@ module Google
|
|
1961
2268
|
|
1962
2269
|
# Update properties of this object
|
1963
2270
|
def update!(**args)
|
2271
|
+
@arguments = args[:arguments] if args.key?(:arguments)
|
1964
2272
|
@code = args[:code] if args.key?(:code)
|
2273
|
+
@debug_info = args[:debug_info] if args.key?(:debug_info)
|
2274
|
+
@error_details = args[:error_details] if args.key?(:error_details)
|
1965
2275
|
@location = args[:location] if args.key?(:location)
|
1966
2276
|
@message = args[:message] if args.key?(:message)
|
1967
2277
|
end
|
2278
|
+
|
2279
|
+
#
|
2280
|
+
class ErrorDetail
|
2281
|
+
include Google::Apis::Core::Hashable
|
2282
|
+
|
2283
|
+
# Describes the cause of the error with structured details. Example of an error
|
2284
|
+
# when contacting the "pubsub.googleapis.com" API when it is not enabled: ` "
|
2285
|
+
# reason": "API_DISABLED" "domain": "googleapis.com" "metadata": ` "resource": "
|
2286
|
+
# projects/123", "service": "pubsub.googleapis.com" ` ` This response indicates
|
2287
|
+
# that the pubsub.googleapis.com API is not enabled. Example of an error that is
|
2288
|
+
# returned when attempting to create a Spanner instance in a region that is out
|
2289
|
+
# of stock: ` "reason": "STOCKOUT" "domain": "spanner.googleapis.com", "metadata"
|
2290
|
+
# : ` "availableRegions": "us-central1,us-east2" ` `
|
2291
|
+
# Corresponds to the JSON property `errorInfo`
|
2292
|
+
# @return [Google::Apis::DeploymentmanagerV2beta::ErrorInfo]
|
2293
|
+
attr_accessor :error_info
|
2294
|
+
|
2295
|
+
# Provides links to documentation or for performing an out of band action. For
|
2296
|
+
# example, if a quota check failed with an error indicating the calling project
|
2297
|
+
# hasn't enabled the accessed service, this can contain a URL pointing directly
|
2298
|
+
# to the right place in the developer console to flip the bit.
|
2299
|
+
# Corresponds to the JSON property `help`
|
2300
|
+
# @return [Google::Apis::DeploymentmanagerV2beta::Help]
|
2301
|
+
attr_accessor :help
|
2302
|
+
|
2303
|
+
# Provides a localized error message that is safe to return to the user which
|
2304
|
+
# can be attached to an RPC error.
|
2305
|
+
# Corresponds to the JSON property `localizedMessage`
|
2306
|
+
# @return [Google::Apis::DeploymentmanagerV2beta::LocalizedMessage]
|
2307
|
+
attr_accessor :localized_message
|
2308
|
+
|
2309
|
+
# Additional details for quota exceeded error for resource quota.
|
2310
|
+
# Corresponds to the JSON property `quotaInfo`
|
2311
|
+
# @return [Google::Apis::DeploymentmanagerV2beta::QuotaExceededInfo]
|
2312
|
+
attr_accessor :quota_info
|
2313
|
+
|
2314
|
+
def initialize(**args)
|
2315
|
+
update!(**args)
|
2316
|
+
end
|
2317
|
+
|
2318
|
+
# Update properties of this object
|
2319
|
+
def update!(**args)
|
2320
|
+
@error_info = args[:error_info] if args.key?(:error_info)
|
2321
|
+
@help = args[:help] if args.key?(:help)
|
2322
|
+
@localized_message = args[:localized_message] if args.key?(:localized_message)
|
2323
|
+
@quota_info = args[:quota_info] if args.key?(:quota_info)
|
2324
|
+
end
|
2325
|
+
end
|
1968
2326
|
end
|
1969
2327
|
end
|
1970
2328
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DeploymentmanagerV2beta
|
18
18
|
# Version of the google-apis-deploymentmanager_v2beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.32.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.15.
|
22
|
+
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20241122"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -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
|
|
@@ -148,6 +154,12 @@ module Google
|
|
148
154
|
include Google::Apis::Core::JsonObjectSupport
|
149
155
|
end
|
150
156
|
|
157
|
+
class ErrorInfo
|
158
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
159
|
+
|
160
|
+
include Google::Apis::Core::JsonObjectSupport
|
161
|
+
end
|
162
|
+
|
151
163
|
class Expr
|
152
164
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
153
165
|
|
@@ -160,6 +172,18 @@ module Google
|
|
160
172
|
include Google::Apis::Core::JsonObjectSupport
|
161
173
|
end
|
162
174
|
|
175
|
+
class Help
|
176
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
177
|
+
|
178
|
+
include Google::Apis::Core::JsonObjectSupport
|
179
|
+
end
|
180
|
+
|
181
|
+
class HelpLink
|
182
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
183
|
+
|
184
|
+
include Google::Apis::Core::JsonObjectSupport
|
185
|
+
end
|
186
|
+
|
163
187
|
class ImportFile
|
164
188
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
165
189
|
|
@@ -178,6 +202,12 @@ module Google
|
|
178
202
|
include Google::Apis::Core::JsonObjectSupport
|
179
203
|
end
|
180
204
|
|
205
|
+
class LocalizedMessage
|
206
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
207
|
+
|
208
|
+
include Google::Apis::Core::JsonObjectSupport
|
209
|
+
end
|
210
|
+
|
181
211
|
class Manifest
|
182
212
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
183
213
|
|
@@ -198,6 +228,12 @@ module Google
|
|
198
228
|
|
199
229
|
class Error
|
200
230
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
231
|
+
|
232
|
+
class ErrorDetail
|
233
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
234
|
+
|
235
|
+
include Google::Apis::Core::JsonObjectSupport
|
236
|
+
end
|
201
237
|
|
202
238
|
include Google::Apis::Core::JsonObjectSupport
|
203
239
|
end
|
@@ -244,6 +280,12 @@ module Google
|
|
244
280
|
include Google::Apis::Core::JsonObjectSupport
|
245
281
|
end
|
246
282
|
|
283
|
+
class QuotaExceededInfo
|
284
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
285
|
+
|
286
|
+
include Google::Apis::Core::JsonObjectSupport
|
287
|
+
end
|
288
|
+
|
247
289
|
class Resource
|
248
290
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
249
291
|
|
@@ -276,6 +318,12 @@ module Google
|
|
276
318
|
|
277
319
|
class Error
|
278
320
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
321
|
+
|
322
|
+
class ErrorDetail
|
323
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
324
|
+
|
325
|
+
include Google::Apis::Core::JsonObjectSupport
|
326
|
+
end
|
279
327
|
|
280
328
|
include Google::Apis::Core::JsonObjectSupport
|
281
329
|
end
|
@@ -542,6 +590,14 @@ module Google
|
|
542
590
|
end
|
543
591
|
end
|
544
592
|
|
593
|
+
class DebugInfo
|
594
|
+
# @private
|
595
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
596
|
+
property :detail, as: 'detail'
|
597
|
+
collection :stack_entries, as: 'stackEntries'
|
598
|
+
end
|
599
|
+
end
|
600
|
+
|
545
601
|
class Deployment
|
546
602
|
# @private
|
547
603
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -621,6 +677,15 @@ module Google
|
|
621
677
|
end
|
622
678
|
end
|
623
679
|
|
680
|
+
class ErrorInfo
|
681
|
+
# @private
|
682
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
683
|
+
property :domain, as: 'domain'
|
684
|
+
hash :metadata, as: 'metadata'
|
685
|
+
property :reason, as: 'reason'
|
686
|
+
end
|
687
|
+
end
|
688
|
+
|
624
689
|
class Expr
|
625
690
|
# @private
|
626
691
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -639,6 +704,23 @@ module Google
|
|
639
704
|
property :etag, :base64 => true, as: 'etag'
|
640
705
|
property :policy, as: 'policy', class: Google::Apis::DeploymentmanagerV2beta::Policy, decorator: Google::Apis::DeploymentmanagerV2beta::Policy::Representation
|
641
706
|
|
707
|
+
property :update_mask, as: 'updateMask'
|
708
|
+
end
|
709
|
+
end
|
710
|
+
|
711
|
+
class Help
|
712
|
+
# @private
|
713
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
714
|
+
collection :links, as: 'links', class: Google::Apis::DeploymentmanagerV2beta::HelpLink, decorator: Google::Apis::DeploymentmanagerV2beta::HelpLink::Representation
|
715
|
+
|
716
|
+
end
|
717
|
+
end
|
718
|
+
|
719
|
+
class HelpLink
|
720
|
+
# @private
|
721
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
722
|
+
property :description, as: 'description'
|
723
|
+
property :url, as: 'url'
|
642
724
|
end
|
643
725
|
end
|
644
726
|
|
@@ -668,6 +750,14 @@ module Google
|
|
668
750
|
end
|
669
751
|
end
|
670
752
|
|
753
|
+
class LocalizedMessage
|
754
|
+
# @private
|
755
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
756
|
+
property :locale, as: 'locale'
|
757
|
+
property :message, as: 'message'
|
758
|
+
end
|
759
|
+
end
|
760
|
+
|
671
761
|
class Manifest
|
672
762
|
# @private
|
673
763
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -717,6 +807,7 @@ module Google
|
|
717
807
|
property :progress, as: 'progress'
|
718
808
|
property :region, as: 'region'
|
719
809
|
property :self_link, as: 'selfLink'
|
810
|
+
property :self_link_with_id, as: 'selfLinkWithId'
|
720
811
|
property :set_common_instance_metadata_operation_metadata, as: 'setCommonInstanceMetadataOperationMetadata', class: Google::Apis::DeploymentmanagerV2beta::SetCommonInstanceMetadataOperationMetadata, decorator: Google::Apis::DeploymentmanagerV2beta::SetCommonInstanceMetadataOperationMetadata::Representation
|
721
812
|
|
722
813
|
property :start_time, as: 'startTime'
|
@@ -740,10 +831,29 @@ module Google
|
|
740
831
|
class Error
|
741
832
|
# @private
|
742
833
|
class Representation < Google::Apis::Core::JsonRepresentation
|
834
|
+
collection :arguments, as: 'arguments'
|
743
835
|
property :code, as: 'code'
|
836
|
+
property :debug_info, as: 'debugInfo', class: Google::Apis::DeploymentmanagerV2beta::DebugInfo, decorator: Google::Apis::DeploymentmanagerV2beta::DebugInfo::Representation
|
837
|
+
|
838
|
+
collection :error_details, as: 'errorDetails', class: Google::Apis::DeploymentmanagerV2beta::Operation::Error::Error::ErrorDetail, decorator: Google::Apis::DeploymentmanagerV2beta::Operation::Error::Error::ErrorDetail::Representation
|
839
|
+
|
744
840
|
property :location, as: 'location'
|
745
841
|
property :message, as: 'message'
|
746
842
|
end
|
843
|
+
|
844
|
+
class ErrorDetail
|
845
|
+
# @private
|
846
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
847
|
+
property :error_info, as: 'errorInfo', class: Google::Apis::DeploymentmanagerV2beta::ErrorInfo, decorator: Google::Apis::DeploymentmanagerV2beta::ErrorInfo::Representation
|
848
|
+
|
849
|
+
property :help, as: 'help', class: Google::Apis::DeploymentmanagerV2beta::Help, decorator: Google::Apis::DeploymentmanagerV2beta::Help::Representation
|
850
|
+
|
851
|
+
property :localized_message, as: 'localizedMessage', class: Google::Apis::DeploymentmanagerV2beta::LocalizedMessage, decorator: Google::Apis::DeploymentmanagerV2beta::LocalizedMessage::Representation
|
852
|
+
|
853
|
+
property :quota_info, as: 'quotaInfo', class: Google::Apis::DeploymentmanagerV2beta::QuotaExceededInfo, decorator: Google::Apis::DeploymentmanagerV2beta::QuotaExceededInfo::Representation
|
854
|
+
|
855
|
+
end
|
856
|
+
end
|
747
857
|
end
|
748
858
|
end
|
749
859
|
|
@@ -812,6 +922,18 @@ module Google
|
|
812
922
|
end
|
813
923
|
end
|
814
924
|
|
925
|
+
class QuotaExceededInfo
|
926
|
+
# @private
|
927
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
928
|
+
hash :dimensions, as: 'dimensions'
|
929
|
+
property :future_limit, as: 'futureLimit'
|
930
|
+
property :limit, as: 'limit'
|
931
|
+
property :limit_name, as: 'limitName'
|
932
|
+
property :metric_name, as: 'metricName'
|
933
|
+
property :rollout_status, as: 'rolloutStatus'
|
934
|
+
end
|
935
|
+
end
|
936
|
+
|
815
937
|
class Resource
|
816
938
|
# @private
|
817
939
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -884,10 +1006,29 @@ module Google
|
|
884
1006
|
class Error
|
885
1007
|
# @private
|
886
1008
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1009
|
+
collection :arguments, as: 'arguments'
|
887
1010
|
property :code, as: 'code'
|
1011
|
+
property :debug_info, as: 'debugInfo', class: Google::Apis::DeploymentmanagerV2beta::DebugInfo, decorator: Google::Apis::DeploymentmanagerV2beta::DebugInfo::Representation
|
1012
|
+
|
1013
|
+
collection :error_details, as: 'errorDetails', class: Google::Apis::DeploymentmanagerV2beta::ResourceUpdate::Error::Error::ErrorDetail, decorator: Google::Apis::DeploymentmanagerV2beta::ResourceUpdate::Error::Error::ErrorDetail::Representation
|
1014
|
+
|
888
1015
|
property :location, as: 'location'
|
889
1016
|
property :message, as: 'message'
|
890
1017
|
end
|
1018
|
+
|
1019
|
+
class ErrorDetail
|
1020
|
+
# @private
|
1021
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1022
|
+
property :error_info, as: 'errorInfo', class: Google::Apis::DeploymentmanagerV2beta::ErrorInfo, decorator: Google::Apis::DeploymentmanagerV2beta::ErrorInfo::Representation
|
1023
|
+
|
1024
|
+
property :help, as: 'help', class: Google::Apis::DeploymentmanagerV2beta::Help, decorator: Google::Apis::DeploymentmanagerV2beta::Help::Representation
|
1025
|
+
|
1026
|
+
property :localized_message, as: 'localizedMessage', class: Google::Apis::DeploymentmanagerV2beta::LocalizedMessage, decorator: Google::Apis::DeploymentmanagerV2beta::LocalizedMessage::Representation
|
1027
|
+
|
1028
|
+
property :quota_info, as: 'quotaInfo', class: Google::Apis::DeploymentmanagerV2beta::QuotaExceededInfo, decorator: Google::Apis::DeploymentmanagerV2beta::QuotaExceededInfo::Representation
|
1029
|
+
|
1030
|
+
end
|
1031
|
+
end
|
891
1032
|
end
|
892
1033
|
end
|
893
1034
|
|
@@ -58,6 +58,7 @@ module Google
|
|
58
58
|
# The project ID for this request.
|
59
59
|
# @param [String] composite_type
|
60
60
|
# The name of the type for this request.
|
61
|
+
# @param [Boolean] header_bypass_billing_filter
|
61
62
|
# @param [String] fields
|
62
63
|
# Selector specifying which fields to include in a partial response.
|
63
64
|
# @param [String] quota_user
|
@@ -75,12 +76,13 @@ module Google
|
|
75
76
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
76
77
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
77
78
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
78
|
-
def delete_composite_type(project, composite_type, fields: nil, quota_user: nil, options: nil, &block)
|
79
|
+
def delete_composite_type(project, composite_type, header_bypass_billing_filter: nil, fields: nil, quota_user: nil, options: nil, &block)
|
79
80
|
command = make_simple_command(:delete, 'deploymentmanager/v2beta/projects/{project}/global/compositeTypes/{compositeType}', options)
|
80
81
|
command.response_representation = Google::Apis::DeploymentmanagerV2beta::Operation::Representation
|
81
82
|
command.response_class = Google::Apis::DeploymentmanagerV2beta::Operation
|
82
83
|
command.params['project'] = project unless project.nil?
|
83
84
|
command.params['compositeType'] = composite_type unless composite_type.nil?
|
85
|
+
command.query['header.bypassBillingFilter'] = header_bypass_billing_filter unless header_bypass_billing_filter.nil?
|
84
86
|
command.query['fields'] = fields unless fields.nil?
|
85
87
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
86
88
|
execute_or_queue_command(command, &block)
|
@@ -91,6 +93,7 @@ module Google
|
|
91
93
|
# The project ID for this request.
|
92
94
|
# @param [String] composite_type
|
93
95
|
# The name of the composite type for this request.
|
96
|
+
# @param [Boolean] header_bypass_billing_filter
|
94
97
|
# @param [String] fields
|
95
98
|
# Selector specifying which fields to include in a partial response.
|
96
99
|
# @param [String] quota_user
|
@@ -108,12 +111,13 @@ module Google
|
|
108
111
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
109
112
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
110
113
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
111
|
-
def get_composite_type(project, composite_type, fields: nil, quota_user: nil, options: nil, &block)
|
114
|
+
def get_composite_type(project, composite_type, header_bypass_billing_filter: nil, fields: nil, quota_user: nil, options: nil, &block)
|
112
115
|
command = make_simple_command(:get, 'deploymentmanager/v2beta/projects/{project}/global/compositeTypes/{compositeType}', options)
|
113
116
|
command.response_representation = Google::Apis::DeploymentmanagerV2beta::CompositeType::Representation
|
114
117
|
command.response_class = Google::Apis::DeploymentmanagerV2beta::CompositeType
|
115
118
|
command.params['project'] = project unless project.nil?
|
116
119
|
command.params['compositeType'] = composite_type unless composite_type.nil?
|
120
|
+
command.query['header.bypassBillingFilter'] = header_bypass_billing_filter unless header_bypass_billing_filter.nil?
|
117
121
|
command.query['fields'] = fields unless fields.nil?
|
118
122
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
119
123
|
execute_or_queue_command(command, &block)
|
@@ -123,6 +127,7 @@ module Google
|
|
123
127
|
# @param [String] project
|
124
128
|
# The project ID for this request.
|
125
129
|
# @param [Google::Apis::DeploymentmanagerV2beta::CompositeType] composite_type_object
|
130
|
+
# @param [Boolean] header_bypass_billing_filter
|
126
131
|
# @param [String] fields
|
127
132
|
# Selector specifying which fields to include in a partial response.
|
128
133
|
# @param [String] quota_user
|
@@ -140,13 +145,14 @@ module Google
|
|
140
145
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
141
146
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
142
147
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
143
|
-
def insert_composite_type(project, composite_type_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
148
|
+
def insert_composite_type(project, composite_type_object = nil, header_bypass_billing_filter: nil, fields: nil, quota_user: nil, options: nil, &block)
|
144
149
|
command = make_simple_command(:post, 'deploymentmanager/v2beta/projects/{project}/global/compositeTypes', options)
|
145
150
|
command.request_representation = Google::Apis::DeploymentmanagerV2beta::CompositeType::Representation
|
146
151
|
command.request_object = composite_type_object
|
147
152
|
command.response_representation = Google::Apis::DeploymentmanagerV2beta::Operation::Representation
|
148
153
|
command.response_class = Google::Apis::DeploymentmanagerV2beta::Operation
|
149
154
|
command.params['project'] = project unless project.nil?
|
155
|
+
command.query['header.bypassBillingFilter'] = header_bypass_billing_filter unless header_bypass_billing_filter.nil?
|
150
156
|
command.query['fields'] = fields unless fields.nil?
|
151
157
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
152
158
|
execute_or_queue_command(command, &block)
|
@@ -240,6 +246,7 @@ module Google
|
|
240
246
|
# @param [String] composite_type
|
241
247
|
# The name of the composite type for this request.
|
242
248
|
# @param [Google::Apis::DeploymentmanagerV2beta::CompositeType] composite_type_object
|
249
|
+
# @param [Boolean] header_bypass_billing_filter
|
243
250
|
# @param [String] fields
|
244
251
|
# Selector specifying which fields to include in a partial response.
|
245
252
|
# @param [String] quota_user
|
@@ -257,7 +264,7 @@ module Google
|
|
257
264
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
258
265
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
259
266
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
260
|
-
def patch_composite_type(project, composite_type, composite_type_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
267
|
+
def patch_composite_type(project, composite_type, composite_type_object = nil, header_bypass_billing_filter: nil, fields: nil, quota_user: nil, options: nil, &block)
|
261
268
|
command = make_simple_command(:patch, 'deploymentmanager/v2beta/projects/{project}/global/compositeTypes/{compositeType}', options)
|
262
269
|
command.request_representation = Google::Apis::DeploymentmanagerV2beta::CompositeType::Representation
|
263
270
|
command.request_object = composite_type_object
|
@@ -265,6 +272,7 @@ module Google
|
|
265
272
|
command.response_class = Google::Apis::DeploymentmanagerV2beta::Operation
|
266
273
|
command.params['project'] = project unless project.nil?
|
267
274
|
command.params['compositeType'] = composite_type unless composite_type.nil?
|
275
|
+
command.query['header.bypassBillingFilter'] = header_bypass_billing_filter unless header_bypass_billing_filter.nil?
|
268
276
|
command.query['fields'] = fields unless fields.nil?
|
269
277
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
270
278
|
execute_or_queue_command(command, &block)
|
@@ -276,6 +284,7 @@ module Google
|
|
276
284
|
# @param [String] composite_type
|
277
285
|
# The name of the composite type for this request.
|
278
286
|
# @param [Google::Apis::DeploymentmanagerV2beta::CompositeType] composite_type_object
|
287
|
+
# @param [Boolean] header_bypass_billing_filter
|
279
288
|
# @param [String] fields
|
280
289
|
# Selector specifying which fields to include in a partial response.
|
281
290
|
# @param [String] quota_user
|
@@ -293,7 +302,7 @@ module Google
|
|
293
302
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
294
303
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
295
304
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
296
|
-
def update_composite_type(project, composite_type, composite_type_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
305
|
+
def update_composite_type(project, composite_type, composite_type_object = nil, header_bypass_billing_filter: nil, fields: nil, quota_user: nil, options: nil, &block)
|
297
306
|
command = make_simple_command(:put, 'deploymentmanager/v2beta/projects/{project}/global/compositeTypes/{compositeType}', options)
|
298
307
|
command.request_representation = Google::Apis::DeploymentmanagerV2beta::CompositeType::Representation
|
299
308
|
command.request_object = composite_type_object
|
@@ -301,6 +310,7 @@ module Google
|
|
301
310
|
command.response_class = Google::Apis::DeploymentmanagerV2beta::Operation
|
302
311
|
command.params['project'] = project unless project.nil?
|
303
312
|
command.params['compositeType'] = composite_type unless composite_type.nil?
|
313
|
+
command.query['header.bypassBillingFilter'] = header_bypass_billing_filter unless header_bypass_billing_filter.nil?
|
304
314
|
command.query['fields'] = fields unless fields.nil?
|
305
315
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
306
316
|
execute_or_queue_command(command, &block)
|
@@ -349,6 +359,7 @@ module Google
|
|
349
359
|
# The name of the deployment for this request.
|
350
360
|
# @param [String] delete_policy
|
351
361
|
# Sets the policy to use for deleting resources.
|
362
|
+
# @param [Boolean] header_bypass_billing_filter
|
352
363
|
# @param [String] fields
|
353
364
|
# Selector specifying which fields to include in a partial response.
|
354
365
|
# @param [String] quota_user
|
@@ -366,13 +377,14 @@ module Google
|
|
366
377
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
367
378
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
368
379
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
369
|
-
def delete_deployment(project, deployment, delete_policy: nil, fields: nil, quota_user: nil, options: nil, &block)
|
380
|
+
def delete_deployment(project, deployment, delete_policy: nil, header_bypass_billing_filter: nil, fields: nil, quota_user: nil, options: nil, &block)
|
370
381
|
command = make_simple_command(:delete, 'deploymentmanager/v2beta/projects/{project}/global/deployments/{deployment}', options)
|
371
382
|
command.response_representation = Google::Apis::DeploymentmanagerV2beta::Operation::Representation
|
372
383
|
command.response_class = Google::Apis::DeploymentmanagerV2beta::Operation
|
373
384
|
command.params['project'] = project unless project.nil?
|
374
385
|
command.params['deployment'] = deployment unless deployment.nil?
|
375
386
|
command.query['deletePolicy'] = delete_policy unless delete_policy.nil?
|
387
|
+
command.query['header.bypassBillingFilter'] = header_bypass_billing_filter unless header_bypass_billing_filter.nil?
|
376
388
|
command.query['fields'] = fields unless fields.nil?
|
377
389
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
378
390
|
execute_or_queue_command(command, &block)
|
@@ -383,6 +395,7 @@ module Google
|
|
383
395
|
# The project ID for this request.
|
384
396
|
# @param [String] deployment
|
385
397
|
# The name of the deployment for this request.
|
398
|
+
# @param [Boolean] header_bypass_billing_filter
|
386
399
|
# @param [String] fields
|
387
400
|
# Selector specifying which fields to include in a partial response.
|
388
401
|
# @param [String] quota_user
|
@@ -400,12 +413,13 @@ module Google
|
|
400
413
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
401
414
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
402
415
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
403
|
-
def get_deployment(project, deployment, fields: nil, quota_user: nil, options: nil, &block)
|
416
|
+
def get_deployment(project, deployment, header_bypass_billing_filter: nil, fields: nil, quota_user: nil, options: nil, &block)
|
404
417
|
command = make_simple_command(:get, 'deploymentmanager/v2beta/projects/{project}/global/deployments/{deployment}', options)
|
405
418
|
command.response_representation = Google::Apis::DeploymentmanagerV2beta::Deployment::Representation
|
406
419
|
command.response_class = Google::Apis::DeploymentmanagerV2beta::Deployment
|
407
420
|
command.params['project'] = project unless project.nil?
|
408
421
|
command.params['deployment'] = deployment unless deployment.nil?
|
422
|
+
command.query['header.bypassBillingFilter'] = header_bypass_billing_filter unless header_bypass_billing_filter.nil?
|
409
423
|
command.query['fields'] = fields unless fields.nil?
|
410
424
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
411
425
|
execute_or_queue_command(command, &block)
|
@@ -417,6 +431,7 @@ module Google
|
|
417
431
|
# Project ID for this request.
|
418
432
|
# @param [String] resource
|
419
433
|
# Name or id of the resource for this request.
|
434
|
+
# @param [Boolean] header_bypass_billing_filter
|
420
435
|
# @param [Fixnum] options_requested_policy_version
|
421
436
|
# Requested IAM Policy version.
|
422
437
|
# @param [String] fields
|
@@ -436,12 +451,13 @@ module Google
|
|
436
451
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
437
452
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
438
453
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
439
|
-
def get_deployment_iam_policy(project, resource, options_requested_policy_version: nil, fields: nil, quota_user: nil, options: nil, &block)
|
454
|
+
def get_deployment_iam_policy(project, resource, header_bypass_billing_filter: nil, options_requested_policy_version: nil, fields: nil, quota_user: nil, options: nil, &block)
|
440
455
|
command = make_simple_command(:get, 'deploymentmanager/v2beta/projects/{project}/global/deployments/{resource}/getIamPolicy', options)
|
441
456
|
command.response_representation = Google::Apis::DeploymentmanagerV2beta::Policy::Representation
|
442
457
|
command.response_class = Google::Apis::DeploymentmanagerV2beta::Policy
|
443
458
|
command.params['project'] = project unless project.nil?
|
444
459
|
command.params['resource'] = resource unless resource.nil?
|
460
|
+
command.query['header.bypassBillingFilter'] = header_bypass_billing_filter unless header_bypass_billing_filter.nil?
|
445
461
|
command.query['optionsRequestedPolicyVersion'] = options_requested_policy_version unless options_requested_policy_version.nil?
|
446
462
|
command.query['fields'] = fields unless fields.nil?
|
447
463
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
@@ -455,6 +471,7 @@ module Google
|
|
455
471
|
# @param [Google::Apis::DeploymentmanagerV2beta::Deployment] deployment_object
|
456
472
|
# @param [String] create_policy
|
457
473
|
# Sets the policy to use for creating new resources.
|
474
|
+
# @param [Boolean] header_bypass_billing_filter
|
458
475
|
# @param [Boolean] preview
|
459
476
|
# If set to true, creates a deployment and creates "shell" resources but does
|
460
477
|
# not actually instantiate these resources. This allows you to preview what your
|
@@ -480,7 +497,7 @@ module Google
|
|
480
497
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
481
498
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
482
499
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
483
|
-
def insert_deployment(project, deployment_object = nil, create_policy: nil, preview: nil, fields: nil, quota_user: nil, options: nil, &block)
|
500
|
+
def insert_deployment(project, deployment_object = nil, create_policy: nil, header_bypass_billing_filter: nil, preview: nil, fields: nil, quota_user: nil, options: nil, &block)
|
484
501
|
command = make_simple_command(:post, 'deploymentmanager/v2beta/projects/{project}/global/deployments', options)
|
485
502
|
command.request_representation = Google::Apis::DeploymentmanagerV2beta::Deployment::Representation
|
486
503
|
command.request_object = deployment_object
|
@@ -488,6 +505,7 @@ module Google
|
|
488
505
|
command.response_class = Google::Apis::DeploymentmanagerV2beta::Operation
|
489
506
|
command.params['project'] = project unless project.nil?
|
490
507
|
command.query['createPolicy'] = create_policy unless create_policy.nil?
|
508
|
+
command.query['header.bypassBillingFilter'] = header_bypass_billing_filter unless header_bypass_billing_filter.nil?
|
491
509
|
command.query['preview'] = preview unless preview.nil?
|
492
510
|
command.query['fields'] = fields unless fields.nil?
|
493
511
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
@@ -587,6 +605,7 @@ module Google
|
|
587
605
|
# Sets the policy to use for creating new resources.
|
588
606
|
# @param [String] delete_policy
|
589
607
|
# Sets the policy to use for deleting resources.
|
608
|
+
# @param [Boolean] header_bypass_billing_filter
|
590
609
|
# @param [Boolean] preview
|
591
610
|
# If set to true, updates the deployment and creates and updates the "shell"
|
592
611
|
# resources but does not actually alter or instantiate these resources. This
|
@@ -615,7 +634,7 @@ module Google
|
|
615
634
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
616
635
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
617
636
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
618
|
-
def patch_deployment(project, deployment, deployment_object = nil, create_policy: nil, delete_policy: nil, preview: nil, fields: nil, quota_user: nil, options: nil, &block)
|
637
|
+
def patch_deployment(project, deployment, deployment_object = nil, create_policy: nil, delete_policy: nil, header_bypass_billing_filter: nil, preview: nil, fields: nil, quota_user: nil, options: nil, &block)
|
619
638
|
command = make_simple_command(:patch, 'deploymentmanager/v2beta/projects/{project}/global/deployments/{deployment}', options)
|
620
639
|
command.request_representation = Google::Apis::DeploymentmanagerV2beta::Deployment::Representation
|
621
640
|
command.request_object = deployment_object
|
@@ -625,6 +644,7 @@ module Google
|
|
625
644
|
command.params['deployment'] = deployment unless deployment.nil?
|
626
645
|
command.query['createPolicy'] = create_policy unless create_policy.nil?
|
627
646
|
command.query['deletePolicy'] = delete_policy unless delete_policy.nil?
|
647
|
+
command.query['header.bypassBillingFilter'] = header_bypass_billing_filter unless header_bypass_billing_filter.nil?
|
628
648
|
command.query['preview'] = preview unless preview.nil?
|
629
649
|
command.query['fields'] = fields unless fields.nil?
|
630
650
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
@@ -711,6 +731,7 @@ module Google
|
|
711
731
|
# @param [String] resource
|
712
732
|
# Name or id of the resource for this request.
|
713
733
|
# @param [Google::Apis::DeploymentmanagerV2beta::TestPermissionsRequest] test_permissions_request_object
|
734
|
+
# @param [Boolean] header_bypass_billing_filter
|
714
735
|
# @param [String] fields
|
715
736
|
# Selector specifying which fields to include in a partial response.
|
716
737
|
# @param [String] quota_user
|
@@ -728,7 +749,7 @@ module Google
|
|
728
749
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
729
750
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
730
751
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
731
|
-
def test_deployment_iam_permissions(project, resource, test_permissions_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
752
|
+
def test_deployment_iam_permissions(project, resource, test_permissions_request_object = nil, header_bypass_billing_filter: nil, fields: nil, quota_user: nil, options: nil, &block)
|
732
753
|
command = make_simple_command(:post, 'deploymentmanager/v2beta/projects/{project}/global/deployments/{resource}/testIamPermissions', options)
|
733
754
|
command.request_representation = Google::Apis::DeploymentmanagerV2beta::TestPermissionsRequest::Representation
|
734
755
|
command.request_object = test_permissions_request_object
|
@@ -736,6 +757,7 @@ module Google
|
|
736
757
|
command.response_class = Google::Apis::DeploymentmanagerV2beta::TestPermissionsResponse
|
737
758
|
command.params['project'] = project unless project.nil?
|
738
759
|
command.params['resource'] = resource unless resource.nil?
|
760
|
+
command.query['header.bypassBillingFilter'] = header_bypass_billing_filter unless header_bypass_billing_filter.nil?
|
739
761
|
command.query['fields'] = fields unless fields.nil?
|
740
762
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
741
763
|
execute_or_queue_command(command, &block)
|
@@ -752,6 +774,7 @@ module Google
|
|
752
774
|
# Sets the policy to use for creating new resources.
|
753
775
|
# @param [String] delete_policy
|
754
776
|
# Sets the policy to use for deleting resources.
|
777
|
+
# @param [Boolean] header_bypass_billing_filter
|
755
778
|
# @param [Boolean] preview
|
756
779
|
# If set to true, updates the deployment and creates and updates the "shell"
|
757
780
|
# resources but does not actually alter or instantiate these resources. This
|
@@ -780,7 +803,7 @@ module Google
|
|
780
803
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
781
804
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
782
805
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
783
|
-
def update_deployment(project, deployment, deployment_object = nil, create_policy: nil, delete_policy: nil, preview: nil, fields: nil, quota_user: nil, options: nil, &block)
|
806
|
+
def update_deployment(project, deployment, deployment_object = nil, create_policy: nil, delete_policy: nil, header_bypass_billing_filter: nil, preview: nil, fields: nil, quota_user: nil, options: nil, &block)
|
784
807
|
command = make_simple_command(:put, 'deploymentmanager/v2beta/projects/{project}/global/deployments/{deployment}', options)
|
785
808
|
command.request_representation = Google::Apis::DeploymentmanagerV2beta::Deployment::Representation
|
786
809
|
command.request_object = deployment_object
|
@@ -790,6 +813,7 @@ module Google
|
|
790
813
|
command.params['deployment'] = deployment unless deployment.nil?
|
791
814
|
command.query['createPolicy'] = create_policy unless create_policy.nil?
|
792
815
|
command.query['deletePolicy'] = delete_policy unless delete_policy.nil?
|
816
|
+
command.query['header.bypassBillingFilter'] = header_bypass_billing_filter unless header_bypass_billing_filter.nil?
|
793
817
|
command.query['preview'] = preview unless preview.nil?
|
794
818
|
command.query['fields'] = fields unless fields.nil?
|
795
819
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
@@ -803,6 +827,7 @@ module Google
|
|
803
827
|
# The name of the deployment for this request.
|
804
828
|
# @param [String] manifest
|
805
829
|
# The name of the manifest for this request.
|
830
|
+
# @param [Boolean] header_bypass_billing_filter
|
806
831
|
# @param [String] fields
|
807
832
|
# Selector specifying which fields to include in a partial response.
|
808
833
|
# @param [String] quota_user
|
@@ -820,13 +845,14 @@ module Google
|
|
820
845
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
821
846
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
822
847
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
823
|
-
def get_manifest(project, deployment, manifest, fields: nil, quota_user: nil, options: nil, &block)
|
848
|
+
def get_manifest(project, deployment, manifest, header_bypass_billing_filter: nil, fields: nil, quota_user: nil, options: nil, &block)
|
824
849
|
command = make_simple_command(:get, 'deploymentmanager/v2beta/projects/{project}/global/deployments/{deployment}/manifests/{manifest}', options)
|
825
850
|
command.response_representation = Google::Apis::DeploymentmanagerV2beta::Manifest::Representation
|
826
851
|
command.response_class = Google::Apis::DeploymentmanagerV2beta::Manifest
|
827
852
|
command.params['project'] = project unless project.nil?
|
828
853
|
command.params['deployment'] = deployment unless deployment.nil?
|
829
854
|
command.params['manifest'] = manifest unless manifest.nil?
|
855
|
+
command.query['header.bypassBillingFilter'] = header_bypass_billing_filter unless header_bypass_billing_filter.nil?
|
830
856
|
command.query['fields'] = fields unless fields.nil?
|
831
857
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
832
858
|
execute_or_queue_command(command, &block)
|
@@ -922,6 +948,7 @@ module Google
|
|
922
948
|
# The project ID for this request.
|
923
949
|
# @param [String] operation
|
924
950
|
# The name of the operation for this request.
|
951
|
+
# @param [Boolean] header_bypass_billing_filter
|
925
952
|
# @param [String] fields
|
926
953
|
# Selector specifying which fields to include in a partial response.
|
927
954
|
# @param [String] quota_user
|
@@ -939,12 +966,13 @@ module Google
|
|
939
966
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
940
967
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
941
968
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
942
|
-
def get_operation(project, operation, fields: nil, quota_user: nil, options: nil, &block)
|
969
|
+
def get_operation(project, operation, header_bypass_billing_filter: nil, fields: nil, quota_user: nil, options: nil, &block)
|
943
970
|
command = make_simple_command(:get, 'deploymentmanager/v2beta/projects/{project}/global/operations/{operation}', options)
|
944
971
|
command.response_representation = Google::Apis::DeploymentmanagerV2beta::Operation::Representation
|
945
972
|
command.response_class = Google::Apis::DeploymentmanagerV2beta::Operation
|
946
973
|
command.params['project'] = project unless project.nil?
|
947
974
|
command.params['operation'] = operation unless operation.nil?
|
975
|
+
command.query['header.bypassBillingFilter'] = header_bypass_billing_filter unless header_bypass_billing_filter.nil?
|
948
976
|
command.query['fields'] = fields unless fields.nil?
|
949
977
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
950
978
|
execute_or_queue_command(command, &block)
|
@@ -1039,6 +1067,7 @@ module Google
|
|
1039
1067
|
# The name of the deployment for this request.
|
1040
1068
|
# @param [String] resource
|
1041
1069
|
# The name of the resource for this request.
|
1070
|
+
# @param [Boolean] header_bypass_billing_filter
|
1042
1071
|
# @param [String] fields
|
1043
1072
|
# Selector specifying which fields to include in a partial response.
|
1044
1073
|
# @param [String] quota_user
|
@@ -1056,13 +1085,14 @@ module Google
|
|
1056
1085
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1057
1086
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1058
1087
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1059
|
-
def get_resource(project, deployment, resource, fields: nil, quota_user: nil, options: nil, &block)
|
1088
|
+
def get_resource(project, deployment, resource, header_bypass_billing_filter: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1060
1089
|
command = make_simple_command(:get, 'deploymentmanager/v2beta/projects/{project}/global/deployments/{deployment}/resources/{resource}', options)
|
1061
1090
|
command.response_representation = Google::Apis::DeploymentmanagerV2beta::Resource::Representation
|
1062
1091
|
command.response_class = Google::Apis::DeploymentmanagerV2beta::Resource
|
1063
1092
|
command.params['project'] = project unless project.nil?
|
1064
1093
|
command.params['deployment'] = deployment unless deployment.nil?
|
1065
1094
|
command.params['resource'] = resource unless resource.nil?
|
1095
|
+
command.query['header.bypassBillingFilter'] = header_bypass_billing_filter unless header_bypass_billing_filter.nil?
|
1066
1096
|
command.query['fields'] = fields unless fields.nil?
|
1067
1097
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1068
1098
|
execute_or_queue_command(command, &block)
|
@@ -1158,6 +1188,7 @@ module Google
|
|
1158
1188
|
# The project ID for this request.
|
1159
1189
|
# @param [String] type_provider
|
1160
1190
|
# The name of the type provider for this request.
|
1191
|
+
# @param [Boolean] header_bypass_billing_filter
|
1161
1192
|
# @param [String] fields
|
1162
1193
|
# Selector specifying which fields to include in a partial response.
|
1163
1194
|
# @param [String] quota_user
|
@@ -1175,12 +1206,13 @@ module Google
|
|
1175
1206
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1176
1207
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1177
1208
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1178
|
-
def delete_type_provider(project, type_provider, fields: nil, quota_user: nil, options: nil, &block)
|
1209
|
+
def delete_type_provider(project, type_provider, header_bypass_billing_filter: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1179
1210
|
command = make_simple_command(:delete, 'deploymentmanager/v2beta/projects/{project}/global/typeProviders/{typeProvider}', options)
|
1180
1211
|
command.response_representation = Google::Apis::DeploymentmanagerV2beta::Operation::Representation
|
1181
1212
|
command.response_class = Google::Apis::DeploymentmanagerV2beta::Operation
|
1182
1213
|
command.params['project'] = project unless project.nil?
|
1183
1214
|
command.params['typeProvider'] = type_provider unless type_provider.nil?
|
1215
|
+
command.query['header.bypassBillingFilter'] = header_bypass_billing_filter unless header_bypass_billing_filter.nil?
|
1184
1216
|
command.query['fields'] = fields unless fields.nil?
|
1185
1217
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1186
1218
|
execute_or_queue_command(command, &block)
|
@@ -1191,6 +1223,7 @@ module Google
|
|
1191
1223
|
# The project ID for this request.
|
1192
1224
|
# @param [String] type_provider
|
1193
1225
|
# The name of the type provider for this request.
|
1226
|
+
# @param [Boolean] header_bypass_billing_filter
|
1194
1227
|
# @param [String] fields
|
1195
1228
|
# Selector specifying which fields to include in a partial response.
|
1196
1229
|
# @param [String] quota_user
|
@@ -1208,12 +1241,13 @@ module Google
|
|
1208
1241
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1209
1242
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1210
1243
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1211
|
-
def get_type_provider(project, type_provider, fields: nil, quota_user: nil, options: nil, &block)
|
1244
|
+
def get_type_provider(project, type_provider, header_bypass_billing_filter: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1212
1245
|
command = make_simple_command(:get, 'deploymentmanager/v2beta/projects/{project}/global/typeProviders/{typeProvider}', options)
|
1213
1246
|
command.response_representation = Google::Apis::DeploymentmanagerV2beta::TypeProvider::Representation
|
1214
1247
|
command.response_class = Google::Apis::DeploymentmanagerV2beta::TypeProvider
|
1215
1248
|
command.params['project'] = project unless project.nil?
|
1216
1249
|
command.params['typeProvider'] = type_provider unless type_provider.nil?
|
1250
|
+
command.query['header.bypassBillingFilter'] = header_bypass_billing_filter unless header_bypass_billing_filter.nil?
|
1217
1251
|
command.query['fields'] = fields unless fields.nil?
|
1218
1252
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1219
1253
|
execute_or_queue_command(command, &block)
|
@@ -1226,6 +1260,7 @@ module Google
|
|
1226
1260
|
# The name of the type provider for this request.
|
1227
1261
|
# @param [String] type
|
1228
1262
|
# The name of the type provider type for this request.
|
1263
|
+
# @param [Boolean] header_bypass_billing_filter
|
1229
1264
|
# @param [String] fields
|
1230
1265
|
# Selector specifying which fields to include in a partial response.
|
1231
1266
|
# @param [String] quota_user
|
@@ -1243,13 +1278,14 @@ module Google
|
|
1243
1278
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1244
1279
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1245
1280
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1246
|
-
def get_type_provider_type(project, type_provider, type, fields: nil, quota_user: nil, options: nil, &block)
|
1281
|
+
def get_type_provider_type(project, type_provider, type, header_bypass_billing_filter: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1247
1282
|
command = make_simple_command(:get, 'deploymentmanager/v2beta/projects/{project}/global/typeProviders/{typeProvider}/types/{type}', options)
|
1248
1283
|
command.response_representation = Google::Apis::DeploymentmanagerV2beta::TypeInfo::Representation
|
1249
1284
|
command.response_class = Google::Apis::DeploymentmanagerV2beta::TypeInfo
|
1250
1285
|
command.params['project'] = project unless project.nil?
|
1251
1286
|
command.params['typeProvider'] = type_provider unless type_provider.nil?
|
1252
1287
|
command.params['type'] = type unless type.nil?
|
1288
|
+
command.query['header.bypassBillingFilter'] = header_bypass_billing_filter unless header_bypass_billing_filter.nil?
|
1253
1289
|
command.query['fields'] = fields unless fields.nil?
|
1254
1290
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1255
1291
|
execute_or_queue_command(command, &block)
|
@@ -1259,6 +1295,7 @@ module Google
|
|
1259
1295
|
# @param [String] project
|
1260
1296
|
# The project ID for this request.
|
1261
1297
|
# @param [Google::Apis::DeploymentmanagerV2beta::TypeProvider] type_provider_object
|
1298
|
+
# @param [Boolean] header_bypass_billing_filter
|
1262
1299
|
# @param [String] fields
|
1263
1300
|
# Selector specifying which fields to include in a partial response.
|
1264
1301
|
# @param [String] quota_user
|
@@ -1276,13 +1313,14 @@ module Google
|
|
1276
1313
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1277
1314
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1278
1315
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1279
|
-
def insert_type_provider(project, type_provider_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
1316
|
+
def insert_type_provider(project, type_provider_object = nil, header_bypass_billing_filter: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1280
1317
|
command = make_simple_command(:post, 'deploymentmanager/v2beta/projects/{project}/global/typeProviders', options)
|
1281
1318
|
command.request_representation = Google::Apis::DeploymentmanagerV2beta::TypeProvider::Representation
|
1282
1319
|
command.request_object = type_provider_object
|
1283
1320
|
command.response_representation = Google::Apis::DeploymentmanagerV2beta::Operation::Representation
|
1284
1321
|
command.response_class = Google::Apis::DeploymentmanagerV2beta::Operation
|
1285
1322
|
command.params['project'] = project unless project.nil?
|
1323
|
+
command.query['header.bypassBillingFilter'] = header_bypass_billing_filter unless header_bypass_billing_filter.nil?
|
1286
1324
|
command.query['fields'] = fields unless fields.nil?
|
1287
1325
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1288
1326
|
execute_or_queue_command(command, &block)
|
@@ -1461,6 +1499,7 @@ module Google
|
|
1461
1499
|
# @param [String] type_provider
|
1462
1500
|
# The name of the type provider for this request.
|
1463
1501
|
# @param [Google::Apis::DeploymentmanagerV2beta::TypeProvider] type_provider_object
|
1502
|
+
# @param [Boolean] header_bypass_billing_filter
|
1464
1503
|
# @param [String] fields
|
1465
1504
|
# Selector specifying which fields to include in a partial response.
|
1466
1505
|
# @param [String] quota_user
|
@@ -1478,7 +1517,7 @@ module Google
|
|
1478
1517
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1479
1518
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1480
1519
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1481
|
-
def patch_type_provider(project, type_provider, type_provider_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
1520
|
+
def patch_type_provider(project, type_provider, type_provider_object = nil, header_bypass_billing_filter: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1482
1521
|
command = make_simple_command(:patch, 'deploymentmanager/v2beta/projects/{project}/global/typeProviders/{typeProvider}', options)
|
1483
1522
|
command.request_representation = Google::Apis::DeploymentmanagerV2beta::TypeProvider::Representation
|
1484
1523
|
command.request_object = type_provider_object
|
@@ -1486,6 +1525,7 @@ module Google
|
|
1486
1525
|
command.response_class = Google::Apis::DeploymentmanagerV2beta::Operation
|
1487
1526
|
command.params['project'] = project unless project.nil?
|
1488
1527
|
command.params['typeProvider'] = type_provider unless type_provider.nil?
|
1528
|
+
command.query['header.bypassBillingFilter'] = header_bypass_billing_filter unless header_bypass_billing_filter.nil?
|
1489
1529
|
command.query['fields'] = fields unless fields.nil?
|
1490
1530
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1491
1531
|
execute_or_queue_command(command, &block)
|
@@ -1497,6 +1537,7 @@ module Google
|
|
1497
1537
|
# @param [String] type_provider
|
1498
1538
|
# The name of the type provider for this request.
|
1499
1539
|
# @param [Google::Apis::DeploymentmanagerV2beta::TypeProvider] type_provider_object
|
1540
|
+
# @param [Boolean] header_bypass_billing_filter
|
1500
1541
|
# @param [String] fields
|
1501
1542
|
# Selector specifying which fields to include in a partial response.
|
1502
1543
|
# @param [String] quota_user
|
@@ -1514,7 +1555,7 @@ module Google
|
|
1514
1555
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1515
1556
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1516
1557
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1517
|
-
def update_type_provider(project, type_provider, type_provider_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
1558
|
+
def update_type_provider(project, type_provider, type_provider_object = nil, header_bypass_billing_filter: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1518
1559
|
command = make_simple_command(:put, 'deploymentmanager/v2beta/projects/{project}/global/typeProviders/{typeProvider}', options)
|
1519
1560
|
command.request_representation = Google::Apis::DeploymentmanagerV2beta::TypeProvider::Representation
|
1520
1561
|
command.request_object = type_provider_object
|
@@ -1522,6 +1563,7 @@ module Google
|
|
1522
1563
|
command.response_class = Google::Apis::DeploymentmanagerV2beta::Operation
|
1523
1564
|
command.params['project'] = project unless project.nil?
|
1524
1565
|
command.params['typeProvider'] = type_provider unless type_provider.nil?
|
1566
|
+
command.query['header.bypassBillingFilter'] = header_bypass_billing_filter unless header_bypass_billing_filter.nil?
|
1525
1567
|
command.query['fields'] = fields unless fields.nil?
|
1526
1568
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1527
1569
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-deploymentmanager_v2beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.32.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-12-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-deploymentmanager_v2beta/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-deploymentmanager_v2beta/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-deploymentmanager_v2beta/v0.32.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-deploymentmanager_v2beta
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.5.
|
78
|
+
rubygems_version: 3.5.22
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Cloud Deployment Manager V2 API V2beta
|