google-apis-datamigration_v1 0.83.0 → 0.84.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: 3b96a158089150f0a6bc80efa1669ef99d212f6ba1631bdf51cf0d2ecebeb634
|
|
4
|
+
data.tar.gz: 7de8d34b6bdabd90a7de128aea9f2f91ff90a5cf84c91669c95e7c1e1743fddf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f155731afe8a718c80611286e035a20915d815c0860d0c829a27ab2307385f3439f24587188d8ed6ba7e614f4f7e6004a96f4ba3f2457bbe50db4a86456a5a5e
|
|
7
|
+
data.tar.gz: 25dab49b7d49d6498d2bc2bceb983919be39dd8a2a42f33d0d37425dc438c84474c4a0800706ce967319f91e0a45a9a3e8adbbb5ec0225e3d4d36a94da792873
|
data/CHANGELOG.md
CHANGED
|
@@ -388,6 +388,26 @@ module Google
|
|
|
388
388
|
end
|
|
389
389
|
end
|
|
390
390
|
|
|
391
|
+
# Describes violations in a client request. This error type focuses on the
|
|
392
|
+
# syntactic aspects of the request.
|
|
393
|
+
class BadRequest
|
|
394
|
+
include Google::Apis::Core::Hashable
|
|
395
|
+
|
|
396
|
+
# Describes all violations in a client request.
|
|
397
|
+
# Corresponds to the JSON property `fieldViolations`
|
|
398
|
+
# @return [Array<Google::Apis::DatamigrationV1::FieldViolation>]
|
|
399
|
+
attr_accessor :field_violations
|
|
400
|
+
|
|
401
|
+
def initialize(**args)
|
|
402
|
+
update!(**args)
|
|
403
|
+
end
|
|
404
|
+
|
|
405
|
+
# Update properties of this object
|
|
406
|
+
def update!(**args)
|
|
407
|
+
@field_violations = args[:field_violations] if args.key?(:field_violations)
|
|
408
|
+
end
|
|
409
|
+
end
|
|
410
|
+
|
|
391
411
|
# Configuration to use Binary Log Parser CDC technique.
|
|
392
412
|
class BinaryLogParser
|
|
393
413
|
include Google::Apis::Core::Hashable
|
|
@@ -1571,6 +1591,31 @@ module Google
|
|
|
1571
1591
|
end
|
|
1572
1592
|
end
|
|
1573
1593
|
|
|
1594
|
+
# Describes additional debugging info.
|
|
1595
|
+
class DebugInfo
|
|
1596
|
+
include Google::Apis::Core::Hashable
|
|
1597
|
+
|
|
1598
|
+
# Additional debugging information provided by the server.
|
|
1599
|
+
# Corresponds to the JSON property `detail`
|
|
1600
|
+
# @return [String]
|
|
1601
|
+
attr_accessor :detail
|
|
1602
|
+
|
|
1603
|
+
# The stack trace entries indicating where the error occurred.
|
|
1604
|
+
# Corresponds to the JSON property `stackEntries`
|
|
1605
|
+
# @return [Array<String>]
|
|
1606
|
+
attr_accessor :stack_entries
|
|
1607
|
+
|
|
1608
|
+
def initialize(**args)
|
|
1609
|
+
update!(**args)
|
|
1610
|
+
end
|
|
1611
|
+
|
|
1612
|
+
# Update properties of this object
|
|
1613
|
+
def update!(**args)
|
|
1614
|
+
@detail = args[:detail] if args.key?(:detail)
|
|
1615
|
+
@stack_entries = args[:stack_entries] if args.key?(:stack_entries)
|
|
1616
|
+
end
|
|
1617
|
+
end
|
|
1618
|
+
|
|
1574
1619
|
# Request message for 'DemoteDestination' request.
|
|
1575
1620
|
class DemoteDestinationRequest
|
|
1576
1621
|
include Google::Apis::Core::Hashable
|
|
@@ -1957,6 +2002,58 @@ module Google
|
|
|
1957
2002
|
end
|
|
1958
2003
|
end
|
|
1959
2004
|
|
|
2005
|
+
# Describes the cause of the error with structured details. Example of an error
|
|
2006
|
+
# when contacting the "pubsub.googleapis.com" API when it is not enabled: ` "
|
|
2007
|
+
# reason": "API_DISABLED" "domain": "googleapis.com" "metadata": ` "resource": "
|
|
2008
|
+
# projects/123", "service": "pubsub.googleapis.com" ` ` This response indicates
|
|
2009
|
+
# that the pubsub.googleapis.com API is not enabled. Example of an error that is
|
|
2010
|
+
# returned when attempting to create a Spanner instance in a region that is out
|
|
2011
|
+
# of stock: ` "reason": "STOCKOUT" "domain": "spanner.googleapis.com", "metadata"
|
|
2012
|
+
# : ` "availableRegions": "us-central1,us-east2" ` `
|
|
2013
|
+
class ErrorInfo
|
|
2014
|
+
include Google::Apis::Core::Hashable
|
|
2015
|
+
|
|
2016
|
+
# The logical grouping to which the "reason" belongs. The error domain is
|
|
2017
|
+
# typically the registered service name of the tool or product that generates
|
|
2018
|
+
# the error. Example: "pubsub.googleapis.com". If the error is generated by some
|
|
2019
|
+
# common infrastructure, the error domain must be a globally unique value that
|
|
2020
|
+
# identifies the infrastructure. For Google API infrastructure, the error domain
|
|
2021
|
+
# is "googleapis.com".
|
|
2022
|
+
# Corresponds to the JSON property `domain`
|
|
2023
|
+
# @return [String]
|
|
2024
|
+
attr_accessor :domain
|
|
2025
|
+
|
|
2026
|
+
# Additional structured details about this error. Keys must match a regular
|
|
2027
|
+
# expression of `a-z+` but should ideally be lowerCamelCase. Also, they must be
|
|
2028
|
+
# limited to 64 characters in length. When identifying the current value of an
|
|
2029
|
+
# exceeded limit, the units should be contained in the key, not the value. For
|
|
2030
|
+
# example, rather than ``"instanceLimit": "100/request"``, should be returned as,
|
|
2031
|
+
# ``"instanceLimitPerRequest": "100"``, if the client exceeds the number of
|
|
2032
|
+
# instances that can be created in a single (batch) request.
|
|
2033
|
+
# Corresponds to the JSON property `metadata`
|
|
2034
|
+
# @return [Hash<String,String>]
|
|
2035
|
+
attr_accessor :metadata
|
|
2036
|
+
|
|
2037
|
+
# The reason of the error. This is a constant value that identifies the
|
|
2038
|
+
# proximate cause of the error. Error reasons are unique within a particular
|
|
2039
|
+
# domain of errors. This should be at most 63 characters and match a regular
|
|
2040
|
+
# expression of `A-Z+[A-Z0-9]`, which represents UPPER_SNAKE_CASE.
|
|
2041
|
+
# Corresponds to the JSON property `reason`
|
|
2042
|
+
# @return [String]
|
|
2043
|
+
attr_accessor :reason
|
|
2044
|
+
|
|
2045
|
+
def initialize(**args)
|
|
2046
|
+
update!(**args)
|
|
2047
|
+
end
|
|
2048
|
+
|
|
2049
|
+
# Update properties of this object
|
|
2050
|
+
def update!(**args)
|
|
2051
|
+
@domain = args[:domain] if args.key?(:domain)
|
|
2052
|
+
@metadata = args[:metadata] if args.key?(:metadata)
|
|
2053
|
+
@reason = args[:reason] if args.key?(:reason)
|
|
2054
|
+
end
|
|
2055
|
+
end
|
|
2056
|
+
|
|
1960
2057
|
# Represents a textual expression in the Common Expression Language (CEL) syntax.
|
|
1961
2058
|
# CEL is a C-like expression language. The syntax and semantics of CEL are
|
|
1962
2059
|
# documented at https://github.com/google/cel-spec. Example (Comparison): title:
|
|
@@ -2037,6 +2134,61 @@ module Google
|
|
|
2037
2134
|
end
|
|
2038
2135
|
end
|
|
2039
2136
|
|
|
2137
|
+
# A message type used to describe a single bad request field.
|
|
2138
|
+
class FieldViolation
|
|
2139
|
+
include Google::Apis::Core::Hashable
|
|
2140
|
+
|
|
2141
|
+
# A description of why the request element is bad.
|
|
2142
|
+
# Corresponds to the JSON property `description`
|
|
2143
|
+
# @return [String]
|
|
2144
|
+
attr_accessor :description
|
|
2145
|
+
|
|
2146
|
+
# A path that leads to a field in the request body. The value will be a sequence
|
|
2147
|
+
# of dot-separated identifiers that identify a protocol buffer field. Consider
|
|
2148
|
+
# the following: message CreateContactRequest ` message EmailAddress ` enum Type
|
|
2149
|
+
# ` TYPE_UNSPECIFIED = 0; HOME = 1; WORK = 2; ` optional string email = 1;
|
|
2150
|
+
# repeated EmailType type = 2; ` string full_name = 1; repeated EmailAddress
|
|
2151
|
+
# email_addresses = 2; ` In this example, in proto `field` could take one of the
|
|
2152
|
+
# following values: * `full_name` for a violation in the `full_name` value * `
|
|
2153
|
+
# email_addresses[1].email` for a violation in the `email` field of the first `
|
|
2154
|
+
# email_addresses` message * `email_addresses[3].type[2]` for a violation in the
|
|
2155
|
+
# second `type` value in the third `email_addresses` message. In JSON, the same
|
|
2156
|
+
# values are represented as: * `fullName` for a violation in the `fullName`
|
|
2157
|
+
# value * `emailAddresses[1].email` for a violation in the `email` field of the
|
|
2158
|
+
# first `emailAddresses` message * `emailAddresses[3].type[2]` for a violation
|
|
2159
|
+
# in the second `type` value in the third `emailAddresses` message.
|
|
2160
|
+
# Corresponds to the JSON property `field`
|
|
2161
|
+
# @return [String]
|
|
2162
|
+
attr_accessor :field
|
|
2163
|
+
|
|
2164
|
+
# Provides a localized error message that is safe to return to the user which
|
|
2165
|
+
# can be attached to an RPC error.
|
|
2166
|
+
# Corresponds to the JSON property `localizedMessage`
|
|
2167
|
+
# @return [Google::Apis::DatamigrationV1::LocalizedMessage]
|
|
2168
|
+
attr_accessor :localized_message
|
|
2169
|
+
|
|
2170
|
+
# The reason of the field-level error. This is a constant value that identifies
|
|
2171
|
+
# the proximate cause of the field-level error. It should uniquely identify the
|
|
2172
|
+
# type of the FieldViolation within the scope of the google.rpc.ErrorInfo.domain.
|
|
2173
|
+
# This should be at most 63 characters and match a regular expression of `A-Z+[
|
|
2174
|
+
# A-Z0-9]`, which represents UPPER_SNAKE_CASE.
|
|
2175
|
+
# Corresponds to the JSON property `reason`
|
|
2176
|
+
# @return [String]
|
|
2177
|
+
attr_accessor :reason
|
|
2178
|
+
|
|
2179
|
+
def initialize(**args)
|
|
2180
|
+
update!(**args)
|
|
2181
|
+
end
|
|
2182
|
+
|
|
2183
|
+
# Update properties of this object
|
|
2184
|
+
def update!(**args)
|
|
2185
|
+
@description = args[:description] if args.key?(:description)
|
|
2186
|
+
@field = args[:field] if args.key?(:field)
|
|
2187
|
+
@localized_message = args[:localized_message] if args.key?(:localized_message)
|
|
2188
|
+
@reason = args[:reason] if args.key?(:reason)
|
|
2189
|
+
end
|
|
2190
|
+
end
|
|
2191
|
+
|
|
2040
2192
|
# Options to configure rule type FilterTableColumns. The rule is used to filter
|
|
2041
2193
|
# the list of columns to include or exclude from a table. The rule filter field
|
|
2042
2194
|
# can refer to one entity. The rule scope can be: Table Only one of the two
|
|
@@ -2279,6 +2431,28 @@ module Google
|
|
|
2279
2431
|
end
|
|
2280
2432
|
end
|
|
2281
2433
|
|
|
2434
|
+
# Provides links to documentation or for performing an out of band action. For
|
|
2435
|
+
# example, if a quota check failed with an error indicating the calling project
|
|
2436
|
+
# hasn't enabled the accessed service, this can contain a URL pointing directly
|
|
2437
|
+
# to the right place in the developer console to flip the bit.
|
|
2438
|
+
class Help
|
|
2439
|
+
include Google::Apis::Core::Hashable
|
|
2440
|
+
|
|
2441
|
+
# URL(s) pointing to additional information on handling the current error.
|
|
2442
|
+
# Corresponds to the JSON property `links`
|
|
2443
|
+
# @return [Array<Google::Apis::DatamigrationV1::Link>]
|
|
2444
|
+
attr_accessor :links
|
|
2445
|
+
|
|
2446
|
+
def initialize(**args)
|
|
2447
|
+
update!(**args)
|
|
2448
|
+
end
|
|
2449
|
+
|
|
2450
|
+
# Update properties of this object
|
|
2451
|
+
def update!(**args)
|
|
2452
|
+
@links = args[:links] if args.key?(:links)
|
|
2453
|
+
end
|
|
2454
|
+
end
|
|
2455
|
+
|
|
2282
2456
|
# Metadata for heterogeneous migration jobs objects.
|
|
2283
2457
|
class HeterogeneousMetadata
|
|
2284
2458
|
include Google::Apis::Core::Hashable
|
|
@@ -2472,6 +2646,31 @@ module Google
|
|
|
2472
2646
|
end
|
|
2473
2647
|
end
|
|
2474
2648
|
|
|
2649
|
+
# Describes a URL link.
|
|
2650
|
+
class Link
|
|
2651
|
+
include Google::Apis::Core::Hashable
|
|
2652
|
+
|
|
2653
|
+
# Describes what the link offers.
|
|
2654
|
+
# Corresponds to the JSON property `description`
|
|
2655
|
+
# @return [String]
|
|
2656
|
+
attr_accessor :description
|
|
2657
|
+
|
|
2658
|
+
# The URL of the link.
|
|
2659
|
+
# Corresponds to the JSON property `url`
|
|
2660
|
+
# @return [String]
|
|
2661
|
+
attr_accessor :url
|
|
2662
|
+
|
|
2663
|
+
def initialize(**args)
|
|
2664
|
+
update!(**args)
|
|
2665
|
+
end
|
|
2666
|
+
|
|
2667
|
+
# Update properties of this object
|
|
2668
|
+
def update!(**args)
|
|
2669
|
+
@description = args[:description] if args.key?(:description)
|
|
2670
|
+
@url = args[:url] if args.key?(:url)
|
|
2671
|
+
end
|
|
2672
|
+
end
|
|
2673
|
+
|
|
2475
2674
|
# Response message for 'ListConnectionProfiles' request.
|
|
2476
2675
|
class ListConnectionProfilesResponse
|
|
2477
2676
|
include Google::Apis::Core::Hashable
|
|
@@ -2710,6 +2909,33 @@ module Google
|
|
|
2710
2909
|
end
|
|
2711
2910
|
end
|
|
2712
2911
|
|
|
2912
|
+
# Provides a localized error message that is safe to return to the user which
|
|
2913
|
+
# can be attached to an RPC error.
|
|
2914
|
+
class LocalizedMessage
|
|
2915
|
+
include Google::Apis::Core::Hashable
|
|
2916
|
+
|
|
2917
|
+
# The locale used following the specification defined at https://www.rfc-editor.
|
|
2918
|
+
# org/rfc/bcp/bcp47.txt. Examples are: "en-US", "fr-CH", "es-MX"
|
|
2919
|
+
# Corresponds to the JSON property `locale`
|
|
2920
|
+
# @return [String]
|
|
2921
|
+
attr_accessor :locale
|
|
2922
|
+
|
|
2923
|
+
# The localized error message in the above locale.
|
|
2924
|
+
# Corresponds to the JSON property `message`
|
|
2925
|
+
# @return [String]
|
|
2926
|
+
attr_accessor :message
|
|
2927
|
+
|
|
2928
|
+
def initialize(**args)
|
|
2929
|
+
update!(**args)
|
|
2930
|
+
end
|
|
2931
|
+
|
|
2932
|
+
# Update properties of this object
|
|
2933
|
+
def update!(**args)
|
|
2934
|
+
@locale = args[:locale] if args.key?(:locale)
|
|
2935
|
+
@message = args[:message] if args.key?(:message)
|
|
2936
|
+
end
|
|
2937
|
+
end
|
|
2938
|
+
|
|
2713
2939
|
# A resource that represents a Google Cloud location.
|
|
2714
2940
|
class Location
|
|
2715
2941
|
include Google::Apis::Core::Hashable
|
|
@@ -4306,6 +4532,64 @@ module Google
|
|
|
4306
4532
|
end
|
|
4307
4533
|
end
|
|
4308
4534
|
|
|
4535
|
+
# Describes what preconditions have failed. For example, if an RPC failed
|
|
4536
|
+
# because it required the Terms of Service to be acknowledged, it could list the
|
|
4537
|
+
# terms of service violation in the PreconditionFailure message.
|
|
4538
|
+
class PreconditionFailure
|
|
4539
|
+
include Google::Apis::Core::Hashable
|
|
4540
|
+
|
|
4541
|
+
# Describes all precondition violations.
|
|
4542
|
+
# Corresponds to the JSON property `violations`
|
|
4543
|
+
# @return [Array<Google::Apis::DatamigrationV1::PreconditionFailureViolation>]
|
|
4544
|
+
attr_accessor :violations
|
|
4545
|
+
|
|
4546
|
+
def initialize(**args)
|
|
4547
|
+
update!(**args)
|
|
4548
|
+
end
|
|
4549
|
+
|
|
4550
|
+
# Update properties of this object
|
|
4551
|
+
def update!(**args)
|
|
4552
|
+
@violations = args[:violations] if args.key?(:violations)
|
|
4553
|
+
end
|
|
4554
|
+
end
|
|
4555
|
+
|
|
4556
|
+
# A message type used to describe a single precondition failure.
|
|
4557
|
+
class PreconditionFailureViolation
|
|
4558
|
+
include Google::Apis::Core::Hashable
|
|
4559
|
+
|
|
4560
|
+
# A description of how the precondition failed. Developers can use this
|
|
4561
|
+
# description to understand how to fix the failure. For example: "Terms of
|
|
4562
|
+
# service not accepted".
|
|
4563
|
+
# Corresponds to the JSON property `description`
|
|
4564
|
+
# @return [String]
|
|
4565
|
+
attr_accessor :description
|
|
4566
|
+
|
|
4567
|
+
# The subject, relative to the type, that failed. For example, "google.com/cloud"
|
|
4568
|
+
# relative to the "TOS" type would indicate which terms of service is being
|
|
4569
|
+
# referenced.
|
|
4570
|
+
# Corresponds to the JSON property `subject`
|
|
4571
|
+
# @return [String]
|
|
4572
|
+
attr_accessor :subject
|
|
4573
|
+
|
|
4574
|
+
# The type of PreconditionFailure. We recommend using a service-specific enum
|
|
4575
|
+
# type to define the supported precondition violation subjects. For example, "
|
|
4576
|
+
# TOS" for "Terms of Service violation".
|
|
4577
|
+
# Corresponds to the JSON property `type`
|
|
4578
|
+
# @return [String]
|
|
4579
|
+
attr_accessor :type
|
|
4580
|
+
|
|
4581
|
+
def initialize(**args)
|
|
4582
|
+
update!(**args)
|
|
4583
|
+
end
|
|
4584
|
+
|
|
4585
|
+
# Update properties of this object
|
|
4586
|
+
def update!(**args)
|
|
4587
|
+
@description = args[:description] if args.key?(:description)
|
|
4588
|
+
@subject = args[:subject] if args.key?(:subject)
|
|
4589
|
+
@type = args[:type] if args.key?(:type)
|
|
4590
|
+
end
|
|
4591
|
+
end
|
|
4592
|
+
|
|
4309
4593
|
# Settings for the cluster's primary instance
|
|
4310
4594
|
class PrimaryInstanceSettings
|
|
4311
4595
|
include Google::Apis::Core::Hashable
|
|
@@ -4539,6 +4823,198 @@ module Google
|
|
|
4539
4823
|
end
|
|
4540
4824
|
end
|
|
4541
4825
|
|
|
4826
|
+
# Describes how a quota check failed. For example if a daily limit was exceeded
|
|
4827
|
+
# for the calling project, a service could respond with a QuotaFailure detail
|
|
4828
|
+
# containing the project id and the description of the quota limit that was
|
|
4829
|
+
# exceeded. If the calling project hasn't enabled the service in the developer
|
|
4830
|
+
# console, then a service could respond with the project id and set `
|
|
4831
|
+
# service_disabled` to true. Also see RetryInfo and Help types for other details
|
|
4832
|
+
# about handling a quota failure.
|
|
4833
|
+
class QuotaFailure
|
|
4834
|
+
include Google::Apis::Core::Hashable
|
|
4835
|
+
|
|
4836
|
+
# Describes all quota violations.
|
|
4837
|
+
# Corresponds to the JSON property `violations`
|
|
4838
|
+
# @return [Array<Google::Apis::DatamigrationV1::QuotaFailureViolation>]
|
|
4839
|
+
attr_accessor :violations
|
|
4840
|
+
|
|
4841
|
+
def initialize(**args)
|
|
4842
|
+
update!(**args)
|
|
4843
|
+
end
|
|
4844
|
+
|
|
4845
|
+
# Update properties of this object
|
|
4846
|
+
def update!(**args)
|
|
4847
|
+
@violations = args[:violations] if args.key?(:violations)
|
|
4848
|
+
end
|
|
4849
|
+
end
|
|
4850
|
+
|
|
4851
|
+
# A message type used to describe a single quota violation. For example, a daily
|
|
4852
|
+
# quota or a custom quota that was exceeded.
|
|
4853
|
+
class QuotaFailureViolation
|
|
4854
|
+
include Google::Apis::Core::Hashable
|
|
4855
|
+
|
|
4856
|
+
# The API Service from which the `QuotaFailure.Violation` orginates. In some
|
|
4857
|
+
# cases, Quota issues originate from an API Service other than the one that was
|
|
4858
|
+
# called. In other words, a dependency of the called API Service could be the
|
|
4859
|
+
# cause of the `QuotaFailure`, and this field would have the dependency API
|
|
4860
|
+
# service name. For example, if the called API is Kubernetes Engine API (
|
|
4861
|
+
# container.googleapis.com), and a quota violation occurs in the Kubernetes
|
|
4862
|
+
# Engine API itself, this field would be "container.googleapis.com". On the
|
|
4863
|
+
# other hand, if the quota violation occurs when the Kubernetes Engine API
|
|
4864
|
+
# creates VMs in the Compute Engine API (compute.googleapis.com), this field
|
|
4865
|
+
# would be "compute.googleapis.com".
|
|
4866
|
+
# Corresponds to the JSON property `apiService`
|
|
4867
|
+
# @return [String]
|
|
4868
|
+
attr_accessor :api_service
|
|
4869
|
+
|
|
4870
|
+
# A description of how the quota check failed. Clients can use this description
|
|
4871
|
+
# to find more about the quota configuration in the service's public
|
|
4872
|
+
# documentation, or find the relevant quota limit to adjust through developer
|
|
4873
|
+
# console. For example: "Service disabled" or "Daily Limit for read operations
|
|
4874
|
+
# exceeded".
|
|
4875
|
+
# Corresponds to the JSON property `description`
|
|
4876
|
+
# @return [String]
|
|
4877
|
+
attr_accessor :description
|
|
4878
|
+
|
|
4879
|
+
# The new quota value being rolled out at the time of the violation. At the
|
|
4880
|
+
# completion of the rollout, this value will be enforced in place of quota_value.
|
|
4881
|
+
# If no rollout is in progress at the time of the violation, this field is not
|
|
4882
|
+
# set. For example, if at the time of the violation a rollout is in progress
|
|
4883
|
+
# changing the number of CPUs quota from 10 to 20, 20 would be the value of this
|
|
4884
|
+
# field.
|
|
4885
|
+
# Corresponds to the JSON property `futureQuotaValue`
|
|
4886
|
+
# @return [Fixnum]
|
|
4887
|
+
attr_accessor :future_quota_value
|
|
4888
|
+
|
|
4889
|
+
# The dimensions of the violated quota. Every non-global quota is enforced on a
|
|
4890
|
+
# set of dimensions. While quota metric defines what to count, the dimensions
|
|
4891
|
+
# specify for what aspects the counter should be increased. For example, the
|
|
4892
|
+
# quota "CPUs per region per VM family" enforces a limit on the metric "compute.
|
|
4893
|
+
# googleapis.com/cpus_per_vm_family" on dimensions "region" and "vm_family". And
|
|
4894
|
+
# if the violation occurred in region "us-central1" and for VM family "n1", the
|
|
4895
|
+
# quota_dimensions would be, ` "region": "us-central1", "vm_family": "n1", `
|
|
4896
|
+
# When a quota is enforced globally, the quota_dimensions would always be empty.
|
|
4897
|
+
# Corresponds to the JSON property `quotaDimensions`
|
|
4898
|
+
# @return [Hash<String,String>]
|
|
4899
|
+
attr_accessor :quota_dimensions
|
|
4900
|
+
|
|
4901
|
+
# The id of the violated quota. Also know as "limit name", this is the unique
|
|
4902
|
+
# identifier of a quota in the context of an API service. For example, "CPUS-PER-
|
|
4903
|
+
# VM-FAMILY-per-project-region".
|
|
4904
|
+
# Corresponds to the JSON property `quotaId`
|
|
4905
|
+
# @return [String]
|
|
4906
|
+
attr_accessor :quota_id
|
|
4907
|
+
|
|
4908
|
+
# The metric of the violated quota. A quota metric is a named counter to measure
|
|
4909
|
+
# usage, such as API requests or CPUs. When an activity occurs in a service,
|
|
4910
|
+
# such as Virtual Machine allocation, one or more quota metrics may be affected.
|
|
4911
|
+
# For example, "compute.googleapis.com/cpus_per_vm_family", "storage.googleapis.
|
|
4912
|
+
# com/internet_egress_bandwidth".
|
|
4913
|
+
# Corresponds to the JSON property `quotaMetric`
|
|
4914
|
+
# @return [String]
|
|
4915
|
+
attr_accessor :quota_metric
|
|
4916
|
+
|
|
4917
|
+
# The enforced quota value at the time of the `QuotaFailure`. For example, if
|
|
4918
|
+
# the enforced quota value at the time of the `QuotaFailure` on the number of
|
|
4919
|
+
# CPUs is "10", then the value of this field would reflect this quantity.
|
|
4920
|
+
# Corresponds to the JSON property `quotaValue`
|
|
4921
|
+
# @return [Fixnum]
|
|
4922
|
+
attr_accessor :quota_value
|
|
4923
|
+
|
|
4924
|
+
# The subject on which the quota check failed. For example, "clientip:" or "
|
|
4925
|
+
# project:".
|
|
4926
|
+
# Corresponds to the JSON property `subject`
|
|
4927
|
+
# @return [String]
|
|
4928
|
+
attr_accessor :subject
|
|
4929
|
+
|
|
4930
|
+
def initialize(**args)
|
|
4931
|
+
update!(**args)
|
|
4932
|
+
end
|
|
4933
|
+
|
|
4934
|
+
# Update properties of this object
|
|
4935
|
+
def update!(**args)
|
|
4936
|
+
@api_service = args[:api_service] if args.key?(:api_service)
|
|
4937
|
+
@description = args[:description] if args.key?(:description)
|
|
4938
|
+
@future_quota_value = args[:future_quota_value] if args.key?(:future_quota_value)
|
|
4939
|
+
@quota_dimensions = args[:quota_dimensions] if args.key?(:quota_dimensions)
|
|
4940
|
+
@quota_id = args[:quota_id] if args.key?(:quota_id)
|
|
4941
|
+
@quota_metric = args[:quota_metric] if args.key?(:quota_metric)
|
|
4942
|
+
@quota_value = args[:quota_value] if args.key?(:quota_value)
|
|
4943
|
+
@subject = args[:subject] if args.key?(:subject)
|
|
4944
|
+
end
|
|
4945
|
+
end
|
|
4946
|
+
|
|
4947
|
+
# Contains metadata about the request that clients can attach when filing a bug
|
|
4948
|
+
# or providing other forms of feedback.
|
|
4949
|
+
class RequestInfo
|
|
4950
|
+
include Google::Apis::Core::Hashable
|
|
4951
|
+
|
|
4952
|
+
# An opaque string that should only be interpreted by the service generating it.
|
|
4953
|
+
# For example, it can be used to identify requests in the service's logs.
|
|
4954
|
+
# Corresponds to the JSON property `requestId`
|
|
4955
|
+
# @return [String]
|
|
4956
|
+
attr_accessor :request_id
|
|
4957
|
+
|
|
4958
|
+
# Any data that was used to serve this request. For example, an encrypted stack
|
|
4959
|
+
# trace that can be sent back to the service provider for debugging.
|
|
4960
|
+
# Corresponds to the JSON property `servingData`
|
|
4961
|
+
# @return [String]
|
|
4962
|
+
attr_accessor :serving_data
|
|
4963
|
+
|
|
4964
|
+
def initialize(**args)
|
|
4965
|
+
update!(**args)
|
|
4966
|
+
end
|
|
4967
|
+
|
|
4968
|
+
# Update properties of this object
|
|
4969
|
+
def update!(**args)
|
|
4970
|
+
@request_id = args[:request_id] if args.key?(:request_id)
|
|
4971
|
+
@serving_data = args[:serving_data] if args.key?(:serving_data)
|
|
4972
|
+
end
|
|
4973
|
+
end
|
|
4974
|
+
|
|
4975
|
+
# Describes the resource that is being accessed.
|
|
4976
|
+
class ResourceInfo
|
|
4977
|
+
include Google::Apis::Core::Hashable
|
|
4978
|
+
|
|
4979
|
+
# Describes what error is encountered when accessing this resource. For example,
|
|
4980
|
+
# updating a cloud project may require the `writer` permission on the developer
|
|
4981
|
+
# console project.
|
|
4982
|
+
# Corresponds to the JSON property `description`
|
|
4983
|
+
# @return [String]
|
|
4984
|
+
attr_accessor :description
|
|
4985
|
+
|
|
4986
|
+
# The owner of the resource (optional). For example, "user:" or "project:".
|
|
4987
|
+
# Corresponds to the JSON property `owner`
|
|
4988
|
+
# @return [String]
|
|
4989
|
+
attr_accessor :owner
|
|
4990
|
+
|
|
4991
|
+
# The name of the resource being accessed. For example, a shared calendar name: "
|
|
4992
|
+
# example.com_4fghdhgsrgh@group.calendar.google.com", if the current error is
|
|
4993
|
+
# google.rpc.Code.PERMISSION_DENIED.
|
|
4994
|
+
# Corresponds to the JSON property `resourceName`
|
|
4995
|
+
# @return [String]
|
|
4996
|
+
attr_accessor :resource_name
|
|
4997
|
+
|
|
4998
|
+
# A name for the type of resource being accessed, e.g. "sql table", "cloud
|
|
4999
|
+
# storage bucket", "file", "Google calendar"; or the type URL of the resource: e.
|
|
5000
|
+
# g. "type.googleapis.com/google.pubsub.v1.Topic".
|
|
5001
|
+
# Corresponds to the JSON property `resourceType`
|
|
5002
|
+
# @return [String]
|
|
5003
|
+
attr_accessor :resource_type
|
|
5004
|
+
|
|
5005
|
+
def initialize(**args)
|
|
5006
|
+
update!(**args)
|
|
5007
|
+
end
|
|
5008
|
+
|
|
5009
|
+
# Update properties of this object
|
|
5010
|
+
def update!(**args)
|
|
5011
|
+
@description = args[:description] if args.key?(:description)
|
|
5012
|
+
@owner = args[:owner] if args.key?(:owner)
|
|
5013
|
+
@resource_name = args[:resource_name] if args.key?(:resource_name)
|
|
5014
|
+
@resource_type = args[:resource_type] if args.key?(:resource_type)
|
|
5015
|
+
end
|
|
5016
|
+
end
|
|
5017
|
+
|
|
4542
5018
|
# Request message for 'RestartMigrationJob' request.
|
|
4543
5019
|
class RestartMigrationJobRequest
|
|
4544
5020
|
include Google::Apis::Core::Hashable
|
|
@@ -4594,6 +5070,33 @@ module Google
|
|
|
4594
5070
|
end
|
|
4595
5071
|
end
|
|
4596
5072
|
|
|
5073
|
+
# Describes when the clients can retry a failed request. Clients could ignore
|
|
5074
|
+
# the recommendation here or retry when this information is missing from error
|
|
5075
|
+
# responses. It's always recommended that clients should use exponential backoff
|
|
5076
|
+
# when retrying. Clients should wait until `retry_delay` amount of time has
|
|
5077
|
+
# passed since receiving the error response before retrying. If retrying
|
|
5078
|
+
# requests also fail, clients should use an exponential backoff scheme to
|
|
5079
|
+
# gradually increase the delay between retries based on `retry_delay`, until
|
|
5080
|
+
# either a maximum number of retries have been reached or a maximum retry delay
|
|
5081
|
+
# cap has been reached.
|
|
5082
|
+
class RetryInfo
|
|
5083
|
+
include Google::Apis::Core::Hashable
|
|
5084
|
+
|
|
5085
|
+
# Clients should wait at least this long between retrying the same request.
|
|
5086
|
+
# Corresponds to the JSON property `retryDelay`
|
|
5087
|
+
# @return [String]
|
|
5088
|
+
attr_accessor :retry_delay
|
|
5089
|
+
|
|
5090
|
+
def initialize(**args)
|
|
5091
|
+
update!(**args)
|
|
5092
|
+
end
|
|
5093
|
+
|
|
5094
|
+
# Update properties of this object
|
|
5095
|
+
def update!(**args)
|
|
5096
|
+
@retry_delay = args[:retry_delay] if args.key?(:retry_delay)
|
|
5097
|
+
end
|
|
5098
|
+
end
|
|
5099
|
+
|
|
4597
5100
|
# The details needed to configure a reverse SSH tunnel between the source and
|
|
4598
5101
|
# destination databases. These details will be used when calling the
|
|
4599
5102
|
# generateSshScript method (see https://cloud.google.com/database-migration/docs/
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module DatamigrationV1
|
|
18
18
|
# Version of the google-apis-datamigration_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.84.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 = "20260121"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -82,6 +82,12 @@ module Google
|
|
|
82
82
|
include Google::Apis::Core::JsonObjectSupport
|
|
83
83
|
end
|
|
84
84
|
|
|
85
|
+
class BadRequest
|
|
86
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
87
|
+
|
|
88
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
89
|
+
end
|
|
90
|
+
|
|
85
91
|
class BinaryLogParser
|
|
86
92
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
87
93
|
|
|
@@ -202,6 +208,12 @@ module Google
|
|
|
202
208
|
include Google::Apis::Core::JsonObjectSupport
|
|
203
209
|
end
|
|
204
210
|
|
|
211
|
+
class DebugInfo
|
|
212
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
213
|
+
|
|
214
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
215
|
+
end
|
|
216
|
+
|
|
205
217
|
class DemoteDestinationRequest
|
|
206
218
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
207
219
|
|
|
@@ -280,6 +292,12 @@ module Google
|
|
|
280
292
|
include Google::Apis::Core::JsonObjectSupport
|
|
281
293
|
end
|
|
282
294
|
|
|
295
|
+
class ErrorInfo
|
|
296
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
297
|
+
|
|
298
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
299
|
+
end
|
|
300
|
+
|
|
283
301
|
class Expr
|
|
284
302
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
285
303
|
|
|
@@ -292,6 +310,12 @@ module Google
|
|
|
292
310
|
include Google::Apis::Core::JsonObjectSupport
|
|
293
311
|
end
|
|
294
312
|
|
|
313
|
+
class FieldViolation
|
|
314
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
315
|
+
|
|
316
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
317
|
+
end
|
|
318
|
+
|
|
295
319
|
class FilterTableColumns
|
|
296
320
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
297
321
|
|
|
@@ -328,6 +352,12 @@ module Google
|
|
|
328
352
|
include Google::Apis::Core::JsonObjectSupport
|
|
329
353
|
end
|
|
330
354
|
|
|
355
|
+
class Help
|
|
356
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
357
|
+
|
|
358
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
359
|
+
end
|
|
360
|
+
|
|
331
361
|
class HeterogeneousMetadata
|
|
332
362
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
333
363
|
|
|
@@ -364,6 +394,12 @@ module Google
|
|
|
364
394
|
include Google::Apis::Core::JsonObjectSupport
|
|
365
395
|
end
|
|
366
396
|
|
|
397
|
+
class Link
|
|
398
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
399
|
+
|
|
400
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
401
|
+
end
|
|
402
|
+
|
|
367
403
|
class ListConnectionProfilesResponse
|
|
368
404
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
369
405
|
|
|
@@ -412,6 +448,12 @@ module Google
|
|
|
412
448
|
include Google::Apis::Core::JsonObjectSupport
|
|
413
449
|
end
|
|
414
450
|
|
|
451
|
+
class LocalizedMessage
|
|
452
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
453
|
+
|
|
454
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
455
|
+
end
|
|
456
|
+
|
|
415
457
|
class Location
|
|
416
458
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
417
459
|
|
|
@@ -586,6 +628,18 @@ module Google
|
|
|
586
628
|
include Google::Apis::Core::JsonObjectSupport
|
|
587
629
|
end
|
|
588
630
|
|
|
631
|
+
class PreconditionFailure
|
|
632
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
633
|
+
|
|
634
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
635
|
+
end
|
|
636
|
+
|
|
637
|
+
class PreconditionFailureViolation
|
|
638
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
639
|
+
|
|
640
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
641
|
+
end
|
|
642
|
+
|
|
589
643
|
class PrimaryInstanceSettings
|
|
590
644
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
591
645
|
|
|
@@ -622,6 +676,30 @@ module Google
|
|
|
622
676
|
include Google::Apis::Core::JsonObjectSupport
|
|
623
677
|
end
|
|
624
678
|
|
|
679
|
+
class QuotaFailure
|
|
680
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
681
|
+
|
|
682
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
683
|
+
end
|
|
684
|
+
|
|
685
|
+
class QuotaFailureViolation
|
|
686
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
687
|
+
|
|
688
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
689
|
+
end
|
|
690
|
+
|
|
691
|
+
class RequestInfo
|
|
692
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
693
|
+
|
|
694
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
695
|
+
end
|
|
696
|
+
|
|
697
|
+
class ResourceInfo
|
|
698
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
699
|
+
|
|
700
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
701
|
+
end
|
|
702
|
+
|
|
625
703
|
class RestartMigrationJobRequest
|
|
626
704
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
627
705
|
|
|
@@ -634,6 +712,12 @@ module Google
|
|
|
634
712
|
include Google::Apis::Core::JsonObjectSupport
|
|
635
713
|
end
|
|
636
714
|
|
|
715
|
+
class RetryInfo
|
|
716
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
717
|
+
|
|
718
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
719
|
+
end
|
|
720
|
+
|
|
637
721
|
class ReverseSshConnectivity
|
|
638
722
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
639
723
|
|
|
@@ -1066,6 +1150,14 @@ module Google
|
|
|
1066
1150
|
end
|
|
1067
1151
|
end
|
|
1068
1152
|
|
|
1153
|
+
class BadRequest
|
|
1154
|
+
# @private
|
|
1155
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1156
|
+
collection :field_violations, as: 'fieldViolations', class: Google::Apis::DatamigrationV1::FieldViolation, decorator: Google::Apis::DatamigrationV1::FieldViolation::Representation
|
|
1157
|
+
|
|
1158
|
+
end
|
|
1159
|
+
end
|
|
1160
|
+
|
|
1069
1161
|
class BinaryLogParser
|
|
1070
1162
|
# @private
|
|
1071
1163
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1342,6 +1434,14 @@ module Google
|
|
|
1342
1434
|
end
|
|
1343
1435
|
end
|
|
1344
1436
|
|
|
1437
|
+
class DebugInfo
|
|
1438
|
+
# @private
|
|
1439
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1440
|
+
property :detail, as: 'detail'
|
|
1441
|
+
collection :stack_entries, as: 'stackEntries'
|
|
1442
|
+
end
|
|
1443
|
+
end
|
|
1444
|
+
|
|
1345
1445
|
class DemoteDestinationRequest
|
|
1346
1446
|
# @private
|
|
1347
1447
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1458,6 +1558,15 @@ module Google
|
|
|
1458
1558
|
end
|
|
1459
1559
|
end
|
|
1460
1560
|
|
|
1561
|
+
class ErrorInfo
|
|
1562
|
+
# @private
|
|
1563
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1564
|
+
property :domain, as: 'domain'
|
|
1565
|
+
hash :metadata, as: 'metadata'
|
|
1566
|
+
property :reason, as: 'reason'
|
|
1567
|
+
end
|
|
1568
|
+
end
|
|
1569
|
+
|
|
1461
1570
|
class Expr
|
|
1462
1571
|
# @private
|
|
1463
1572
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1476,6 +1585,17 @@ module Google
|
|
|
1476
1585
|
end
|
|
1477
1586
|
end
|
|
1478
1587
|
|
|
1588
|
+
class FieldViolation
|
|
1589
|
+
# @private
|
|
1590
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1591
|
+
property :description, as: 'description'
|
|
1592
|
+
property :field, as: 'field'
|
|
1593
|
+
property :localized_message, as: 'localizedMessage', class: Google::Apis::DatamigrationV1::LocalizedMessage, decorator: Google::Apis::DatamigrationV1::LocalizedMessage::Representation
|
|
1594
|
+
|
|
1595
|
+
property :reason, as: 'reason'
|
|
1596
|
+
end
|
|
1597
|
+
end
|
|
1598
|
+
|
|
1479
1599
|
class FilterTableColumns
|
|
1480
1600
|
# @private
|
|
1481
1601
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1539,6 +1659,14 @@ module Google
|
|
|
1539
1659
|
end
|
|
1540
1660
|
end
|
|
1541
1661
|
|
|
1662
|
+
class Help
|
|
1663
|
+
# @private
|
|
1664
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1665
|
+
collection :links, as: 'links', class: Google::Apis::DatamigrationV1::Link, decorator: Google::Apis::DatamigrationV1::Link::Representation
|
|
1666
|
+
|
|
1667
|
+
end
|
|
1668
|
+
end
|
|
1669
|
+
|
|
1542
1670
|
class HeterogeneousMetadata
|
|
1543
1671
|
# @private
|
|
1544
1672
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1594,6 +1722,14 @@ module Google
|
|
|
1594
1722
|
end
|
|
1595
1723
|
end
|
|
1596
1724
|
|
|
1725
|
+
class Link
|
|
1726
|
+
# @private
|
|
1727
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1728
|
+
property :description, as: 'description'
|
|
1729
|
+
property :url, as: 'url'
|
|
1730
|
+
end
|
|
1731
|
+
end
|
|
1732
|
+
|
|
1597
1733
|
class ListConnectionProfilesResponse
|
|
1598
1734
|
# @private
|
|
1599
1735
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1671,6 +1807,14 @@ module Google
|
|
|
1671
1807
|
end
|
|
1672
1808
|
end
|
|
1673
1809
|
|
|
1810
|
+
class LocalizedMessage
|
|
1811
|
+
# @private
|
|
1812
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1813
|
+
property :locale, as: 'locale'
|
|
1814
|
+
property :message, as: 'message'
|
|
1815
|
+
end
|
|
1816
|
+
end
|
|
1817
|
+
|
|
1674
1818
|
class Location
|
|
1675
1819
|
# @private
|
|
1676
1820
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2063,6 +2207,23 @@ module Google
|
|
|
2063
2207
|
end
|
|
2064
2208
|
end
|
|
2065
2209
|
|
|
2210
|
+
class PreconditionFailure
|
|
2211
|
+
# @private
|
|
2212
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2213
|
+
collection :violations, as: 'violations', class: Google::Apis::DatamigrationV1::PreconditionFailureViolation, decorator: Google::Apis::DatamigrationV1::PreconditionFailureViolation::Representation
|
|
2214
|
+
|
|
2215
|
+
end
|
|
2216
|
+
end
|
|
2217
|
+
|
|
2218
|
+
class PreconditionFailureViolation
|
|
2219
|
+
# @private
|
|
2220
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2221
|
+
property :description, as: 'description'
|
|
2222
|
+
property :subject, as: 'subject'
|
|
2223
|
+
property :type, as: 'type'
|
|
2224
|
+
end
|
|
2225
|
+
end
|
|
2226
|
+
|
|
2066
2227
|
class PrimaryInstanceSettings
|
|
2067
2228
|
# @private
|
|
2068
2229
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2127,6 +2288,46 @@ module Google
|
|
|
2127
2288
|
end
|
|
2128
2289
|
end
|
|
2129
2290
|
|
|
2291
|
+
class QuotaFailure
|
|
2292
|
+
# @private
|
|
2293
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2294
|
+
collection :violations, as: 'violations', class: Google::Apis::DatamigrationV1::QuotaFailureViolation, decorator: Google::Apis::DatamigrationV1::QuotaFailureViolation::Representation
|
|
2295
|
+
|
|
2296
|
+
end
|
|
2297
|
+
end
|
|
2298
|
+
|
|
2299
|
+
class QuotaFailureViolation
|
|
2300
|
+
# @private
|
|
2301
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2302
|
+
property :api_service, as: 'apiService'
|
|
2303
|
+
property :description, as: 'description'
|
|
2304
|
+
property :future_quota_value, :numeric_string => true, as: 'futureQuotaValue'
|
|
2305
|
+
hash :quota_dimensions, as: 'quotaDimensions'
|
|
2306
|
+
property :quota_id, as: 'quotaId'
|
|
2307
|
+
property :quota_metric, as: 'quotaMetric'
|
|
2308
|
+
property :quota_value, :numeric_string => true, as: 'quotaValue'
|
|
2309
|
+
property :subject, as: 'subject'
|
|
2310
|
+
end
|
|
2311
|
+
end
|
|
2312
|
+
|
|
2313
|
+
class RequestInfo
|
|
2314
|
+
# @private
|
|
2315
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2316
|
+
property :request_id, as: 'requestId'
|
|
2317
|
+
property :serving_data, as: 'servingData'
|
|
2318
|
+
end
|
|
2319
|
+
end
|
|
2320
|
+
|
|
2321
|
+
class ResourceInfo
|
|
2322
|
+
# @private
|
|
2323
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2324
|
+
property :description, as: 'description'
|
|
2325
|
+
property :owner, as: 'owner'
|
|
2326
|
+
property :resource_name, as: 'resourceName'
|
|
2327
|
+
property :resource_type, as: 'resourceType'
|
|
2328
|
+
end
|
|
2329
|
+
end
|
|
2330
|
+
|
|
2130
2331
|
class RestartMigrationJobRequest
|
|
2131
2332
|
# @private
|
|
2132
2333
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2144,6 +2345,13 @@ module Google
|
|
|
2144
2345
|
end
|
|
2145
2346
|
end
|
|
2146
2347
|
|
|
2348
|
+
class RetryInfo
|
|
2349
|
+
# @private
|
|
2350
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2351
|
+
property :retry_delay, as: 'retryDelay'
|
|
2352
|
+
end
|
|
2353
|
+
end
|
|
2354
|
+
|
|
2147
2355
|
class ReverseSshConnectivity
|
|
2148
2356
|
# @private
|
|
2149
2357
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-datamigration_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.84.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-datamigration_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-datamigration_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-datamigration_v1/v0.84.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datamigration_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|