google-apis-cloudsearch_v1 0.46.0 → 0.47.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 233d66701ef45125c9cf64a21c0d99621cead2026d37bff3f81ecaf7fd5705ed
4
- data.tar.gz: 0c55b7f54deb23eebe13d42ac5370b535916eafa0edf74d54a8b557f306b2d93
3
+ metadata.gz: 55315fcb4de9636b71e89547ec824d0bd6c7fd13f5fbbf6e72dfa00a0dd16952
4
+ data.tar.gz: 2e1419b646729c00283e79cae554371cfc68228e647e442610e8bb80d32b3025
5
5
  SHA512:
6
- metadata.gz: a282f72fdacd36d3f827d88a9cde78666cc8c8bc16d34993a6571d69a3eb982f78fd1bd53ec7b8b8a5af9ee84d240cc947947975163447a0f0c6e186e5cd4444
7
- data.tar.gz: 7b393e0a37770e9716a124854f9490a423d8e8b0c457bcd99e3e3b58238ec8cee068b669e80f40d9a980a768bf2f01025ee0b4c0623b0bbde50e6b84fe7b56ec
6
+ metadata.gz: 18def3b5e930c2eb70649769e76b91aa2c289a558a787855f67c542daf611fc3c61d36d4b099eaa456abbe886e8c471f8111d466151e00d6993947f10cd5b9aa
7
+ data.tar.gz: ca865c07875eaa6ae8e62ddb17addec1eec16072820528bec30bd7c5358c77bcad035696703d0c94ebcbc5218526358a70ff7aacb9be9e8861182d93ba4ad30f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-cloudsearch_v1
2
2
 
3
+ ### v0.47.0 (2023-03-19)
4
+
5
+ * Regenerated from discovery document revision 20230307
6
+
3
7
  ### v0.46.0 (2023-03-05)
4
8
 
5
9
  * Regenerated from discovery document revision 20230228
@@ -3297,6 +3297,15 @@ module Google
3297
3297
  # @return [String]
3298
3298
  attr_accessor :known_icon
3299
3299
 
3300
+ # A [Google Font Icon](https://fonts.google.com/icons), which includes over 2500+
3301
+ # options. For example, to display a [check box icon](https://fonts.google.com/
3302
+ # icons?selected=Material%20Symbols%20Outlined%3Acheck_box%3AFILL%400%3Bwght%
3303
+ # 40400%3BGRAD%400%3Bopsz%4048) with customized weight and grade, write ` "name":
3304
+ # "check_box", "fill": true, "weight": 300, "grade": -25 `
3305
+ # Corresponds to the JSON property `materialIcon`
3306
+ # @return [Google::Apis::CloudsearchV1::AppsDynamiteStorageMaterialIcon]
3307
+ attr_accessor :material_icon
3308
+
3300
3309
  def initialize(**args)
3301
3310
  update!(**args)
3302
3311
  end
@@ -3307,6 +3316,7 @@ module Google
3307
3316
  @icon_url = args[:icon_url] if args.key?(:icon_url)
3308
3317
  @image_type = args[:image_type] if args.key?(:image_type)
3309
3318
  @known_icon = args[:known_icon] if args.key?(:known_icon)
3319
+ @material_icon = args[:material_icon] if args.key?(:material_icon)
3310
3320
  end
3311
3321
  end
3312
3322
 
@@ -3403,6 +3413,58 @@ module Google
3403
3413
  end
3404
3414
  end
3405
3415
 
3416
+ # A [Google Font Icon](https://fonts.google.com/icons), which includes over 2500+
3417
+ # options. For example, to display a [check box icon](https://fonts.google.com/
3418
+ # icons?selected=Material%20Symbols%20Outlined%3Acheck_box%3AFILL%400%3Bwght%
3419
+ # 40400%3BGRAD%400%3Bopsz%4048) with customized weight and grade, write ` "name":
3420
+ # "check_box", "fill": true, "weight": 300, "grade": -25 `
3421
+ class AppsDynamiteStorageMaterialIcon
3422
+ include Google::Apis::Core::Hashable
3423
+
3424
+ # Whether it renders a filled icon. Default value is false. See Customization in
3425
+ # [Google Font Icon](https://fonts.google.com/icons) for details.
3426
+ # Corresponds to the JSON property `fill`
3427
+ # @return [Boolean]
3428
+ attr_accessor :fill
3429
+ alias_method :fill?, :fill
3430
+
3431
+ # Weight and grade affect a symbol’s thickness. Adjustments to grade are more
3432
+ # granular than adjustments to weight and have a small impact on the size of the
3433
+ # symbol. Choose from `-25, 0, 200`. If absent, default value is 0. If any other
3434
+ # value is specified, a broken image icon will be displayed. See Customization
3435
+ # in [Google Font Icon](https://fonts.google.com/icons) for details.
3436
+ # Corresponds to the JSON property `grade`
3437
+ # @return [Fixnum]
3438
+ attr_accessor :grade
3439
+
3440
+ # The icon name defined in the [Google Material Icon](https://fonts.google.com/
3441
+ # icons) in snake_case. e.g. "check_box". Any invalid name will be trimmed as
3442
+ # empty string result in the icon falied to render.
3443
+ # Corresponds to the JSON property `name`
3444
+ # @return [String]
3445
+ attr_accessor :name
3446
+
3447
+ # The stroke weight of the icon. Choose from `100, 200, 300, 400, 500, 600, 700`.
3448
+ # If absent, default value is 400. If any other value is specified, a broken
3449
+ # image icon will be displayed. See Customization in [Google Font Icon](https://
3450
+ # fonts.google.com/icons) for details.
3451
+ # Corresponds to the JSON property `weight`
3452
+ # @return [Fixnum]
3453
+ attr_accessor :weight
3454
+
3455
+ def initialize(**args)
3456
+ update!(**args)
3457
+ end
3458
+
3459
+ # Update properties of this object
3460
+ def update!(**args)
3461
+ @fill = args[:fill] if args.key?(:fill)
3462
+ @grade = args[:grade] if args.key?(:grade)
3463
+ @name = args[:name] if args.key?(:name)
3464
+ @weight = args[:weight] if args.key?(:weight)
3465
+ end
3466
+ end
3467
+
3406
3468
  #
3407
3469
  class AppsDynamiteStorageOnClick
3408
3470
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudsearchV1
18
18
  # Version of the google-apis-cloudsearch_v1 gem
19
- GEM_VERSION = "0.46.0"
19
+ GEM_VERSION = "0.47.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 = "20230228"
25
+ REVISION = "20230307"
26
26
  end
27
27
  end
28
28
  end
@@ -580,6 +580,12 @@ module Google
580
580
  include Google::Apis::Core::JsonObjectSupport
581
581
  end
582
582
 
583
+ class AppsDynamiteStorageMaterialIcon
584
+ class Representation < Google::Apis::Core::JsonRepresentation; end
585
+
586
+ include Google::Apis::Core::JsonObjectSupport
587
+ end
588
+
583
589
  class AppsDynamiteStorageOnClick
584
590
  class Representation < Google::Apis::Core::JsonRepresentation; end
585
591
 
@@ -4446,6 +4452,8 @@ module Google
4446
4452
  property :icon_url, as: 'iconUrl'
4447
4453
  property :image_type, as: 'imageType'
4448
4454
  property :known_icon, as: 'knownIcon'
4455
+ property :material_icon, as: 'materialIcon', class: Google::Apis::CloudsearchV1::AppsDynamiteStorageMaterialIcon, decorator: Google::Apis::CloudsearchV1::AppsDynamiteStorageMaterialIcon::Representation
4456
+
4449
4457
  end
4450
4458
  end
4451
4459
 
@@ -4479,6 +4487,16 @@ module Google
4479
4487
  end
4480
4488
  end
4481
4489
 
4490
+ class AppsDynamiteStorageMaterialIcon
4491
+ # @private
4492
+ class Representation < Google::Apis::Core::JsonRepresentation
4493
+ property :fill, as: 'fill'
4494
+ property :grade, as: 'grade'
4495
+ property :name, as: 'name'
4496
+ property :weight, as: 'weight'
4497
+ end
4498
+ end
4499
+
4482
4500
  class AppsDynamiteStorageOnClick
4483
4501
  # @private
4484
4502
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -829,13 +829,7 @@ module Google
829
829
  end
830
830
 
831
831
  # Lists operations that match the specified filter in the request. If the server
832
- # doesn't support this method, it returns `UNIMPLEMENTED`. NOTE: the `name`
833
- # binding allows API services to override the binding to use different resource
834
- # name schemes, such as `users/*/operations`. To override the binding, API
835
- # services can add a binding such as `"/v1/`name=users/*`/operations"` to their
836
- # service configuration. For backwards compatibility, the default name includes
837
- # the operations collection id, however overriding users must ensure the name
838
- # binding is the parent resource, without the operations collection id.
832
+ # doesn't support this method, it returns `UNIMPLEMENTED`.
839
833
  # @param [String] name
840
834
  # The name of the operation's parent resource.
841
835
  # @param [String] filter
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudsearch_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.46.0
4
+ version: 0.47.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-03-05 00:00:00.000000000 Z
11
+ date: 2023-03-19 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-cloudsearch_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudsearch_v1/v0.46.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudsearch_v1/v0.47.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudsearch_v1
63
63
  post_install_message:
64
64
  rdoc_options: []