google-apis-migrationcenter_v1alpha1 0.27.0 → 0.28.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: 637c14bc27706ffb1faf0e60cab33463c2e6f044e82b9fa5ade4e27b742cede2
4
- data.tar.gz: ffdc594653a8d428a2fd07d3f43fae602aa65a9344cd1750ba30d1347ba80c8f
3
+ metadata.gz: 9494c46df3e824a5bd8d2016df05157bd8dc8f0f62c9172fb54e20da30ffbf30
4
+ data.tar.gz: 9c9c510563df8ad2cb64896d3c413af606c93139ee31e1c73562662837132daa
5
5
  SHA512:
6
- metadata.gz: e343f06cde141df1352d7113dcd581abb81054a92675fe1b60b9e7b3274a86e27ba166fe7ac4d23052cd9f1c6ea25fdc440741ad38520eb987ab5bd5a175a4a7
7
- data.tar.gz: 9973299dd78b5c6b194c8f6e8c77557685f6ae05cc4a282618a2ef363834e08192fe4fe9dfe0738185ce92c46009c0ed146bfdc3db18b50eeef894dbdf7cd15b
6
+ metadata.gz: 6dbcdc1536528ea73e88a17bd2bd796bbf7b1b42e330d8f4f0758df1de35c98ce5bedbe4913f9399d83bc9e81a356572695e11451d0303e3e514d0ff90140c5d
7
+ data.tar.gz: 6c094c711636c8198fd1e2f1517cdd147f9a9c02dfee5c860c8520011f7e4713c3874edd9da3825529fad64b465033b75ca70f4c389ac6939892ee494ca2db0f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-migrationcenter_v1alpha1
2
2
 
3
+ ### v0.28.0 (2024-05-05)
4
+
5
+ * Regenerated from discovery document revision 20240421
6
+
3
7
  ### v0.27.0 (2024-04-21)
4
8
 
5
9
  * Regenerated from discovery document revision 20240411
@@ -1551,11 +1551,6 @@ module Google
1551
1551
  class DatabaseInstance
1552
1552
  include Google::Apis::Core::Hashable
1553
1553
 
1554
- # Optional. The instance's hosts.
1555
- # Corresponds to the JSON property `hosts`
1556
- # @return [Array<Google::Apis::MigrationcenterV1alpha1::DatabaseInstanceHost>]
1557
- attr_accessor :hosts
1558
-
1559
1554
  # The instance's name.
1560
1555
  # Corresponds to the JSON property `instanceName`
1561
1556
  # @return [String]
@@ -1572,31 +1567,11 @@ module Google
1572
1567
 
1573
1568
  # Update properties of this object
1574
1569
  def update!(**args)
1575
- @hosts = args[:hosts] if args.key?(:hosts)
1576
1570
  @instance_name = args[:instance_name] if args.key?(:instance_name)
1577
1571
  @role = args[:role] if args.key?(:role)
1578
1572
  end
1579
1573
  end
1580
1574
 
1581
- # Details of a host of a database instance.
1582
- class DatabaseInstanceHost
1583
- include Google::Apis::Core::Hashable
1584
-
1585
- # Optional. The host name of the host.
1586
- # Corresponds to the JSON property `hostName`
1587
- # @return [String]
1588
- attr_accessor :host_name
1589
-
1590
- def initialize(**args)
1591
- update!(**args)
1592
- end
1593
-
1594
- # Update properties of this object
1595
- def update!(**args)
1596
- @host_name = args[:host_name] if args.key?(:host_name)
1597
- end
1598
- end
1599
-
1600
1575
  # Details of a group of database objects.
1601
1576
  class DatabaseObjects
1602
1577
  include Google::Apis::Core::Hashable
@@ -3972,27 +3947,8 @@ module Google
3972
3947
  end
3973
3948
  end
3974
3949
 
3975
- # Specific details for a Mysql database deployment.
3976
- class MysqlDatabaseDeployment
3977
- include Google::Apis::Core::Hashable
3978
-
3979
- # Optional. List of Mysql plugins.
3980
- # Corresponds to the JSON property `plugins`
3981
- # @return [Array<Google::Apis::MigrationcenterV1alpha1::MysqlPlugin>]
3982
- attr_accessor :plugins
3983
-
3984
- def initialize(**args)
3985
- update!(**args)
3986
- end
3987
-
3988
- # Update properties of this object
3989
- def update!(**args)
3990
- @plugins = args[:plugins] if args.key?(:plugins)
3991
- end
3992
- end
3993
-
3994
- # Mysql plugin.
3995
- class MysqlPlugin
3950
+ # MySql plugin.
3951
+ class MySqlPlugin
3996
3952
  include Google::Apis::Core::Hashable
3997
3953
 
3998
3954
  # Required. The plugin is active.
@@ -4023,6 +3979,25 @@ module Google
4023
3979
  end
4024
3980
  end
4025
3981
 
3982
+ # Specific details for a Mysql database deployment.
3983
+ class MysqlDatabaseDeployment
3984
+ include Google::Apis::Core::Hashable
3985
+
3986
+ # Optional. List of MySql plugins.
3987
+ # Corresponds to the JSON property `plugins`
3988
+ # @return [Array<Google::Apis::MigrationcenterV1alpha1::MySqlPlugin>]
3989
+ attr_accessor :plugins
3990
+
3991
+ def initialize(**args)
3992
+ update!(**args)
3993
+ end
3994
+
3995
+ # Update properties of this object
3996
+ def update!(**args)
3997
+ @plugins = args[:plugins] if args.key?(:plugins)
3998
+ end
3999
+ end
4000
+
4026
4001
  # Details of network adapter.
4027
4002
  class NetworkAdapterDetails
4028
4003
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module MigrationcenterV1alpha1
18
18
  # Version of the google-apis-migrationcenter_v1alpha1 gem
19
- GEM_VERSION = "0.27.0"
19
+ GEM_VERSION = "0.28.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240411"
25
+ REVISION = "20240421"
26
26
  end
27
27
  end
28
28
  end
@@ -304,12 +304,6 @@ module Google
304
304
  include Google::Apis::Core::JsonObjectSupport
305
305
  end
306
306
 
307
- class DatabaseInstanceHost
308
- class Representation < Google::Apis::Core::JsonRepresentation; end
309
-
310
- include Google::Apis::Core::JsonObjectSupport
311
- end
312
-
313
307
  class DatabaseObjects
314
308
  class Representation < Google::Apis::Core::JsonRepresentation; end
315
309
 
@@ -724,13 +718,13 @@ module Google
724
718
  include Google::Apis::Core::JsonObjectSupport
725
719
  end
726
720
 
727
- class MysqlDatabaseDeployment
721
+ class MySqlPlugin
728
722
  class Representation < Google::Apis::Core::JsonRepresentation; end
729
723
 
730
724
  include Google::Apis::Core::JsonObjectSupport
731
725
  end
732
726
 
733
- class MysqlPlugin
727
+ class MysqlDatabaseDeployment
734
728
  class Representation < Google::Apis::Core::JsonRepresentation; end
735
729
 
736
730
  include Google::Apis::Core::JsonObjectSupport
@@ -1669,20 +1663,11 @@ module Google
1669
1663
  class DatabaseInstance
1670
1664
  # @private
1671
1665
  class Representation < Google::Apis::Core::JsonRepresentation
1672
- collection :hosts, as: 'hosts', class: Google::Apis::MigrationcenterV1alpha1::DatabaseInstanceHost, decorator: Google::Apis::MigrationcenterV1alpha1::DatabaseInstanceHost::Representation
1673
-
1674
1666
  property :instance_name, as: 'instanceName'
1675
1667
  property :role, as: 'role'
1676
1668
  end
1677
1669
  end
1678
1670
 
1679
- class DatabaseInstanceHost
1680
- # @private
1681
- class Representation < Google::Apis::Core::JsonRepresentation
1682
- property :host_name, as: 'hostName'
1683
- end
1684
- end
1685
-
1686
1671
  class DatabaseObjects
1687
1672
  # @private
1688
1673
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2401,20 +2386,20 @@ module Google
2401
2386
  end
2402
2387
  end
2403
2388
 
2404
- class MysqlDatabaseDeployment
2389
+ class MySqlPlugin
2405
2390
  # @private
2406
2391
  class Representation < Google::Apis::Core::JsonRepresentation
2407
- collection :plugins, as: 'plugins', class: Google::Apis::MigrationcenterV1alpha1::MysqlPlugin, decorator: Google::Apis::MigrationcenterV1alpha1::MysqlPlugin::Representation
2408
-
2392
+ property :enabled, as: 'enabled'
2393
+ property :plugin, as: 'plugin'
2394
+ property :version, as: 'version'
2409
2395
  end
2410
2396
  end
2411
2397
 
2412
- class MysqlPlugin
2398
+ class MysqlDatabaseDeployment
2413
2399
  # @private
2414
2400
  class Representation < Google::Apis::Core::JsonRepresentation
2415
- property :enabled, as: 'enabled'
2416
- property :plugin, as: 'plugin'
2417
- property :version, as: 'version'
2401
+ collection :plugins, as: 'plugins', class: Google::Apis::MigrationcenterV1alpha1::MySqlPlugin, decorator: Google::Apis::MigrationcenterV1alpha1::MySqlPlugin::Representation
2402
+
2418
2403
  end
2419
2404
  end
2420
2405
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-migrationcenter_v1alpha1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.27.0
4
+ version: 0.28.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-04-21 00:00:00.000000000 Z
11
+ date: 2024-05-05 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-migrationcenter_v1alpha1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-migrationcenter_v1alpha1/v0.27.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-migrationcenter_v1alpha1/v0.28.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-migrationcenter_v1alpha1
63
63
  post_install_message:
64
64
  rdoc_options: []