google-apis-serviceconsumermanagement_v1 0.32.0 → 0.34.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: 5d9a6a57c9bfc7836dc49b0bbec47def2ebac24c812592822fe000a2061d55d9
4
- data.tar.gz: 212e7bea7c4858cd75972e0cde8dd723e89cd191b40a97fc7801aa1e1c888243
3
+ metadata.gz: 03a981e221bd1dc88fdd91cc89e0ad17507fad6240aea558e4df57e7850359ca
4
+ data.tar.gz: b7b6d8fe7cb6c35ac1da92c614af0af34f23076322f529e3894a4c448e4961f6
5
5
  SHA512:
6
- metadata.gz: 1abfd8c9016a283920588a2a05b30c9cdc74e6bf58b608a0935eae70c5b2420fa12f288755e1d125f6a8a0e38bee880442609a7ed742cf88b1ef5f3626b5a2e7
7
- data.tar.gz: 15e16337d300862d8264b85e27e3664d85e06c13bf46c13ed3456bc8ee7f7a84591969ade62135fd8c8be150c77849ebc8a14a6b48c63a75c464d718ac51e813
6
+ metadata.gz: da1587e7483267704bce138c0955fe383ef7684e4bebba8347313d7ab3b5ab2f2a68da27f4d585aeb7ed114d26c0ca405dfde5a1204a66b92e55a6ee2200ecb3
7
+ data.tar.gz: eebde0e559e117df6ea5a1f23f694d9ad40f2693970340539756b957df4bfc60fd9d11c6b4ec0f184762cfd8eef3bf177639c7f04adf15d65a9960cc38a0cbe2
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-serviceconsumermanagement_v1
2
2
 
3
+ ### v0.34.0 (2023-04-02)
4
+
5
+ * Regenerated from discovery document revision 20230329
6
+
7
+ ### v0.33.0 (2023-03-26)
8
+
9
+ * Regenerated from discovery document revision 20230322
10
+
3
11
  ### v0.32.0 (2023-03-05)
4
12
 
5
13
  * Regenerated from discovery document revision 20230226
@@ -658,7 +658,9 @@ module Google
658
658
  # @return [Google::Apis::ServiceconsumermanagementV1::RubySettings]
659
659
  attr_accessor :ruby_settings
660
660
 
661
- # Version of the API to apply these settings to.
661
+ # Version of the API to apply these settings to. This is the full protobuf
662
+ # package for the API, ending in the version element. Examples: "google.cloud.
663
+ # speech.v1" and "google.spanner.admin.database.v1".
662
664
  # Corresponds to the JSON property `version`
663
665
  # @return [String]
664
666
  attr_accessor :version
@@ -1087,6 +1089,42 @@ module Google
1087
1089
  # @return [Google::Apis::ServiceconsumermanagementV1::CommonLanguageSettings]
1088
1090
  attr_accessor :common
1089
1091
 
1092
+ # Namespaces which must be aliased in snippets due to a known (but non-generator-
1093
+ # predictable) naming collision
1094
+ # Corresponds to the JSON property `forcedNamespaceAliases`
1095
+ # @return [Array<String>]
1096
+ attr_accessor :forced_namespace_aliases
1097
+
1098
+ # Method signatures (in the form "service.method(signature)") which are provided
1099
+ # separately, so shouldn't be generated. Snippets *calling* these methods are
1100
+ # still generated, however.
1101
+ # Corresponds to the JSON property `handwrittenSignatures`
1102
+ # @return [Array<String>]
1103
+ attr_accessor :handwritten_signatures
1104
+
1105
+ # List of full resource types to ignore during generation. This is typically
1106
+ # used for API-specific Location resources, which should be handled by the
1107
+ # generator as if they were actually the common Location resources. Example
1108
+ # entry: "documentai.googleapis.com/Location"
1109
+ # Corresponds to the JSON property `ignoredResources`
1110
+ # @return [Array<String>]
1111
+ attr_accessor :ignored_resources
1112
+
1113
+ # Map from full resource types to the effective short name for the resource.
1114
+ # This is used when otherwise resource named from different services would cause
1115
+ # naming collisions. Example entry: "datalabeling.googleapis.com/Dataset": "
1116
+ # DataLabelingDataset"
1117
+ # Corresponds to the JSON property `renamedResources`
1118
+ # @return [Hash<String,String>]
1119
+ attr_accessor :renamed_resources
1120
+
1121
+ # Map from original service names to renamed versions. This is used when the
1122
+ # default generated types would cause a naming conflict. (Neither name is fully-
1123
+ # qualified.) Example: Subscriber to SubscriberServiceApi.
1124
+ # Corresponds to the JSON property `renamedServices`
1125
+ # @return [Hash<String,String>]
1126
+ attr_accessor :renamed_services
1127
+
1090
1128
  def initialize(**args)
1091
1129
  update!(**args)
1092
1130
  end
@@ -1094,6 +1132,11 @@ module Google
1094
1132
  # Update properties of this object
1095
1133
  def update!(**args)
1096
1134
  @common = args[:common] if args.key?(:common)
1135
+ @forced_namespace_aliases = args[:forced_namespace_aliases] if args.key?(:forced_namespace_aliases)
1136
+ @handwritten_signatures = args[:handwritten_signatures] if args.key?(:handwritten_signatures)
1137
+ @ignored_resources = args[:ignored_resources] if args.key?(:ignored_resources)
1138
+ @renamed_resources = args[:renamed_resources] if args.key?(:renamed_resources)
1139
+ @renamed_services = args[:renamed_services] if args.key?(:renamed_services)
1097
1140
  end
1098
1141
  end
1099
1142
 
@@ -1175,6 +1218,11 @@ module Google
1175
1218
  class Enum
1176
1219
  include Google::Apis::Core::Hashable
1177
1220
 
1221
+ # The source edition string, only valid when syntax is SYNTAX_EDITIONS.
1222
+ # Corresponds to the JSON property `edition`
1223
+ # @return [String]
1224
+ attr_accessor :edition
1225
+
1178
1226
  # Enum value definitions.
1179
1227
  # Corresponds to the JSON property `enumvalue`
1180
1228
  # @return [Array<Google::Apis::ServiceconsumermanagementV1::EnumValue>]
@@ -1207,6 +1255,7 @@ module Google
1207
1255
 
1208
1256
  # Update properties of this object
1209
1257
  def update!(**args)
1258
+ @edition = args[:edition] if args.key?(:edition)
1210
1259
  @enumvalue = args[:enumvalue] if args.key?(:enumvalue)
1211
1260
  @name = args[:name] if args.key?(:name)
1212
1261
  @options = args[:options] if args.key?(:options)
@@ -2220,7 +2269,7 @@ module Google
2220
2269
  # AccessControl The mixin construct implies that all methods in `AccessControl`
2221
2270
  # are also declared with same name and request/response types in `Storage`. A
2222
2271
  # documentation generator or annotation processor will see the effective `
2223
- # Storage.GetAcl` method after inheriting documentation and annotations as
2272
+ # Storage.GetAcl` method after inherting documentation and annotations as
2224
2273
  # follows: service Storage ` // Get the underlying ACL object. rpc GetAcl(
2225
2274
  # GetAclRequest) returns (Acl) ` option (google.api.http).get = "/v2/`resource=**
2226
2275
  # `:getAcl"; ` ... ` Note how the version in the path pattern changed from `v1`
@@ -3658,6 +3707,11 @@ module Google
3658
3707
  class Type
3659
3708
  include Google::Apis::Core::Hashable
3660
3709
 
3710
+ # The source edition string, only valid when syntax is SYNTAX_EDITIONS.
3711
+ # Corresponds to the JSON property `edition`
3712
+ # @return [String]
3713
+ attr_accessor :edition
3714
+
3661
3715
  # The list of fields.
3662
3716
  # Corresponds to the JSON property `fields`
3663
3717
  # @return [Array<Google::Apis::ServiceconsumermanagementV1::Field>]
@@ -3695,6 +3749,7 @@ module Google
3695
3749
 
3696
3750
  # Update properties of this object
3697
3751
  def update!(**args)
3752
+ @edition = args[:edition] if args.key?(:edition)
3698
3753
  @fields = args[:fields] if args.key?(:fields)
3699
3754
  @name = args[:name] if args.key?(:name)
3700
3755
  @oneofs = args[:oneofs] if args.key?(:oneofs)
@@ -3954,7 +4009,7 @@ module Google
3954
4009
  attr_accessor :container
3955
4010
 
3956
4011
  # If this map is nonempty, then this policy applies only to specific values for
3957
- # dimensions defined in the limit unit. For example, an policy on a limit with
4012
+ # dimensions defined in the limit unit. For example, a policy on a limit with
3958
4013
  # the unit 1/`project`/`region` could contain an entry with the key "region" and
3959
4014
  # the value "us-east-1"; the policy is only applied to quota consumed in that
3960
4015
  # region. This map has the following restrictions: * Keys that are not defined
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ServiceconsumermanagementV1
18
18
  # Version of the google-apis-serviceconsumermanagement_v1 gem
19
- GEM_VERSION = "0.32.0"
19
+ GEM_VERSION = "0.34.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 = "20230226"
25
+ REVISION = "20230329"
26
26
  end
27
27
  end
28
28
  end
@@ -915,6 +915,11 @@ module Google
915
915
  class Representation < Google::Apis::Core::JsonRepresentation
916
916
  property :common, as: 'common', class: Google::Apis::ServiceconsumermanagementV1::CommonLanguageSettings, decorator: Google::Apis::ServiceconsumermanagementV1::CommonLanguageSettings::Representation
917
917
 
918
+ collection :forced_namespace_aliases, as: 'forcedNamespaceAliases'
919
+ collection :handwritten_signatures, as: 'handwrittenSignatures'
920
+ collection :ignored_resources, as: 'ignoredResources'
921
+ hash :renamed_resources, as: 'renamedResources'
922
+ hash :renamed_services, as: 'renamedServices'
918
923
  end
919
924
  end
920
925
 
@@ -937,6 +942,7 @@ module Google
937
942
  class Enum
938
943
  # @private
939
944
  class Representation < Google::Apis::Core::JsonRepresentation
945
+ property :edition, as: 'edition'
940
946
  collection :enumvalue, as: 'enumvalue', class: Google::Apis::ServiceconsumermanagementV1::EnumValue, decorator: Google::Apis::ServiceconsumermanagementV1::EnumValue::Representation
941
947
 
942
948
  property :name, as: 'name'
@@ -1492,6 +1498,7 @@ module Google
1492
1498
  class Type
1493
1499
  # @private
1494
1500
  class Representation < Google::Apis::Core::JsonRepresentation
1501
+ property :edition, as: 'edition'
1495
1502
  collection :fields, as: 'fields', class: Google::Apis::ServiceconsumermanagementV1::Field, decorator: Google::Apis::ServiceconsumermanagementV1::Field::Representation
1496
1503
 
1497
1504
  property :name, as: 'name'
@@ -154,13 +154,7 @@ module Google
154
154
  end
155
155
 
156
156
  # Lists operations that match the specified filter in the request. If the server
157
- # doesn't support this method, it returns `UNIMPLEMENTED`. NOTE: the `name`
158
- # binding allows API services to override the binding to use different resource
159
- # name schemes, such as `users/*/operations`. To override the binding, API
160
- # services can add a binding such as `"/v1/`name=users/*`/operations"` to their
161
- # service configuration. For backwards compatibility, the default name includes
162
- # the operations collection id, however overriding users must ensure the name
163
- # binding is the parent resource, without the operations collection id.
157
+ # doesn't support this method, it returns `UNIMPLEMENTED`.
164
158
  # @param [String] name
165
159
  # The name of the operation's parent resource.
166
160
  # @param [String] filter
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-serviceconsumermanagement_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.32.0
4
+ version: 0.34.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-04-02 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-serviceconsumermanagement_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-serviceconsumermanagement_v1/v0.32.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-serviceconsumermanagement_v1/v0.34.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-serviceconsumermanagement_v1
63
63
  post_install_message:
64
64
  rdoc_options: []