google-apis-servicemanagement_v1 0.41.0 → 0.42.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: 68cab609b8da240de6ad2149db3b1423745fbf005be7dfb718d504ae03969445
4
- data.tar.gz: 1d329eb37ef54284b5d57663a64dac965c8a9da552d87a590bcfef53654d8012
3
+ metadata.gz: 2d9b50e02f498f27dd3f6c2e689e2bf1de9a01a783f7c7e95fb5a5badf5ba986
4
+ data.tar.gz: e088016b851e05009849e244bfed121457fa618489c32cb4b2b9ba392d725363
5
5
  SHA512:
6
- metadata.gz: 866447b6f05fd25373efd8fa64f0d639db425d0d105d964a1f833ec52d79c8c70f81e96d76ac859d7e14d3c32446455da6b42b161c464024d203a914897154bf
7
- data.tar.gz: 44ecdbc58fd1838b6463b8135f5895440c0977723609e406fe55e8aa98f8af9d1d650e818be359b97bb57224505a273a2ee3f12f82816cc6f664ed0be4c544ec
6
+ metadata.gz: 59e80fb5e8ce9f34693b60e953190aa2aafeefb04db227af845ff9ebc8ef4c1aceb1c0eb6dda72511bc9ef5f6686cb7ae00aac19b4d4bca834ff73395a5ac852
7
+ data.tar.gz: c87e1d7c50287f342a9942227fac877e9bb4ace2cb8956b25286abb76d34766f1688c732b68589e9dbf2faa8a6ee31f47d9fd172f531dad2297b06a9eee109dd
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-servicemanagement_v1
2
2
 
3
+ ### v0.42.0 (2023-03-26)
4
+
5
+ * Regenerated from discovery document revision 20230317
6
+
3
7
  ### v0.41.0 (2023-03-05)
4
8
 
5
9
  * Regenerated from discovery document revision 20230224
@@ -725,7 +725,9 @@ module Google
725
725
  # @return [Google::Apis::ServicemanagementV1::RubySettings]
726
726
  attr_accessor :ruby_settings
727
727
 
728
- # Version of the API to apply these settings to.
728
+ # Version of the API to apply these settings to. This is the full protobuf
729
+ # package for the API, ending in the version element. Examples: "google.cloud.
730
+ # speech.v1" and "google.spanner.admin.database.v1".
729
731
  # Corresponds to the JSON property `version`
730
732
  # @return [String]
731
733
  attr_accessor :version
@@ -1376,6 +1378,11 @@ module Google
1376
1378
  class Enum
1377
1379
  include Google::Apis::Core::Hashable
1378
1380
 
1381
+ # The source edition string, only valid when syntax is SYNTAX_EDITIONS.
1382
+ # Corresponds to the JSON property `edition`
1383
+ # @return [String]
1384
+ attr_accessor :edition
1385
+
1379
1386
  # Enum value definitions.
1380
1387
  # Corresponds to the JSON property `enumvalue`
1381
1388
  # @return [Array<Google::Apis::ServicemanagementV1::EnumValue>]
@@ -1408,6 +1415,7 @@ module Google
1408
1415
 
1409
1416
  # Update properties of this object
1410
1417
  def update!(**args)
1418
+ @edition = args[:edition] if args.key?(:edition)
1411
1419
  @enumvalue = args[:enumvalue] if args.key?(:enumvalue)
1412
1420
  @name = args[:name] if args.key?(:name)
1413
1421
  @options = args[:options] if args.key?(:options)
@@ -2695,7 +2703,7 @@ module Google
2695
2703
  # AccessControl The mixin construct implies that all methods in `AccessControl`
2696
2704
  # are also declared with same name and request/response types in `Storage`. A
2697
2705
  # documentation generator or annotation processor will see the effective `
2698
- # Storage.GetAcl` method after inheriting documentation and annotations as
2706
+ # Storage.GetAcl` method after inherting documentation and annotations as
2699
2707
  # follows: service Storage ` // Get the underlying ACL object. rpc GetAcl(
2700
2708
  # GetAclRequest) returns (Acl) ` option (google.api.http).get = "/v2/`resource=**
2701
2709
  # `:getAcl"; ` ... ` Note how the version in the path pattern changed from `v1`
@@ -4356,6 +4364,11 @@ module Google
4356
4364
  class Type
4357
4365
  include Google::Apis::Core::Hashable
4358
4366
 
4367
+ # The source edition string, only valid when syntax is SYNTAX_EDITIONS.
4368
+ # Corresponds to the JSON property `edition`
4369
+ # @return [String]
4370
+ attr_accessor :edition
4371
+
4359
4372
  # The list of fields.
4360
4373
  # Corresponds to the JSON property `fields`
4361
4374
  # @return [Array<Google::Apis::ServicemanagementV1::Field>]
@@ -4393,6 +4406,7 @@ module Google
4393
4406
 
4394
4407
  # Update properties of this object
4395
4408
  def update!(**args)
4409
+ @edition = args[:edition] if args.key?(:edition)
4396
4410
  @fields = args[:fields] if args.key?(:fields)
4397
4411
  @name = args[:name] if args.key?(:name)
4398
4412
  @oneofs = args[:oneofs] if args.key?(:oneofs)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ServicemanagementV1
18
18
  # Version of the google-apis-servicemanagement_v1 gem
19
- GEM_VERSION = "0.41.0"
19
+ GEM_VERSION = "0.42.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 = "20230224"
25
+ REVISION = "20230317"
26
26
  end
27
27
  end
28
28
  end
@@ -965,6 +965,7 @@ module Google
965
965
  class Enum
966
966
  # @private
967
967
  class Representation < Google::Apis::Core::JsonRepresentation
968
+ property :edition, as: 'edition'
968
969
  collection :enumvalue, as: 'enumvalue', class: Google::Apis::ServicemanagementV1::EnumValue, decorator: Google::Apis::ServicemanagementV1::EnumValue::Representation
969
970
 
970
971
  property :name, as: 'name'
@@ -1632,6 +1633,7 @@ module Google
1632
1633
  class Type
1633
1634
  # @private
1634
1635
  class Representation < Google::Apis::Core::JsonRepresentation
1636
+ property :edition, as: 'edition'
1635
1637
  collection :fields, as: 'fields', class: Google::Apis::ServicemanagementV1::Field, decorator: Google::Apis::ServicemanagementV1::Field::Representation
1636
1638
 
1637
1639
  property :name, as: 'name'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-servicemanagement_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.41.0
4
+ version: 0.42.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-26 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-servicemanagement_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-servicemanagement_v1/v0.41.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-servicemanagement_v1/v0.42.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-servicemanagement_v1
63
63
  post_install_message:
64
64
  rdoc_options: []