google-apis-servicecontrol_v2 0.26.0 → 0.27.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3bb81876ae346788e47372203556f06e11d784e209f9db17167f6a8fccefd984
|
4
|
+
data.tar.gz: 53391009ac05dc13d519406b8836b800d754cceed911ef431e6239132e8546ec
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dc4255a0a417ae45429d761a15e7f70a63c36c30a0755ec2d25db21f123d3e26bc72cd4cbaa2d1466cd2a4eef758427c651997a5c54bb1fe3dc52ea3998fdc26
|
7
|
+
data.tar.gz: dc9e034003967c7487f4bcb88bc5b7ee440d4b3bd1505c279a2e53ac8f67c6ce906de23f9bf0c436db0c7d6da175397fae2c1fda32f7d6aef1a233d838772adf
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-servicecontrol_v2
|
2
2
|
|
3
|
+
### v0.27.0 (2023-02-12)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230127
|
6
|
+
* Regenerated using generator version 0.11.1
|
7
|
+
|
3
8
|
### v0.26.0 (2022-10-28)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20221014
|
@@ -516,6 +516,11 @@ module Google
|
|
516
516
|
class CheckResponse
|
517
517
|
include Google::Apis::Core::Hashable
|
518
518
|
|
519
|
+
# Esf migration server override during chemist check v2 migration
|
520
|
+
# Corresponds to the JSON property `esfMigrationServerOverride`
|
521
|
+
# @return [Google::Apis::ServicecontrolV2::EsfMigrationServerOverride]
|
522
|
+
attr_accessor :esf_migration_server_override
|
523
|
+
|
519
524
|
# Returns a set of request contexts generated from the `CheckRequest`.
|
520
525
|
# Corresponds to the JSON property `headers`
|
521
526
|
# @return [Hash<String,String>]
|
@@ -537,11 +542,31 @@ module Google
|
|
537
542
|
|
538
543
|
# Update properties of this object
|
539
544
|
def update!(**args)
|
545
|
+
@esf_migration_server_override = args[:esf_migration_server_override] if args.key?(:esf_migration_server_override)
|
540
546
|
@headers = args[:headers] if args.key?(:headers)
|
541
547
|
@status = args[:status] if args.key?(:status)
|
542
548
|
end
|
543
549
|
end
|
544
550
|
|
551
|
+
# Esf migration server override during chemist check v2 migration
|
552
|
+
class EsfMigrationServerOverride
|
553
|
+
include Google::Apis::Core::Hashable
|
554
|
+
|
555
|
+
# Esf migration override mode
|
556
|
+
# Corresponds to the JSON property `overrideMode`
|
557
|
+
# @return [String]
|
558
|
+
attr_accessor :override_mode
|
559
|
+
|
560
|
+
def initialize(**args)
|
561
|
+
update!(**args)
|
562
|
+
end
|
563
|
+
|
564
|
+
# Update properties of this object
|
565
|
+
def update!(**args)
|
566
|
+
@override_mode = args[:override_mode] if args.key?(:override_mode)
|
567
|
+
end
|
568
|
+
end
|
569
|
+
|
545
570
|
# First party identity principal.
|
546
571
|
class FirstPartyPrincipal
|
547
572
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ServicecontrolV2
|
18
18
|
# Version of the google-apis-servicecontrol_v2 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.27.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.11.
|
22
|
+
GENERATOR_VERSION = "0.11.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230127"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -70,6 +70,12 @@ module Google
|
|
70
70
|
include Google::Apis::Core::JsonObjectSupport
|
71
71
|
end
|
72
72
|
|
73
|
+
class EsfMigrationServerOverride
|
74
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
75
|
+
|
76
|
+
include Google::Apis::Core::JsonObjectSupport
|
77
|
+
end
|
78
|
+
|
73
79
|
class FirstPartyPrincipal
|
74
80
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
75
81
|
|
@@ -304,12 +310,21 @@ module Google
|
|
304
310
|
class CheckResponse
|
305
311
|
# @private
|
306
312
|
class Representation < Google::Apis::Core::JsonRepresentation
|
313
|
+
property :esf_migration_server_override, as: 'esfMigrationServerOverride', class: Google::Apis::ServicecontrolV2::EsfMigrationServerOverride, decorator: Google::Apis::ServicecontrolV2::EsfMigrationServerOverride::Representation
|
314
|
+
|
307
315
|
hash :headers, as: 'headers'
|
308
316
|
property :status, as: 'status', class: Google::Apis::ServicecontrolV2::Status, decorator: Google::Apis::ServicecontrolV2::Status::Representation
|
309
317
|
|
310
318
|
end
|
311
319
|
end
|
312
320
|
|
321
|
+
class EsfMigrationServerOverride
|
322
|
+
# @private
|
323
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
324
|
+
property :override_mode, as: 'overrideMode'
|
325
|
+
end
|
326
|
+
end
|
327
|
+
|
313
328
|
class FirstPartyPrincipal
|
314
329
|
# @private
|
315
330
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-servicecontrol_v2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.27.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:
|
11
|
+
date: 2023-02-12 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-servicecontrol_v2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-servicecontrol_v2/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-servicecontrol_v2/v0.27.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-servicecontrol_v2
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.
|
78
|
+
rubygems_version: 3.4.2
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Service Control API V2
|