google-cloud-bigquery-migration-v2 0.13.0 → 0.14.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bdd242a149eabac8b5605ab39c8f107a2ea78f9151eea7664372a8651880d14b
4
- data.tar.gz: 3a4b7fe4413096157a93d23ed722d5a235faf53b11a9a08e1331c4f2d9db87a8
3
+ metadata.gz: 7e5400f7626047d498095354e3a8f93ea15d06335831c30d4fcaa55aea8112c6
4
+ data.tar.gz: 6f43e5ec2d8a88130ddcfe3706021be1f39ccc2ddc94cc1230e0544ef9269973
5
5
  SHA512:
6
- metadata.gz: be6c76abfdf16cb1ffcf711ae84b429f91c62fcbcde2e02d89efd6df2fb99beba9efbf29b49908c059f77551035d2939851fb2025e3b9cddc4b63c51f8ef8ddf
7
- data.tar.gz: 9170d967ccadc4a2ec4be016f7753381b574c2e8ea2cd6209fe77b84971b83c77da81b02d3d1cd95f6acf701511724337e7bf26ccaf1cf4188fb62d92892aa62
6
+ metadata.gz: f247d674c77d809e206d4f98a5726a611f6251144b1cccdfe64982916c36fdc54e311ad09e348a6ffe6450666f3cd2bfd966a7f50723b8d3bf8cd58f117b40b4
7
+ data.tar.gz: 265a49f4ab16c6c48ad25a9df6c53c16f73ef2dbf61ae026d002fd6aacce8f88b34452c2b321d0defa7c78f4d61f19a1b5aa72e4df0e3903bc784f17db999f28
data/README.md CHANGED
@@ -86,7 +86,7 @@ To browse ready to use code samples check [Google Cloud Samples](https://cloud.g
86
86
 
87
87
  ## Supported Ruby Versions
88
88
 
89
- This library is supported on Ruby 2.7+.
89
+ This library is supported on Ruby 3.0+.
90
90
 
91
91
  Google provides official support for Ruby versions that are actively supported
92
92
  by Ruby Core—that is, Ruby versions that are either in normal maintenance or
@@ -896,6 +896,13 @@ module Google
896
896
  # * (`GRPC::Core::Channel`) a gRPC channel with included credentials
897
897
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
898
898
  # * (`nil`) indicating no credentials
899
+ #
900
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
901
+ # external source for authentication to Google Cloud, you must validate it before
902
+ # providing it to a Google API client library. Providing an unvalidated credential
903
+ # configuration to Google APIs can compromise the security of your systems and data.
904
+ # For more information, refer to [Validate credential configurations from external
905
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
899
906
  # @return [::Object]
900
907
  # @!attribute [rw] scope
901
908
  # The OAuth scopes
@@ -838,6 +838,13 @@ module Google
838
838
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
839
839
  # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
840
840
  # * (`nil`) indicating no credentials
841
+ #
842
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
843
+ # external source for authentication to Google Cloud, you must validate it before
844
+ # providing it to a Google API client library. Providing an unvalidated credential
845
+ # configuration to Google APIs can compromise the security of your systems and data.
846
+ # For more information, refer to [Validate credential configurations from external
847
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
841
848
  # @return [::Object]
842
849
  # @!attribute [rw] scope
843
850
  # The OAuth scopes
@@ -22,7 +22,7 @@ module Google
22
22
  module Bigquery
23
23
  module Migration
24
24
  module V2
25
- VERSION = "0.13.0"
25
+ VERSION = "0.14.0"
26
26
  end
27
27
  end
28
28
  end
@@ -115,12 +115,18 @@ module Google
115
115
  # @!attribute [rw] linear_buckets
116
116
  # @return [::Google::Api::Distribution::BucketOptions::Linear]
117
117
  # The linear bucket.
118
+ #
119
+ # Note: The following fields are mutually exclusive: `linear_buckets`, `exponential_buckets`, `explicit_buckets`. If a field in that set is populated, all other fields in the set will automatically be cleared.
118
120
  # @!attribute [rw] exponential_buckets
119
121
  # @return [::Google::Api::Distribution::BucketOptions::Exponential]
120
122
  # The exponential buckets.
123
+ #
124
+ # Note: The following fields are mutually exclusive: `exponential_buckets`, `linear_buckets`, `explicit_buckets`. If a field in that set is populated, all other fields in the set will automatically be cleared.
121
125
  # @!attribute [rw] explicit_buckets
122
126
  # @return [::Google::Api::Distribution::BucketOptions::Explicit]
123
127
  # The explicit buckets.
128
+ #
129
+ # Note: The following fields are mutually exclusive: `explicit_buckets`, `linear_buckets`, `exponential_buckets`. If a field in that set is populated, all other fields in the set will automatically be cleared.
124
130
  class BucketOptions
125
131
  include ::Google::Protobuf::MessageExts
126
132
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -89,9 +89,13 @@ module Google
89
89
  # @!attribute [rw] translation_config_details
90
90
  # @return [::Google::Cloud::Bigquery::Migration::V2::TranslationConfigDetails]
91
91
  # Task configuration for CW Batch/Offline SQL Translation.
92
+ #
93
+ # Note: The following fields are mutually exclusive: `translation_config_details`, `translation_details`. If a field in that set is populated, all other fields in the set will automatically be cleared.
92
94
  # @!attribute [rw] translation_details
93
95
  # @return [::Google::Cloud::Bigquery::Migration::V2::TranslationDetails]
94
96
  # Task details for unified SQL Translation.
97
+ #
98
+ # Note: The following fields are mutually exclusive: `translation_details`, `translation_config_details`. If a field in that set is populated, all other fields in the set will automatically be cleared.
95
99
  # @!attribute [r] id
96
100
  # @return [::String]
97
101
  # Output only. Immutable. The unique identifier for the migration task. The
@@ -94,20 +94,30 @@ module Google
94
94
  # @!attribute [rw] bool_value
95
95
  # @return [::Boolean]
96
96
  # A Boolean value: `true` or `false`.
97
+ #
98
+ # Note: The following fields are mutually exclusive: `bool_value`, `int64_value`, `double_value`, `string_value`, `distribution_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
97
99
  # @!attribute [rw] int64_value
98
100
  # @return [::Integer]
99
101
  # A 64-bit integer. Its range is approximately `+/-9.2x10^18`.
102
+ #
103
+ # Note: The following fields are mutually exclusive: `int64_value`, `bool_value`, `double_value`, `string_value`, `distribution_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
100
104
  # @!attribute [rw] double_value
101
105
  # @return [::Float]
102
106
  # A 64-bit double-precision floating-point number. Its magnitude
103
107
  # is approximately `+/-10^(+/-300)` and it has 16 significant digits of
104
108
  # precision.
109
+ #
110
+ # Note: The following fields are mutually exclusive: `double_value`, `bool_value`, `int64_value`, `string_value`, `distribution_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
105
111
  # @!attribute [rw] string_value
106
112
  # @return [::String]
107
113
  # A variable-length string value.
114
+ #
115
+ # Note: The following fields are mutually exclusive: `string_value`, `bool_value`, `int64_value`, `double_value`, `distribution_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
108
116
  # @!attribute [rw] distribution_value
109
117
  # @return [::Google::Api::Distribution]
110
118
  # A distribution value.
119
+ #
120
+ # Note: The following fields are mutually exclusive: `distribution_value`, `bool_value`, `int64_value`, `double_value`, `string_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
111
121
  class TypedValue
112
122
  include ::Google::Protobuf::MessageExts
113
123
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -60,54 +60,88 @@ module Google
60
60
  # @!attribute [rw] bigquery_dialect
61
61
  # @return [::Google::Cloud::Bigquery::Migration::V2::BigQueryDialect]
62
62
  # The BigQuery dialect
63
+ #
64
+ # Note: The following fields are mutually exclusive: `bigquery_dialect`, `hiveql_dialect`, `redshift_dialect`, `teradata_dialect`, `oracle_dialect`, `sparksql_dialect`, `snowflake_dialect`, `netezza_dialect`, `azure_synapse_dialect`, `vertica_dialect`, `sql_server_dialect`, `postgresql_dialect`, `presto_dialect`, `mysql_dialect`, `db2_dialect`, `sqlite_dialect`, `greenplum_dialect`. If a field in that set is populated, all other fields in the set will automatically be cleared.
63
65
  # @!attribute [rw] hiveql_dialect
64
66
  # @return [::Google::Cloud::Bigquery::Migration::V2::HiveQLDialect]
65
67
  # The HiveQL dialect
68
+ #
69
+ # Note: The following fields are mutually exclusive: `hiveql_dialect`, `bigquery_dialect`, `redshift_dialect`, `teradata_dialect`, `oracle_dialect`, `sparksql_dialect`, `snowflake_dialect`, `netezza_dialect`, `azure_synapse_dialect`, `vertica_dialect`, `sql_server_dialect`, `postgresql_dialect`, `presto_dialect`, `mysql_dialect`, `db2_dialect`, `sqlite_dialect`, `greenplum_dialect`. If a field in that set is populated, all other fields in the set will automatically be cleared.
66
70
  # @!attribute [rw] redshift_dialect
67
71
  # @return [::Google::Cloud::Bigquery::Migration::V2::RedshiftDialect]
68
72
  # The Redshift dialect
73
+ #
74
+ # Note: The following fields are mutually exclusive: `redshift_dialect`, `bigquery_dialect`, `hiveql_dialect`, `teradata_dialect`, `oracle_dialect`, `sparksql_dialect`, `snowflake_dialect`, `netezza_dialect`, `azure_synapse_dialect`, `vertica_dialect`, `sql_server_dialect`, `postgresql_dialect`, `presto_dialect`, `mysql_dialect`, `db2_dialect`, `sqlite_dialect`, `greenplum_dialect`. If a field in that set is populated, all other fields in the set will automatically be cleared.
69
75
  # @!attribute [rw] teradata_dialect
70
76
  # @return [::Google::Cloud::Bigquery::Migration::V2::TeradataDialect]
71
77
  # The Teradata dialect
78
+ #
79
+ # Note: The following fields are mutually exclusive: `teradata_dialect`, `bigquery_dialect`, `hiveql_dialect`, `redshift_dialect`, `oracle_dialect`, `sparksql_dialect`, `snowflake_dialect`, `netezza_dialect`, `azure_synapse_dialect`, `vertica_dialect`, `sql_server_dialect`, `postgresql_dialect`, `presto_dialect`, `mysql_dialect`, `db2_dialect`, `sqlite_dialect`, `greenplum_dialect`. If a field in that set is populated, all other fields in the set will automatically be cleared.
72
80
  # @!attribute [rw] oracle_dialect
73
81
  # @return [::Google::Cloud::Bigquery::Migration::V2::OracleDialect]
74
82
  # The Oracle dialect
83
+ #
84
+ # Note: The following fields are mutually exclusive: `oracle_dialect`, `bigquery_dialect`, `hiveql_dialect`, `redshift_dialect`, `teradata_dialect`, `sparksql_dialect`, `snowflake_dialect`, `netezza_dialect`, `azure_synapse_dialect`, `vertica_dialect`, `sql_server_dialect`, `postgresql_dialect`, `presto_dialect`, `mysql_dialect`, `db2_dialect`, `sqlite_dialect`, `greenplum_dialect`. If a field in that set is populated, all other fields in the set will automatically be cleared.
75
85
  # @!attribute [rw] sparksql_dialect
76
86
  # @return [::Google::Cloud::Bigquery::Migration::V2::SparkSQLDialect]
77
87
  # The SparkSQL dialect
88
+ #
89
+ # Note: The following fields are mutually exclusive: `sparksql_dialect`, `bigquery_dialect`, `hiveql_dialect`, `redshift_dialect`, `teradata_dialect`, `oracle_dialect`, `snowflake_dialect`, `netezza_dialect`, `azure_synapse_dialect`, `vertica_dialect`, `sql_server_dialect`, `postgresql_dialect`, `presto_dialect`, `mysql_dialect`, `db2_dialect`, `sqlite_dialect`, `greenplum_dialect`. If a field in that set is populated, all other fields in the set will automatically be cleared.
78
90
  # @!attribute [rw] snowflake_dialect
79
91
  # @return [::Google::Cloud::Bigquery::Migration::V2::SnowflakeDialect]
80
92
  # The Snowflake dialect
93
+ #
94
+ # Note: The following fields are mutually exclusive: `snowflake_dialect`, `bigquery_dialect`, `hiveql_dialect`, `redshift_dialect`, `teradata_dialect`, `oracle_dialect`, `sparksql_dialect`, `netezza_dialect`, `azure_synapse_dialect`, `vertica_dialect`, `sql_server_dialect`, `postgresql_dialect`, `presto_dialect`, `mysql_dialect`, `db2_dialect`, `sqlite_dialect`, `greenplum_dialect`. If a field in that set is populated, all other fields in the set will automatically be cleared.
81
95
  # @!attribute [rw] netezza_dialect
82
96
  # @return [::Google::Cloud::Bigquery::Migration::V2::NetezzaDialect]
83
97
  # The Netezza dialect
98
+ #
99
+ # Note: The following fields are mutually exclusive: `netezza_dialect`, `bigquery_dialect`, `hiveql_dialect`, `redshift_dialect`, `teradata_dialect`, `oracle_dialect`, `sparksql_dialect`, `snowflake_dialect`, `azure_synapse_dialect`, `vertica_dialect`, `sql_server_dialect`, `postgresql_dialect`, `presto_dialect`, `mysql_dialect`, `db2_dialect`, `sqlite_dialect`, `greenplum_dialect`. If a field in that set is populated, all other fields in the set will automatically be cleared.
84
100
  # @!attribute [rw] azure_synapse_dialect
85
101
  # @return [::Google::Cloud::Bigquery::Migration::V2::AzureSynapseDialect]
86
102
  # The Azure Synapse dialect
103
+ #
104
+ # Note: The following fields are mutually exclusive: `azure_synapse_dialect`, `bigquery_dialect`, `hiveql_dialect`, `redshift_dialect`, `teradata_dialect`, `oracle_dialect`, `sparksql_dialect`, `snowflake_dialect`, `netezza_dialect`, `vertica_dialect`, `sql_server_dialect`, `postgresql_dialect`, `presto_dialect`, `mysql_dialect`, `db2_dialect`, `sqlite_dialect`, `greenplum_dialect`. If a field in that set is populated, all other fields in the set will automatically be cleared.
87
105
  # @!attribute [rw] vertica_dialect
88
106
  # @return [::Google::Cloud::Bigquery::Migration::V2::VerticaDialect]
89
107
  # The Vertica dialect
108
+ #
109
+ # Note: The following fields are mutually exclusive: `vertica_dialect`, `bigquery_dialect`, `hiveql_dialect`, `redshift_dialect`, `teradata_dialect`, `oracle_dialect`, `sparksql_dialect`, `snowflake_dialect`, `netezza_dialect`, `azure_synapse_dialect`, `sql_server_dialect`, `postgresql_dialect`, `presto_dialect`, `mysql_dialect`, `db2_dialect`, `sqlite_dialect`, `greenplum_dialect`. If a field in that set is populated, all other fields in the set will automatically be cleared.
90
110
  # @!attribute [rw] sql_server_dialect
91
111
  # @return [::Google::Cloud::Bigquery::Migration::V2::SQLServerDialect]
92
112
  # The SQL Server dialect
113
+ #
114
+ # Note: The following fields are mutually exclusive: `sql_server_dialect`, `bigquery_dialect`, `hiveql_dialect`, `redshift_dialect`, `teradata_dialect`, `oracle_dialect`, `sparksql_dialect`, `snowflake_dialect`, `netezza_dialect`, `azure_synapse_dialect`, `vertica_dialect`, `postgresql_dialect`, `presto_dialect`, `mysql_dialect`, `db2_dialect`, `sqlite_dialect`, `greenplum_dialect`. If a field in that set is populated, all other fields in the set will automatically be cleared.
93
115
  # @!attribute [rw] postgresql_dialect
94
116
  # @return [::Google::Cloud::Bigquery::Migration::V2::PostgresqlDialect]
95
117
  # The Postgresql dialect
118
+ #
119
+ # Note: The following fields are mutually exclusive: `postgresql_dialect`, `bigquery_dialect`, `hiveql_dialect`, `redshift_dialect`, `teradata_dialect`, `oracle_dialect`, `sparksql_dialect`, `snowflake_dialect`, `netezza_dialect`, `azure_synapse_dialect`, `vertica_dialect`, `sql_server_dialect`, `presto_dialect`, `mysql_dialect`, `db2_dialect`, `sqlite_dialect`, `greenplum_dialect`. If a field in that set is populated, all other fields in the set will automatically be cleared.
96
120
  # @!attribute [rw] presto_dialect
97
121
  # @return [::Google::Cloud::Bigquery::Migration::V2::PrestoDialect]
98
122
  # The Presto dialect
123
+ #
124
+ # Note: The following fields are mutually exclusive: `presto_dialect`, `bigquery_dialect`, `hiveql_dialect`, `redshift_dialect`, `teradata_dialect`, `oracle_dialect`, `sparksql_dialect`, `snowflake_dialect`, `netezza_dialect`, `azure_synapse_dialect`, `vertica_dialect`, `sql_server_dialect`, `postgresql_dialect`, `mysql_dialect`, `db2_dialect`, `sqlite_dialect`, `greenplum_dialect`. If a field in that set is populated, all other fields in the set will automatically be cleared.
99
125
  # @!attribute [rw] mysql_dialect
100
126
  # @return [::Google::Cloud::Bigquery::Migration::V2::MySQLDialect]
101
127
  # The MySQL dialect
128
+ #
129
+ # Note: The following fields are mutually exclusive: `mysql_dialect`, `bigquery_dialect`, `hiveql_dialect`, `redshift_dialect`, `teradata_dialect`, `oracle_dialect`, `sparksql_dialect`, `snowflake_dialect`, `netezza_dialect`, `azure_synapse_dialect`, `vertica_dialect`, `sql_server_dialect`, `postgresql_dialect`, `presto_dialect`, `db2_dialect`, `sqlite_dialect`, `greenplum_dialect`. If a field in that set is populated, all other fields in the set will automatically be cleared.
102
130
  # @!attribute [rw] db2_dialect
103
131
  # @return [::Google::Cloud::Bigquery::Migration::V2::DB2Dialect]
104
132
  # DB2 dialect
133
+ #
134
+ # Note: The following fields are mutually exclusive: `db2_dialect`, `bigquery_dialect`, `hiveql_dialect`, `redshift_dialect`, `teradata_dialect`, `oracle_dialect`, `sparksql_dialect`, `snowflake_dialect`, `netezza_dialect`, `azure_synapse_dialect`, `vertica_dialect`, `sql_server_dialect`, `postgresql_dialect`, `presto_dialect`, `mysql_dialect`, `sqlite_dialect`, `greenplum_dialect`. If a field in that set is populated, all other fields in the set will automatically be cleared.
105
135
  # @!attribute [rw] sqlite_dialect
106
136
  # @return [::Google::Cloud::Bigquery::Migration::V2::SQLiteDialect]
107
137
  # SQLite dialect
138
+ #
139
+ # Note: The following fields are mutually exclusive: `sqlite_dialect`, `bigquery_dialect`, `hiveql_dialect`, `redshift_dialect`, `teradata_dialect`, `oracle_dialect`, `sparksql_dialect`, `snowflake_dialect`, `netezza_dialect`, `azure_synapse_dialect`, `vertica_dialect`, `sql_server_dialect`, `postgresql_dialect`, `presto_dialect`, `mysql_dialect`, `db2_dialect`, `greenplum_dialect`. If a field in that set is populated, all other fields in the set will automatically be cleared.
108
140
  # @!attribute [rw] greenplum_dialect
109
141
  # @return [::Google::Cloud::Bigquery::Migration::V2::GreenplumDialect]
110
142
  # Greenplum dialect
143
+ #
144
+ # Note: The following fields are mutually exclusive: `greenplum_dialect`, `bigquery_dialect`, `hiveql_dialect`, `redshift_dialect`, `teradata_dialect`, `oracle_dialect`, `sparksql_dialect`, `snowflake_dialect`, `netezza_dialect`, `azure_synapse_dialect`, `vertica_dialect`, `sql_server_dialect`, `postgresql_dialect`, `presto_dialect`, `mysql_dialect`, `db2_dialect`, `sqlite_dialect`. If a field in that set is populated, all other fields in the set will automatically be cleared.
111
145
  class Dialect
112
146
  include ::Google::Protobuf::MessageExts
113
147
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -65,9 +65,13 @@ module Google
65
65
  # @!attribute [rw] base_uri
66
66
  # @return [::String]
67
67
  # The base URI for all files to be read in as sources for translation.
68
+ #
69
+ # Note: The following fields are mutually exclusive: `base_uri`, `literal`. If a field in that set is populated, all other fields in the set will automatically be cleared.
68
70
  # @!attribute [rw] literal
69
71
  # @return [::Google::Cloud::Bigquery::Migration::V2::Literal]
70
72
  # Source literal.
73
+ #
74
+ # Note: The following fields are mutually exclusive: `literal`, `base_uri`. If a field in that set is populated, all other fields in the set will automatically be cleared.
71
75
  # @!attribute [rw] encoding
72
76
  # @return [::String]
73
77
  # Optional. The optional field to specify the encoding of the sql bytes.
@@ -91,9 +95,13 @@ module Google
91
95
  # @!attribute [rw] literal_string
92
96
  # @return [::String]
93
97
  # Literal string data.
98
+ #
99
+ # Note: The following fields are mutually exclusive: `literal_string`, `literal_bytes`. If a field in that set is populated, all other fields in the set will automatically be cleared.
94
100
  # @!attribute [rw] literal_bytes
95
101
  # @return [::String]
96
102
  # Literal byte data.
103
+ #
104
+ # Note: The following fields are mutually exclusive: `literal_bytes`, `literal_string`. If a field in that set is populated, all other fields in the set will automatically be cleared.
97
105
  # @!attribute [rw] relative_path
98
106
  # @return [::String]
99
107
  # Required. The identifier of the literal entry.
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-bigquery-migration-v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.0
4
+ version: 0.14.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2025-01-08 00:00:00.000000000 Z
10
+ date: 2025-01-29 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: gapic-common
@@ -16,7 +15,7 @@ dependencies:
16
15
  requirements:
17
16
  - - ">="
18
17
  - !ruby/object:Gem::Version
19
- version: 0.24.0
18
+ version: 0.25.0
20
19
  - - "<"
21
20
  - !ruby/object:Gem::Version
22
21
  version: 2.a
@@ -26,7 +25,7 @@ dependencies:
26
25
  requirements:
27
26
  - - ">="
28
27
  - !ruby/object:Gem::Version
29
- version: 0.24.0
28
+ version: 0.25.0
30
29
  - - "<"
31
30
  - !ruby/object:Gem::Version
32
31
  version: 2.a
@@ -104,7 +103,6 @@ homepage: https://github.com/googleapis/google-cloud-ruby
104
103
  licenses:
105
104
  - Apache-2.0
106
105
  metadata: {}
107
- post_install_message:
108
106
  rdoc_options: []
109
107
  require_paths:
110
108
  - lib
@@ -112,15 +110,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
112
110
  requirements:
113
111
  - - ">="
114
112
  - !ruby/object:Gem::Version
115
- version: '2.7'
113
+ version: '3.0'
116
114
  required_rubygems_version: !ruby/object:Gem::Requirement
117
115
  requirements:
118
116
  - - ">="
119
117
  - !ruby/object:Gem::Version
120
118
  version: '0'
121
119
  requirements: []
122
- rubygems_version: 3.5.23
123
- signing_key:
120
+ rubygems_version: 3.6.2
124
121
  specification_version: 4
125
122
  summary: The migration service, exposing apis for migration jobs operations, and agent
126
123
  management.