google-apis-migrationcenter_v1alpha1 0.14.0 → 0.16.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: dad6edea572cb26d077bb6eaaaca1771d2e07e80c78a21980cafc5107e38e361
4
+ data.tar.gz: a6fc39240e87cc7e8314f6f0c0a1b7bd074ef47cab3a39fbd64f82f4045f6b38
5
5
  SHA512:
6
- metadata.gz: c70fcdde2354ff47d0d06b7a8b4985f0c044af31aa122627771dc2b8a92862a4e58f6a028bf64ecc128dcb75b98058ebdc69df256e9795c5fd37d8bad66c4259
7
- data.tar.gz: 42976a10aaa10a77dc03495735fbd5e9e4cdd64810846fcc45908e5985d8f39052fb3c3ce14a12d7a28f66a0b21725a6c270d24069301e72ae5a7a157b9cc598
6
+ metadata.gz: aa3bbeba21293c5b67a6cf5495e76766f20223f44d216ba547b0f5d3fce78fe283fb730b36f1e4b307214069ba6e4e113c281cf1de32390c4e1ebe93a48f09e7
7
+ data.tar.gz: '082e4995b31589dcf368fba101fc679356f7c8d12cef62e436e8bb46171ae5ef9d8fd3b22ee36ab8d79c260381cfb9203792318257fa427a21f11e75be4fb280'
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-migrationcenter_v1alpha1
2
2
 
3
+ ### v0.16.0 (2023-09-10)
4
+
5
+ * Regenerated from discovery document revision 20230901
6
+
7
+ ### v0.15.0 (2023-08-13)
8
+
9
+ * Regenerated from discovery document revision 20230804
10
+
3
11
  ### v0.14.0 (2023-08-06)
4
12
 
5
13
  * Regenerated from discovery document revision 20230725
@@ -1332,7 +1332,9 @@ module Google
1332
1332
  class DiskUsageSample
1333
1333
  include Google::Apis::Core::Hashable
1334
1334
 
1335
- # Average IOPS sampled over a short window. Must be non-negative.
1335
+ # Average IOPS sampled over a short window. Must be non-negative. Must be equal
1336
+ # to the sum of read and write if one of them is positive. if both read and
1337
+ # write are zero they are ignored.
1336
1338
  # Corresponds to the JSON property `averageIops`
1337
1339
  # @return [Float]
1338
1340
  attr_accessor :average_iops
@@ -1634,6 +1636,43 @@ module Google
1634
1636
  end
1635
1637
  end
1636
1638
 
1639
+ # An insight about an asset (experimental insight)
1640
+ class GenericInsight
1641
+ include Google::Apis::Core::Hashable
1642
+
1643
+ # Output only. Additional information about the insight, each entry can be a
1644
+ # logical entry and must make sense if it is displayed with line breaks between
1645
+ # each entry. Text can contain md style links
1646
+ # Corresponds to the JSON property `additionalInformation`
1647
+ # @return [Array<String>]
1648
+ attr_accessor :additional_information
1649
+
1650
+ # Output only. In case message_code is not yet known by the client
1651
+ # default_message will be the message to be used instead. Text can contain md
1652
+ # file style links.
1653
+ # Corresponds to the JSON property `defaultMessage`
1654
+ # @return [String]
1655
+ attr_accessor :default_message
1656
+
1657
+ # Output only. Represents a globally unique message id for this insight, can be
1658
+ # used for localization purposes, in case message_code is not yet known by the
1659
+ # client use default_message instead.
1660
+ # Corresponds to the JSON property `messageId`
1661
+ # @return [Fixnum]
1662
+ attr_accessor :message_id
1663
+
1664
+ def initialize(**args)
1665
+ update!(**args)
1666
+ end
1667
+
1668
+ # Update properties of this object
1669
+ def update!(**args)
1670
+ @additional_information = args[:additional_information] if args.key?(:additional_information)
1671
+ @default_message = args[:default_message] if args.key?(:default_message)
1672
+ @message_id = args[:message_id] if args.key?(:message_id)
1673
+ end
1674
+ end
1675
+
1637
1676
  # Generic platform details.
1638
1677
  class GenericPlatformDetails
1639
1678
  include Google::Apis::Core::Hashable
@@ -2186,6 +2225,11 @@ module Google
2186
2225
  class Insight
2187
2226
  include Google::Apis::Core::Hashable
2188
2227
 
2228
+ # An insight about an asset (experimental insight)
2229
+ # Corresponds to the JSON property `genericInsight`
2230
+ # @return [Google::Apis::MigrationcenterV1alpha1::GenericInsight]
2231
+ attr_accessor :generic_insight
2232
+
2189
2233
  # An insight about potential migrations for an asset.
2190
2234
  # Corresponds to the JSON property `migrationInsight`
2191
2235
  # @return [Google::Apis::MigrationcenterV1alpha1::MigrationInsight]
@@ -2197,6 +2241,7 @@ module Google
2197
2241
 
2198
2242
  # Update properties of this object
2199
2243
  def update!(**args)
2244
+ @generic_insight = args[:generic_insight] if args.key?(:generic_insight)
2200
2245
  @migration_insight = args[:migration_insight] if args.key?(:migration_insight)
2201
2246
  end
2202
2247
  end
@@ -3094,13 +3139,13 @@ module Google
3094
3139
  # @return [String]
3095
3140
  attr_accessor :name
3096
3141
 
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`.
3142
+ # The normal, successful response of the operation. If the original method
3143
+ # returns no data on success, such as `Delete`, the response is `google.protobuf.
3144
+ # Empty`. If the original method is standard `Get`/`Create`/`Update`, the
3145
+ # response should be the resource. For other methods, the response should have
3146
+ # the type `XxxResponse`, where `Xxx` is the original method name. For example,
3147
+ # if the original method name is `TakeSnapshot()`, the inferred response type is
3148
+ # `TakeSnapshotResponse`.
3104
3149
  # Corresponds to the JSON property `response`
3105
3150
  # @return [Hash<String,Object>]
3106
3151
  attr_accessor :response
@@ -3763,8 +3808,7 @@ module Google
3763
3808
  # @return [String]
3764
3809
  attr_accessor :display_name
3765
3810
 
3766
- # Count of the number of assets in this group which are also included in another
3767
- # group within the same report.
3811
+ # This field is deprecated, do not rely on it having a value.
3768
3812
  # Corresponds to the JSON property `overlappingAssetCount`
3769
3813
  # @return [Fixnum]
3770
3814
  attr_accessor :overlapping_asset_count
@@ -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.16.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 = "20230901"
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.16.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-09-10 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.16.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.4.2
78
+ rubygems_version: 3.4.19
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Migration Center API V1alpha1