google-apis-migrationcenter_v1 0.1.0 → 0.2.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: b3ca65f0007479f4fca72db7d5a22161d26b5f990b2e807ac717b046cc8fdbb1
4
- data.tar.gz: 246ba5e5c7b7a6bee55254d891a4bab43f2ae70106dabdacb6fceb5042ec41ee
3
+ metadata.gz: c02f19cd4b18cb616fccfbbb8561678094b97e598298ba9508460111c388ce1a
4
+ data.tar.gz: 7241939b6ebdd410aa62bb4296f26d2fb79a61ab5c104bf00158aff35c16dde5
5
5
  SHA512:
6
- metadata.gz: a15d5935435a8e8fe93de4a64a8338566f982256e44b1860336e68526334029607bb86b61ce66e7c263a247d85376b89c4a0b4add3a27c4fdab262461650db0d
7
- data.tar.gz: 730b01e358a74679bbb8eacacc14fdf6ea0bf1bcf608b61327c3f03be5a9ce234fa856e72c134ed75a6f4684c3eb40897cb4c56fe930392400ff0b02d61056dd
6
+ metadata.gz: 5e613c072c570a0d9e295a17b7348df3bf54d377724dce5dbf121bae358bec5b5bf8b33eb7b5dc23f627309c9e7b1997f9b8078d48c2cbb0b3e5eb4c2e0c3145
7
+ data.tar.gz: 3a9c26b11bf5631512b0aa2eca46fce7c9dd3eff89f97a17b6cb2c2e7d5cc5d9f113c3584c01080076b8b659dee0c669b7ca53d3da1ea8968337ae15800576ba
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-migrationcenter_v1
2
2
 
3
+ ### v0.2.0 (2023-08-13)
4
+
5
+ * Regenerated from discovery document revision 20230804
6
+
3
7
  ### v0.1.0 (2023-08-03)
4
8
 
5
9
  * Regenerated from discovery document revision 20230714
@@ -1325,7 +1325,7 @@ module Google
1325
1325
  # @return [Fixnum]
1326
1326
  attr_accessor :frames_reported
1327
1327
 
1328
- # Total number of rows in the import job.
1328
+ # Output only. Total number of rows in the import job.
1329
1329
  # Corresponds to the JSON property `totalRowsCount`
1330
1330
  # @return [Fixnum]
1331
1331
  attr_accessor :total_rows_count
@@ -1513,6 +1513,42 @@ module Google
1513
1513
  end
1514
1514
  end
1515
1515
 
1516
+ # An insight about an asset (experimental insight)
1517
+ class GenericInsight
1518
+ include Google::Apis::Core::Hashable
1519
+
1520
+ # Output only. Additional information about the insight, each entry can be a
1521
+ # logical entry and must make sense if it is displayed with line breaks between
1522
+ # each entry. Text can contain md style links
1523
+ # Corresponds to the JSON property `additionalInformation`
1524
+ # @return [Array<String>]
1525
+ attr_accessor :additional_information
1526
+
1527
+ # Output only. In case message_code is not yet known by the client
1528
+ # default_message will be the message to be used instead.
1529
+ # Corresponds to the JSON property `defaultMessage`
1530
+ # @return [String]
1531
+ attr_accessor :default_message
1532
+
1533
+ # Output only. Represents a globally unique message id for this insight, can be
1534
+ # used for localization purposes, in case message_code is not yet known by the
1535
+ # client use default_message instead.
1536
+ # Corresponds to the JSON property `messageId`
1537
+ # @return [Fixnum]
1538
+ attr_accessor :message_id
1539
+
1540
+ def initialize(**args)
1541
+ update!(**args)
1542
+ end
1543
+
1544
+ # Update properties of this object
1545
+ def update!(**args)
1546
+ @additional_information = args[:additional_information] if args.key?(:additional_information)
1547
+ @default_message = args[:default_message] if args.key?(:default_message)
1548
+ @message_id = args[:message_id] if args.key?(:message_id)
1549
+ end
1550
+ end
1551
+
1516
1552
  # Generic platform details.
1517
1553
  class GenericPlatformDetails
1518
1554
  include Google::Apis::Core::Hashable
@@ -2026,6 +2062,11 @@ module Google
2026
2062
  class Insight
2027
2063
  include Google::Apis::Core::Hashable
2028
2064
 
2065
+ # An insight about an asset (experimental insight)
2066
+ # Corresponds to the JSON property `genericInsight`
2067
+ # @return [Google::Apis::MigrationcenterV1::GenericInsight]
2068
+ attr_accessor :generic_insight
2069
+
2029
2070
  # An insight about potential migrations for an asset.
2030
2071
  # Corresponds to the JSON property `migrationInsight`
2031
2072
  # @return [Google::Apis::MigrationcenterV1::MigrationInsight]
@@ -2037,6 +2078,7 @@ module Google
2037
2078
 
2038
2079
  # Update properties of this object
2039
2080
  def update!(**args)
2081
+ @generic_insight = args[:generic_insight] if args.key?(:generic_insight)
2040
2082
  @migration_insight = args[:migration_insight] if args.key?(:migration_insight)
2041
2083
  end
2042
2084
  end
@@ -3131,13 +3173,13 @@ module Google
3131
3173
  # @return [String]
3132
3174
  attr_accessor :name
3133
3175
 
3134
- # The normal response of the operation in case of success. If the original
3135
- # method returns no data on success, such as `Delete`, the response is `google.
3136
- # protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`,
3137
- # the response should be the resource. For other methods, the response should
3138
- # have the type `XxxResponse`, where `Xxx` is the original method name. For
3139
- # example, if the original method name is `TakeSnapshot()`, the inferred
3140
- # response type is `TakeSnapshotResponse`.
3176
+ # The normal, successful response of the operation. If the original method
3177
+ # returns no data on success, such as `Delete`, the response is `google.protobuf.
3178
+ # Empty`. If the original method is standard `Get`/`Create`/`Update`, the
3179
+ # response should be the resource. For other methods, the response should have
3180
+ # the type `XxxResponse`, where `Xxx` is the original method name. For example,
3181
+ # if the original method name is `TakeSnapshot()`, the inferred response type is
3182
+ # `TakeSnapshotResponse`.
3141
3183
  # Corresponds to the JSON property `response`
3142
3184
  # @return [Hash<String,Object>]
3143
3185
  attr_accessor :response
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module MigrationcenterV1
18
18
  # Version of the google-apis-migrationcenter_v1 gem
19
- GEM_VERSION = "0.1.0"
19
+ GEM_VERSION = "0.2.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 = "20230714"
25
+ REVISION = "20230804"
26
26
  end
27
27
  end
28
28
  end
@@ -328,6 +328,12 @@ module Google
328
328
  include Google::Apis::Core::JsonObjectSupport
329
329
  end
330
330
 
331
+ class GenericInsight
332
+ class Representation < Google::Apis::Core::JsonRepresentation; end
333
+
334
+ include Google::Apis::Core::JsonObjectSupport
335
+ end
336
+
331
337
  class GenericPlatformDetails
332
338
  class Representation < Google::Apis::Core::JsonRepresentation; end
333
339
 
@@ -1370,6 +1376,15 @@ module Google
1370
1376
  end
1371
1377
  end
1372
1378
 
1379
+ class GenericInsight
1380
+ # @private
1381
+ class Representation < Google::Apis::Core::JsonRepresentation
1382
+ collection :additional_information, as: 'additionalInformation'
1383
+ property :default_message, as: 'defaultMessage'
1384
+ property :message_id, :numeric_string => true, as: 'messageId'
1385
+ end
1386
+ end
1387
+
1373
1388
  class GenericPlatformDetails
1374
1389
  # @private
1375
1390
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1523,6 +1538,8 @@ module Google
1523
1538
  class Insight
1524
1539
  # @private
1525
1540
  class Representation < Google::Apis::Core::JsonRepresentation
1541
+ property :generic_insight, as: 'genericInsight', class: Google::Apis::MigrationcenterV1::GenericInsight, decorator: Google::Apis::MigrationcenterV1::GenericInsight::Representation
1542
+
1526
1543
  property :migration_insight, as: 'migrationInsight', class: Google::Apis::MigrationcenterV1::MigrationInsight, decorator: Google::Apis::MigrationcenterV1::MigrationInsight::Representation
1527
1544
 
1528
1545
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-migrationcenter_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-migrationcenter_v1/v0.1.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-migrationcenter_v1/v0.2.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-migrationcenter_v1
63
63
  post_install_message:
64
64
  rdoc_options: []