google-apis-datamigration_v1 0.33.0 → 0.35.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: 9f0faddae537a20cf1de16b36f96f35ff98843ed1cebad5b03409b7fa444ac78
4
- data.tar.gz: 373590e2d84be58c68efd55521888b5329474364a4313e04ff9f5597c55dcd96
3
+ metadata.gz: 4e0016d0474e874ede9d0c20859668bfea3e66069b6a4ae5b540dd4d9fd54767
4
+ data.tar.gz: c20dcebd4e0515317befc2ff30d1f44c1f6ed23de0bc16c16ed9154f1817905b
5
5
  SHA512:
6
- metadata.gz: 1772af26672851727755a12f6780bd391f1857607021b58fd743d36f5383680e4858ff7aa853773cca57d477a5c229122e0d3d3b69948ce91aaf61918d432590
7
- data.tar.gz: 13c4a41fdbfc1c57a52d911290754e874c2dd901f9a3d14e899cd163b53c954e655a7c58d720d474756bd553ffdb3b03a8ab98ab69f63fe7d79e9b378e250ffb
6
+ metadata.gz: edecc1fb13ceae61cdd59cc5c950acd25e1c8729f01f65e73369a5d9574079b067cc6ef7aa5a86f629e6669ab1457e7ca75f6ebb2c8d4ebc6edaf34cc725b0fc
7
+ data.tar.gz: be419e2e419f699e8198fa49d8603b53374fce895a59e0d4c64f492adedeb919f864bf1c2ea4b67c7e8934522bbff0154037db651313b7b5b7e48bd980a5cdea
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-datamigration_v1
2
2
 
3
+ ### v0.35.0 (2023-04-30)
4
+
5
+ * Regenerated from discovery document revision 20230420
6
+
7
+ ### v0.34.0 (2023-04-16)
8
+
9
+ * Regenerated from discovery document revision 20230405
10
+
3
11
  ### v0.33.0 (2023-04-02)
4
12
 
5
13
  * Regenerated from discovery document revision 20230320
@@ -1344,6 +1344,11 @@ module Google
1344
1344
  # @return [String]
1345
1345
  attr_accessor :draft_entity
1346
1346
 
1347
+ # Type of draft entity.
1348
+ # Corresponds to the JSON property `draftType`
1349
+ # @return [String]
1350
+ attr_accessor :draft_type
1351
+
1347
1352
  # Entity mapping log entries. Multiple rules can be effective and contribute
1348
1353
  # changes to a converted entity, such as a rule can handle the entity name,
1349
1354
  # another rule can handle an entity type. In addition, rules which did not
@@ -1359,6 +1364,11 @@ module Google
1359
1364
  # @return [String]
1360
1365
  attr_accessor :source_entity
1361
1366
 
1367
+ # Type of source entity.
1368
+ # Corresponds to the JSON property `sourceType`
1369
+ # @return [String]
1370
+ attr_accessor :source_type
1371
+
1362
1372
  def initialize(**args)
1363
1373
  update!(**args)
1364
1374
  end
@@ -1366,8 +1376,10 @@ module Google
1366
1376
  # Update properties of this object
1367
1377
  def update!(**args)
1368
1378
  @draft_entity = args[:draft_entity] if args.key?(:draft_entity)
1379
+ @draft_type = args[:draft_type] if args.key?(:draft_type)
1369
1380
  @mapping_log = args[:mapping_log] if args.key?(:mapping_log)
1370
1381
  @source_entity = args[:source_entity] if args.key?(:source_entity)
1382
+ @source_type = args[:source_type] if args.key?(:source_type)
1371
1383
  end
1372
1384
  end
1373
1385
 
@@ -1928,7 +1940,7 @@ module Google
1928
1940
  end
1929
1941
  end
1930
1942
 
1931
- # A resource that represents Google Cloud Platform location.
1943
+ # A resource that represents a Google Cloud location.
1932
1944
  class Location
1933
1945
  include Google::Apis::Core::Hashable
1934
1946
 
@@ -3140,6 +3152,16 @@ module Google
3140
3152
  class SqlIpConfig
3141
3153
  include Google::Apis::Core::Hashable
3142
3154
 
3155
+ # Optional. The name of the allocated IP address range for the private IP Cloud
3156
+ # SQL instance. This name refers to an already allocated IP range address. If
3157
+ # set, the instance IP address will be created in the allocated range. Note that
3158
+ # this IP address range can't be modified after the instance is created. If you
3159
+ # change the VPC when configuring connectivity settings for the migration job,
3160
+ # this field is not relevant.
3161
+ # Corresponds to the JSON property `allocatedIpRange`
3162
+ # @return [String]
3163
+ attr_accessor :allocated_ip_range
3164
+
3143
3165
  # The list of external networks that are allowed to connect to the instance
3144
3166
  # using the IP. See https://en.wikipedia.org/wiki/CIDR_notation#CIDR_notation,
3145
3167
  # also known as 'slash' notation (e.g. `192.168.100.0/24`).
@@ -3173,6 +3195,7 @@ module Google
3173
3195
 
3174
3196
  # Update properties of this object
3175
3197
  def update!(**args)
3198
+ @allocated_ip_range = args[:allocated_ip_range] if args.key?(:allocated_ip_range)
3176
3199
  @authorized_networks = args[:authorized_networks] if args.key?(:authorized_networks)
3177
3200
  @enable_ipv4 = args[:enable_ipv4] if args.key?(:enable_ipv4)
3178
3201
  @private_network = args[:private_network] if args.key?(:private_network)
@@ -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.33.0"
19
+ GEM_VERSION = "0.35.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230320"
25
+ REVISION = "20230420"
26
26
  end
27
27
  end
28
28
  end
@@ -914,9 +914,11 @@ module Google
914
914
  # @private
915
915
  class Representation < Google::Apis::Core::JsonRepresentation
916
916
  property :draft_entity, as: 'draftEntity'
917
+ property :draft_type, as: 'draftType'
917
918
  collection :mapping_log, as: 'mappingLog', class: Google::Apis::DatamigrationV1::EntityMappingLogEntry, decorator: Google::Apis::DatamigrationV1::EntityMappingLogEntry::Representation
918
919
 
919
920
  property :source_entity, as: 'sourceEntity'
921
+ property :source_type, as: 'sourceType'
920
922
  end
921
923
  end
922
924
 
@@ -1375,6 +1377,7 @@ module Google
1375
1377
  class SqlIpConfig
1376
1378
  # @private
1377
1379
  class Representation < Google::Apis::Core::JsonRepresentation
1380
+ property :allocated_ip_range, as: 'allocatedIpRange'
1378
1381
  collection :authorized_networks, as: 'authorizedNetworks', class: Google::Apis::DatamigrationV1::SqlAclEntry, decorator: Google::Apis::DatamigrationV1::SqlAclEntry::Representation
1379
1382
 
1380
1383
  property :enable_ipv4, as: 'enableIpv4'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-datamigration_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.33.0
4
+ version: 0.35.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: 2023-04-02 00:00:00.000000000 Z
11
+ date: 2023-04-30 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-datamigration_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-datamigration_v1/v0.33.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datamigration_v1/v0.35.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datamigration_v1
63
63
  post_install_message:
64
64
  rdoc_options: []