google-apis-servicemanagement_v1 0.10.0 → 0.14.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: 0f27912d721b5690618f04be06e480703a5ffb50ffcce17d7a83c35c8d1dcd6c
4
- data.tar.gz: 4c562989a6a26ca9afc92d4f5bd6a08da71fb6dfb8ebf9518ef616966e2d387b
3
+ metadata.gz: 7aa87b0dbeb4e45c58f83d91dc374fd2a2fbef37173583230ed12f728ccb9e0b
4
+ data.tar.gz: 446edbd5608d447ab66548b8bdeae6a9a68e7f2167702e83838eb40ba877e9a0
5
5
  SHA512:
6
- metadata.gz: 2e30d1d411ef3b5fb2d781973fdae5aa064be00572f71e07ad83618e89dc3a601a3ff0ea0150a22ccc8d21c2835d4bc6007649430a7568e191feaa2320107dd1
7
- data.tar.gz: 43e864e84c5e5106cf72d41bc5a30178b898cfdeedfc4381ec13114b9eb94fdeb094eb958a152dfda921d149f6dfe69cd6c50de84a8317687866d4fc2ea2cba1
6
+ metadata.gz: 8169692f5605f24cc116578b2d67c0f67b6cb161b187a1b4e3d08a0a66391c8979bf75336d0043ccbf9b351fe586958a9762f22a37ff91434ddababc0cf17333
7
+ data.tar.gz: 393e636d875009c1f491628d4f5c5c1455fe3475aea3ae270cd7aeb4bb29b479a0a750e50435b2f6867746774660af735b4d6b149b8be2d1f49081d160c94245
data/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # Release history for google-apis-servicemanagement_v1
2
2
 
3
+ ### v0.14.0 (2021-07-16)
4
+
5
+ * Regenerated from discovery document revision 20210709
6
+
7
+ ### v0.13.0 (2021-06-29)
8
+
9
+ * Regenerated using generator version 0.4.0
10
+
11
+ ### v0.12.0 (2021-06-24)
12
+
13
+ * Unspecified changes
14
+
15
+ ### v0.11.0 (2021-06-09)
16
+
17
+ * Regenerated from discovery document revision 20210604
18
+ * Regenerated using generator version 0.3.0
19
+
3
20
  ### v0.10.0 (2021-05-25)
4
21
 
5
22
  * Regenerated from discovery document revision 20210521
@@ -1076,7 +1076,9 @@ module Google
1076
1076
  # @return [String]
1077
1077
  attr_accessor :service_root_url
1078
1078
 
1079
- # A short summary of what the service does. Can only be provided by plain text.
1079
+ # A short description of what the service does. The summary must be plain text.
1080
+ # It becomes the overview of the service displayed in Google Cloud Console. NOTE:
1081
+ # This field is equivalent to the standard field `description`.
1080
1082
  # Corresponds to the JSON property `summary`
1081
1083
  # @return [String]
1082
1084
  attr_accessor :summary
@@ -1106,17 +1108,19 @@ module Google
1106
1108
  # @return [String]
1107
1109
  attr_accessor :deprecation_description
1108
1110
 
1109
- # Description of the selected API(s).
1111
+ # The description is the comment in front of the selected proto element, such as
1112
+ # a message, a method, a 'service' definition, or a field.
1110
1113
  # Corresponds to the JSON property `description`
1111
1114
  # @return [String]
1112
1115
  attr_accessor :description
1113
1116
 
1114
- # The selector is a comma-separated list of patterns. Each pattern is a
1115
- # qualified name of the element which may end in "*", indicating a wildcard.
1116
- # Wildcards are only allowed at the end and for a whole component of the
1117
- # qualified name, i.e. "foo.*" is ok, but not "foo.b*" or "foo.*.bar". A
1118
- # wildcard will match one or more components. To specify a default for all
1119
- # applicable elements, the whole pattern "*" is used.
1117
+ # The selector is a comma-separated list of patterns for any element such as a
1118
+ # method, a field, an enum value. Each pattern is a qualified name of the
1119
+ # element which may end in "*", indicating a wildcard. Wildcards are only
1120
+ # allowed at the end and for a whole component of the qualified name, i.e. "foo.*
1121
+ # " is ok, but not "foo.b*" or "foo.*.bar". A wildcard will match one or more
1122
+ # components. To specify a default for all applicable elements, the whole
1123
+ # pattern "*" is used.
1120
1124
  # Corresponds to the JSON property `selector`
1121
1125
  # @return [String]
1122
1126
  attr_accessor :selector
@@ -2656,6 +2660,41 @@ module Google
2656
2660
  end
2657
2661
  end
2658
2662
 
2663
+ # A message representing the message types used by a long-running operation.
2664
+ # Example: rpc Export(ExportRequest) returns (google.longrunning.Operation) `
2665
+ # option (google.longrunning.operation_info) = ` response_type: "ExportResponse"
2666
+ # metadata_type: "ExportMetadata" `; `
2667
+ class OperationInfo
2668
+ include Google::Apis::Core::Hashable
2669
+
2670
+ # Required. The message name of the metadata type for this long-running
2671
+ # operation. If the response is in a different package from the rpc, a fully-
2672
+ # qualified message name must be used (e.g. `google.protobuf.Struct`). Note:
2673
+ # Altering this value constitutes a breaking change.
2674
+ # Corresponds to the JSON property `metadataType`
2675
+ # @return [String]
2676
+ attr_accessor :metadata_type
2677
+
2678
+ # Required. The message name of the primary return type for this long-running
2679
+ # operation. This type will be used to deserialize the LRO's response. If the
2680
+ # response is in a different package from the rpc, a fully-qualified message
2681
+ # name must be used (e.g. `google.protobuf.Struct`). Note: Altering this value
2682
+ # constitutes a breaking change.
2683
+ # Corresponds to the JSON property `responseType`
2684
+ # @return [String]
2685
+ attr_accessor :response_type
2686
+
2687
+ def initialize(**args)
2688
+ update!(**args)
2689
+ end
2690
+
2691
+ # Update properties of this object
2692
+ def update!(**args)
2693
+ @metadata_type = args[:metadata_type] if args.key?(:metadata_type)
2694
+ @response_type = args[:response_type] if args.key?(:response_type)
2695
+ end
2696
+ end
2697
+
2659
2698
  # The metadata associated with a long running operation resource.
2660
2699
  class OperationMetadata
2661
2700
  include Google::Apis::Core::Hashable
@@ -2731,7 +2770,8 @@ module Google
2731
2770
  include Google::Apis::Core::Hashable
2732
2771
 
2733
2772
  # The Markdown content of the page. You can use (== include `path` ==) to
2734
- # include content from a Markdown file.
2773
+ # include content from a Markdown file. The content can be used to produce the
2774
+ # documentation page such as HTML format page.
2735
2775
  # Corresponds to the JSON property `content`
2736
2776
  # @return [String]
2737
2777
  attr_accessor :content
@@ -3252,8 +3292,8 @@ module Google
3252
3292
 
3253
3293
  # A list of all enum types included in this API service. Enums referenced
3254
3294
  # directly or indirectly by the `apis` are automatically included. Enums which
3255
- # are not referenced but shall be included should be listed here by name.
3256
- # Example: enums: - name: google.someapi.v1.SomeEnum
3295
+ # are not referenced but shall be included should be listed here by name by the
3296
+ # configuration author. Example: enums: - name: google.someapi.v1.SomeEnum
3257
3297
  # Corresponds to the JSON property `enums`
3258
3298
  # @return [Array<Google::Apis::ServicemanagementV1::Enum>]
3259
3299
  attr_accessor :enums
@@ -3386,7 +3426,8 @@ module Google
3386
3426
  # @return [Array<Google::Apis::ServicemanagementV1::Type>]
3387
3427
  attr_accessor :system_types
3388
3428
 
3389
- # The product title for this service.
3429
+ # The product title for this service, it is the name displayed in Google Cloud
3430
+ # Console.
3390
3431
  # Corresponds to the JSON property `title`
3391
3432
  # @return [String]
3392
3433
  attr_accessor :title
@@ -3394,8 +3435,8 @@ module Google
3394
3435
  # A list of all proto message types included in this API service. Types
3395
3436
  # referenced directly or indirectly by the `apis` are automatically included.
3396
3437
  # Messages which are not referenced but shall be included, such as types used by
3397
- # the `google.protobuf.Any` type, should be listed here by name. Example: types:
3398
- # - name: google.protobuf.Int32
3438
+ # the `google.protobuf.Any` type, should be listed here by name by the
3439
+ # configuration author. Example: types: - name: google.protobuf.Int32
3399
3440
  # Corresponds to the JSON property `types`
3400
3441
  # @return [Array<Google::Apis::ServicemanagementV1::Type>]
3401
3442
  attr_accessor :types
@@ -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.10.0"
19
+ GEM_VERSION = "0.14.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.2.0"
22
+ GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210521"
25
+ REVISION = "20210709"
26
26
  end
27
27
  end
28
28
  end
@@ -388,6 +388,12 @@ module Google
388
388
  include Google::Apis::Core::JsonObjectSupport
389
389
  end
390
390
 
391
+ class OperationInfo
392
+ class Representation < Google::Apis::Core::JsonRepresentation; end
393
+
394
+ include Google::Apis::Core::JsonObjectSupport
395
+ end
396
+
391
397
  class OperationMetadata
392
398
  class Representation < Google::Apis::Core::JsonRepresentation; end
393
399
 
@@ -1145,6 +1151,14 @@ module Google
1145
1151
  end
1146
1152
  end
1147
1153
 
1154
+ class OperationInfo
1155
+ # @private
1156
+ class Representation < Google::Apis::Core::JsonRepresentation
1157
+ property :metadata_type, as: 'metadataType'
1158
+ property :response_type, as: 'responseType'
1159
+ end
1160
+ end
1161
+
1148
1162
  class OperationMetadata
1149
1163
  # @private
1150
1164
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,29 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-servicemanagement_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.0
4
+ version: 0.14.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: 2021-05-31 00:00:00.000000000 Z
11
+ date: 2021-07-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.1'
19
+ version: '0.4'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: 2.a
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - "~>"
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '0.4'
30
+ - - "<"
25
31
  - !ruby/object:Gem::Version
26
- version: '0.1'
32
+ version: 2.a
27
33
  description: This is the simple REST client for Service Management API V1. Simple
28
34
  REST clients are Ruby client libraries that provide access to Google services via
29
35
  their HTTP REST API endpoints. These libraries are generated and updated automatically
@@ -52,7 +58,7 @@ licenses:
52
58
  metadata:
53
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
54
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-servicemanagement_v1/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-servicemanagement_v1/v0.10.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-servicemanagement_v1/v0.14.0
56
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-servicemanagement_v1
57
63
  post_install_message:
58
64
  rdoc_options: []