google-apis-servicemanagement_v1 0.8.0 → 0.13.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 026c5892930d954156dc7743d0c8c36fa527de61b39d1c4bbaaf20c7fa3504dc
|
4
|
+
data.tar.gz: d1f1ece28512d33f3f59283b6b46abef3b353821e790ba7e6ad400610263e4d2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0d51d8a46a227c670f1b96e4823f1249d95bf29d755d437d7e17302d71fa55d80654faf30e5a263321d533d5648bcfdde710a3cd09769e314048b23cdfa69c2f
|
7
|
+
data.tar.gz: 1b76768d281ce4a3cb4e2639642260cb011b186ab646c23fc862345cd7210ba20889f8b9be4dbb9f35b8e4f0480368252be0d4deabdbd057d2a370a7e5e11ddd
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,26 @@
|
|
1
1
|
# Release history for google-apis-servicemanagement_v1
|
2
2
|
|
3
|
+
### v0.13.0 (2021-06-29)
|
4
|
+
|
5
|
+
* Regenerated using generator version 0.4.0
|
6
|
+
|
7
|
+
### v0.12.0 (2021-06-24)
|
8
|
+
|
9
|
+
* Unspecified changes
|
10
|
+
|
11
|
+
### v0.11.0 (2021-06-09)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20210604
|
14
|
+
* Regenerated using generator version 0.3.0
|
15
|
+
|
16
|
+
### v0.10.0 (2021-05-25)
|
17
|
+
|
18
|
+
* Regenerated from discovery document revision 20210521
|
19
|
+
|
20
|
+
### v0.9.0 (2021-05-20)
|
21
|
+
|
22
|
+
* Unspecified changes
|
23
|
+
|
3
24
|
### v0.8.0 (2021-05-08)
|
4
25
|
|
5
26
|
* Regenerated from discovery document revision 20210430
|
@@ -445,12 +445,6 @@ module Google
|
|
445
445
|
# @return [String]
|
446
446
|
attr_accessor :jwt_audience
|
447
447
|
|
448
|
-
# Minimum deadline in seconds needed for this method. Calls having deadline
|
449
|
-
# value lower than this will be rejected.
|
450
|
-
# Corresponds to the JSON property `minDeadline`
|
451
|
-
# @return [Float]
|
452
|
-
attr_accessor :min_deadline
|
453
|
-
|
454
448
|
# The number of seconds to wait for the completion of a long running operation.
|
455
449
|
# The default is no deadline.
|
456
450
|
# Corresponds to the JSON property `operationDeadline`
|
@@ -491,7 +485,6 @@ module Google
|
|
491
485
|
@deadline = args[:deadline] if args.key?(:deadline)
|
492
486
|
@disable_auth = args[:disable_auth] if args.key?(:disable_auth)
|
493
487
|
@jwt_audience = args[:jwt_audience] if args.key?(:jwt_audience)
|
494
|
-
@min_deadline = args[:min_deadline] if args.key?(:min_deadline)
|
495
488
|
@operation_deadline = args[:operation_deadline] if args.key?(:operation_deadline)
|
496
489
|
@path_translation = args[:path_translation] if args.key?(:path_translation)
|
497
490
|
@protocol = args[:protocol] if args.key?(:protocol)
|
@@ -2663,6 +2656,41 @@ module Google
|
|
2663
2656
|
end
|
2664
2657
|
end
|
2665
2658
|
|
2659
|
+
# A message representing the message types used by a long-running operation.
|
2660
|
+
# Example: rpc Export(ExportRequest) returns (google.longrunning.Operation) `
|
2661
|
+
# option (google.longrunning.operation_info) = ` response_type: "ExportResponse"
|
2662
|
+
# metadata_type: "ExportMetadata" `; `
|
2663
|
+
class OperationInfo
|
2664
|
+
include Google::Apis::Core::Hashable
|
2665
|
+
|
2666
|
+
# Required. The message name of the metadata type for this long-running
|
2667
|
+
# operation. If the response is in a different package from the rpc, a fully-
|
2668
|
+
# qualified message name must be used (e.g. `google.protobuf.Struct`). Note:
|
2669
|
+
# Altering this value constitutes a breaking change.
|
2670
|
+
# Corresponds to the JSON property `metadataType`
|
2671
|
+
# @return [String]
|
2672
|
+
attr_accessor :metadata_type
|
2673
|
+
|
2674
|
+
# Required. The message name of the primary return type for this long-running
|
2675
|
+
# operation. This type will be used to deserialize the LRO's response. If the
|
2676
|
+
# response is in a different package from the rpc, a fully-qualified message
|
2677
|
+
# name must be used (e.g. `google.protobuf.Struct`). Note: Altering this value
|
2678
|
+
# constitutes a breaking change.
|
2679
|
+
# Corresponds to the JSON property `responseType`
|
2680
|
+
# @return [String]
|
2681
|
+
attr_accessor :response_type
|
2682
|
+
|
2683
|
+
def initialize(**args)
|
2684
|
+
update!(**args)
|
2685
|
+
end
|
2686
|
+
|
2687
|
+
# Update properties of this object
|
2688
|
+
def update!(**args)
|
2689
|
+
@metadata_type = args[:metadata_type] if args.key?(:metadata_type)
|
2690
|
+
@response_type = args[:response_type] if args.key?(:response_type)
|
2691
|
+
end
|
2692
|
+
end
|
2693
|
+
|
2666
2694
|
# The metadata associated with a long running operation resource.
|
2667
2695
|
class OperationMetadata
|
2668
2696
|
include Google::Apis::Core::Hashable
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.13.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210604"
|
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
|
|
@@ -643,7 +649,6 @@ module Google
|
|
643
649
|
property :deadline, as: 'deadline'
|
644
650
|
property :disable_auth, as: 'disableAuth'
|
645
651
|
property :jwt_audience, as: 'jwtAudience'
|
646
|
-
property :min_deadline, as: 'minDeadline'
|
647
652
|
property :operation_deadline, as: 'operationDeadline'
|
648
653
|
property :path_translation, as: 'pathTranslation'
|
649
654
|
property :protocol, as: 'protocol'
|
@@ -1146,6 +1151,14 @@ module Google
|
|
1146
1151
|
end
|
1147
1152
|
end
|
1148
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
|
+
|
1149
1162
|
class OperationMetadata
|
1150
1163
|
# @private
|
1151
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.
|
4
|
+
version: 0.13.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
|
11
|
+
date: 2021-07-05 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.
|
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:
|
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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-servicemanagement_v1/v0.13.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: []
|