google-apis-migrationcenter_v1alpha1 0.18.0 → 0.19.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: bffc4c6c6b8ce32500246fc21577410414d271efac31bfb57f520f8614bfebea
4
- data.tar.gz: 2f9deb2098351135abf7a91d2fd23364eb6e534f2144f3dfdcdf2778a5a365f1
3
+ metadata.gz: 86d76340883cfd5ca9c9f685a92634c27deef0b33aa8aa88e0b3483534ad3bc8
4
+ data.tar.gz: 7483ada908c6514256be6077b02bda2d994bc48cd6cfab484fc038ab213d9460
5
5
  SHA512:
6
- metadata.gz: 0bc5dcdd9b91f26b78299ee465fb7638321a2c18bf393ae64e39b92219f29fd15fb0e20bea12736e4ee3f371fe879bee547717df8b957d7d44b6738271399dfc
7
- data.tar.gz: 5c6872554abc186f1e526b952689696e82b09ef10c3fe69c7879d01f2303940c95d139f8a284233ca466e55cf0940ac318a7aa4e07b5f9bd3bbc7cf2d236dde0
6
+ metadata.gz: f89b75044d1937971e49308a87a2aecb60821dde39b206107b6be4fece15a34cfdcdb0937cbab150eb89e6d4ece6a19e9478cfd47e69346731bc3b88036cef89
7
+ data.tar.gz: 9234a5083130b472bca56e979a056f19d6a061775bb1d41a3c40166aeda26a9f1e845203d071149bdfdadd23a975e1632b96ba6171749e532ca4c1432e4d226d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-migrationcenter_v1alpha1
2
2
 
3
+ ### v0.19.0 (2023-10-22)
4
+
5
+ * Regenerated from discovery document revision 20231013
6
+
3
7
  ### v0.18.0 (2023-10-08)
4
8
 
5
9
  * Regenerated from discovery document revision 20230928
@@ -1168,6 +1168,32 @@ module Google
1168
1168
  end
1169
1169
  end
1170
1170
 
1171
+ # Information about software detected on an asset.
1172
+ class DetectedSoftware
1173
+ include Google::Apis::Core::Hashable
1174
+
1175
+ # Output only. Software family of the detected software, e.g. Database, SAP
1176
+ # family.
1177
+ # Corresponds to the JSON property `softwareFamily`
1178
+ # @return [String]
1179
+ attr_accessor :software_family
1180
+
1181
+ # Output only. Software's name.
1182
+ # Corresponds to the JSON property `softwareName`
1183
+ # @return [String]
1184
+ attr_accessor :software_name
1185
+
1186
+ def initialize(**args)
1187
+ update!(**args)
1188
+ end
1189
+
1190
+ # Update properties of this object
1191
+ def update!(**args)
1192
+ @software_family = args[:software_family] if args.key?(:software_family)
1193
+ @software_name = args[:software_name] if args.key?(:software_name)
1194
+ end
1195
+ end
1196
+
1171
1197
  # Single disk entry.
1172
1198
  class DiskEntry
1173
1199
  include Google::Apis::Core::Hashable
@@ -1718,12 +1744,12 @@ module Google
1718
1744
  # @return [String]
1719
1745
  attr_accessor :create_time
1720
1746
 
1721
- # The description of the resource.
1747
+ # Optional. The description of the group.
1722
1748
  # Corresponds to the JSON property `description`
1723
1749
  # @return [String]
1724
1750
  attr_accessor :description
1725
1751
 
1726
- # User-friendly display name.
1752
+ # Optional. User-friendly display name.
1727
1753
  # Corresponds to the JSON property `displayName`
1728
1754
  # @return [String]
1729
1755
  attr_accessor :display_name
@@ -2235,6 +2261,11 @@ module Google
2235
2261
  # @return [Google::Apis::MigrationcenterV1alpha1::MigrationInsight]
2236
2262
  attr_accessor :migration_insight
2237
2263
 
2264
+ # An insight regarding software detected on an asset.
2265
+ # Corresponds to the JSON property `softwareInsight`
2266
+ # @return [Google::Apis::MigrationcenterV1alpha1::SoftwareInsight]
2267
+ attr_accessor :software_insight
2268
+
2238
2269
  def initialize(**args)
2239
2270
  update!(**args)
2240
2271
  end
@@ -2243,6 +2274,7 @@ module Google
2243
2274
  def update!(**args)
2244
2275
  @generic_insight = args[:generic_insight] if args.key?(:generic_insight)
2245
2276
  @migration_insight = args[:migration_insight] if args.key?(:migration_insight)
2277
+ @software_insight = args[:software_insight] if args.key?(:software_insight)
2246
2278
  end
2247
2279
  end
2248
2280
 
@@ -4496,6 +4528,25 @@ module Google
4496
4528
  end
4497
4529
  end
4498
4530
 
4531
+ # An insight regarding software detected on an asset.
4532
+ class SoftwareInsight
4533
+ include Google::Apis::Core::Hashable
4534
+
4535
+ # Information about software detected on an asset.
4536
+ # Corresponds to the JSON property `detectedSoftware`
4537
+ # @return [Google::Apis::MigrationcenterV1alpha1::DetectedSoftware]
4538
+ attr_accessor :detected_software
4539
+
4540
+ def initialize(**args)
4541
+ update!(**args)
4542
+ end
4543
+
4544
+ # Update properties of this object
4545
+ def update!(**args)
4546
+ @detected_software = args[:detected_software] if args.key?(:detected_software)
4547
+ end
4548
+ end
4549
+
4499
4550
  # Preferences concerning Sole Tenancy nodes and VMs.
4500
4551
  class SoleTenancyPreferences
4501
4552
  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.18.0"
19
+ GEM_VERSION = "0.19.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 = "20230928"
25
+ REVISION = "20231013"
26
26
  end
27
27
  end
28
28
  end
@@ -250,6 +250,12 @@ module Google
250
250
  include Google::Apis::Core::JsonObjectSupport
251
251
  end
252
252
 
253
+ class DetectedSoftware
254
+ class Representation < Google::Apis::Core::JsonRepresentation; end
255
+
256
+ include Google::Apis::Core::JsonObjectSupport
257
+ end
258
+
253
259
  class DiskEntry
254
260
  class Representation < Google::Apis::Core::JsonRepresentation; end
255
261
 
@@ -838,6 +844,12 @@ module Google
838
844
  include Google::Apis::Core::JsonObjectSupport
839
845
  end
840
846
 
847
+ class SoftwareInsight
848
+ class Representation < Google::Apis::Core::JsonRepresentation; end
849
+
850
+ include Google::Apis::Core::JsonObjectSupport
851
+ end
852
+
841
853
  class SoleTenancyPreferences
842
854
  class Representation < Google::Apis::Core::JsonRepresentation; end
843
855
 
@@ -1315,6 +1327,14 @@ module Google
1315
1327
  end
1316
1328
  end
1317
1329
 
1330
+ class DetectedSoftware
1331
+ # @private
1332
+ class Representation < Google::Apis::Core::JsonRepresentation
1333
+ property :software_family, as: 'softwareFamily'
1334
+ property :software_name, as: 'softwareName'
1335
+ end
1336
+ end
1337
+
1318
1338
  class DiskEntry
1319
1339
  # @private
1320
1340
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1646,6 +1666,8 @@ module Google
1646
1666
 
1647
1667
  property :migration_insight, as: 'migrationInsight', class: Google::Apis::MigrationcenterV1alpha1::MigrationInsight, decorator: Google::Apis::MigrationcenterV1alpha1::MigrationInsight::Representation
1648
1668
 
1669
+ property :software_insight, as: 'softwareInsight', class: Google::Apis::MigrationcenterV1alpha1::SoftwareInsight, decorator: Google::Apis::MigrationcenterV1alpha1::SoftwareInsight::Representation
1670
+
1649
1671
  end
1650
1672
  end
1651
1673
 
@@ -2331,6 +2353,14 @@ module Google
2331
2353
  end
2332
2354
  end
2333
2355
 
2356
+ class SoftwareInsight
2357
+ # @private
2358
+ class Representation < Google::Apis::Core::JsonRepresentation
2359
+ property :detected_software, as: 'detectedSoftware', class: Google::Apis::MigrationcenterV1alpha1::DetectedSoftware, decorator: Google::Apis::MigrationcenterV1alpha1::DetectedSoftware::Representation
2360
+
2361
+ end
2362
+ end
2363
+
2334
2364
  class SoleTenancyPreferences
2335
2365
  # @private
2336
2366
  class Representation < Google::Apis::Core::JsonRepresentation
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.18.0
4
+ version: 0.19.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-10-08 00:00:00.000000000 Z
11
+ date: 2023-10-22 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.18.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-migrationcenter_v1alpha1/v0.19.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: []