google-apis-migrationcenter_v1alpha1 0.14.0 → 0.15.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: 5eb9e8cbb1ab8e3c2b6835407e47c2c070f4ec669c75f6a6693405ac131a38fd
4
- data.tar.gz: 353240bb37615e901a5a565ff3f6f3043177d1796b2229ca9176826e290e11f4
3
+ metadata.gz: 9d7b691b782101004d7e3e35c4dc96a71fb2195e7d7fdedca0a32170c68b5b46
4
+ data.tar.gz: dca714a3ed5bd74635af75c31ab91f61ce8eb2cfc316c80e33036dfa8cc4d092
5
5
  SHA512:
6
- metadata.gz: c70fcdde2354ff47d0d06b7a8b4985f0c044af31aa122627771dc2b8a92862a4e58f6a028bf64ecc128dcb75b98058ebdc69df256e9795c5fd37d8bad66c4259
7
- data.tar.gz: 42976a10aaa10a77dc03495735fbd5e9e4cdd64810846fcc45908e5985d8f39052fb3c3ce14a12d7a28f66a0b21725a6c270d24069301e72ae5a7a157b9cc598
6
+ metadata.gz: 83a32c4174b12dd5556e8541ae567c6f28f67ae83255bfd230ba12da70ee4b3089cb63cc592313430a4118cb91bdd770f47ac3526cf9d7904f89b9f75e828f8b
7
+ data.tar.gz: 198a23ee2b2f86b00676b42b2f00a4fe1823ad1cf98bb227ceb14db527a8e4f066d5516bf70046b04a0a921e9df114f3b108734a0a54907a5fa84f4bd8e1243f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-migrationcenter_v1alpha1
2
2
 
3
+ ### v0.15.0 (2023-08-13)
4
+
5
+ * Regenerated from discovery document revision 20230804
6
+
3
7
  ### v0.14.0 (2023-08-06)
4
8
 
5
9
  * Regenerated from discovery document revision 20230725
@@ -1634,6 +1634,43 @@ module Google
1634
1634
  end
1635
1635
  end
1636
1636
 
1637
+ # An insight about an asset (experimental insight)
1638
+ class GenericInsight
1639
+ include Google::Apis::Core::Hashable
1640
+
1641
+ # Output only. Additional information about the insight, each entry can be a
1642
+ # logical entry and must make sense if it is displayed with line breaks between
1643
+ # each entry. Text can contain md style links
1644
+ # Corresponds to the JSON property `additionalInformation`
1645
+ # @return [Array<String>]
1646
+ attr_accessor :additional_information
1647
+
1648
+ # Output only. In case message_code is not yet known by the client
1649
+ # default_message will be the message to be used instead. Text can contain md
1650
+ # file style links.
1651
+ # Corresponds to the JSON property `defaultMessage`
1652
+ # @return [String]
1653
+ attr_accessor :default_message
1654
+
1655
+ # Output only. Represents a globally unique message id for this insight, can be
1656
+ # used for localization purposes, in case message_code is not yet known by the
1657
+ # client use default_message instead.
1658
+ # Corresponds to the JSON property `messageId`
1659
+ # @return [Fixnum]
1660
+ attr_accessor :message_id
1661
+
1662
+ def initialize(**args)
1663
+ update!(**args)
1664
+ end
1665
+
1666
+ # Update properties of this object
1667
+ def update!(**args)
1668
+ @additional_information = args[:additional_information] if args.key?(:additional_information)
1669
+ @default_message = args[:default_message] if args.key?(:default_message)
1670
+ @message_id = args[:message_id] if args.key?(:message_id)
1671
+ end
1672
+ end
1673
+
1637
1674
  # Generic platform details.
1638
1675
  class GenericPlatformDetails
1639
1676
  include Google::Apis::Core::Hashable
@@ -2186,6 +2223,11 @@ module Google
2186
2223
  class Insight
2187
2224
  include Google::Apis::Core::Hashable
2188
2225
 
2226
+ # An insight about an asset (experimental insight)
2227
+ # Corresponds to the JSON property `genericInsight`
2228
+ # @return [Google::Apis::MigrationcenterV1alpha1::GenericInsight]
2229
+ attr_accessor :generic_insight
2230
+
2189
2231
  # An insight about potential migrations for an asset.
2190
2232
  # Corresponds to the JSON property `migrationInsight`
2191
2233
  # @return [Google::Apis::MigrationcenterV1alpha1::MigrationInsight]
@@ -2197,6 +2239,7 @@ module Google
2197
2239
 
2198
2240
  # Update properties of this object
2199
2241
  def update!(**args)
2242
+ @generic_insight = args[:generic_insight] if args.key?(:generic_insight)
2200
2243
  @migration_insight = args[:migration_insight] if args.key?(:migration_insight)
2201
2244
  end
2202
2245
  end
@@ -3094,13 +3137,13 @@ module Google
3094
3137
  # @return [String]
3095
3138
  attr_accessor :name
3096
3139
 
3097
- # The normal response of the operation in case of success. If the original
3098
- # method returns no data on success, such as `Delete`, the response is `google.
3099
- # protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`,
3100
- # the response should be the resource. For other methods, the response should
3101
- # have the type `XxxResponse`, where `Xxx` is the original method name. For
3102
- # example, if the original method name is `TakeSnapshot()`, the inferred
3103
- # response type is `TakeSnapshotResponse`.
3140
+ # The normal, successful response of the operation. If the original method
3141
+ # returns no data on success, such as `Delete`, the response is `google.protobuf.
3142
+ # Empty`. If the original method is standard `Get`/`Create`/`Update`, the
3143
+ # response should be the resource. For other methods, the response should have
3144
+ # the type `XxxResponse`, where `Xxx` is the original method name. For example,
3145
+ # if the original method name is `TakeSnapshot()`, the inferred response type is
3146
+ # `TakeSnapshotResponse`.
3104
3147
  # Corresponds to the JSON property `response`
3105
3148
  # @return [Hash<String,Object>]
3106
3149
  attr_accessor :response
@@ -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.14.0"
19
+ GEM_VERSION = "0.15.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 = "20230725"
25
+ REVISION = "20230804"
26
26
  end
27
27
  end
28
28
  end
@@ -340,6 +340,12 @@ module Google
340
340
  include Google::Apis::Core::JsonObjectSupport
341
341
  end
342
342
 
343
+ class GenericInsight
344
+ class Representation < Google::Apis::Core::JsonRepresentation; end
345
+
346
+ include Google::Apis::Core::JsonObjectSupport
347
+ end
348
+
343
349
  class GenericPlatformDetails
344
350
  class Representation < Google::Apis::Core::JsonRepresentation; end
345
351
 
@@ -1444,6 +1450,15 @@ module Google
1444
1450
  end
1445
1451
  end
1446
1452
 
1453
+ class GenericInsight
1454
+ # @private
1455
+ class Representation < Google::Apis::Core::JsonRepresentation
1456
+ collection :additional_information, as: 'additionalInformation'
1457
+ property :default_message, as: 'defaultMessage'
1458
+ property :message_id, :numeric_string => true, as: 'messageId'
1459
+ end
1460
+ end
1461
+
1447
1462
  class GenericPlatformDetails
1448
1463
  # @private
1449
1464
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1615,6 +1630,8 @@ module Google
1615
1630
  class Insight
1616
1631
  # @private
1617
1632
  class Representation < Google::Apis::Core::JsonRepresentation
1633
+ property :generic_insight, as: 'genericInsight', class: Google::Apis::MigrationcenterV1alpha1::GenericInsight, decorator: Google::Apis::MigrationcenterV1alpha1::GenericInsight::Representation
1634
+
1618
1635
  property :migration_insight, as: 'migrationInsight', class: Google::Apis::MigrationcenterV1alpha1::MigrationInsight, decorator: Google::Apis::MigrationcenterV1alpha1::MigrationInsight::Representation
1619
1636
 
1620
1637
  end
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.14.0
4
+ version: 0.15.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-08-06 00:00:00.000000000 Z
11
+ date: 2023-08-13 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.14.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-migrationcenter_v1alpha1/v0.15.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: []