google-apis-servicecontrol_v1 0.25.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: cb7412115ef483394bb7e7b86faa186d3188056e1b34b2dbe2e1f9cdc9f0f8e7
4
- data.tar.gz: e37714fda8144c487ab64fb1adc73f9a14d52e2f6942b31aa1a9e460118a035a
3
+ metadata.gz: f6849e70bc7fd8d6c1eed237ea049a1722b12ecd24530fbd965464c6607edc26
4
+ data.tar.gz: 7a80c9c496bdc788bd0cf3c480fb5aa6762f74e022cf1b3d6496b4dc4c3fce1e
5
5
  SHA512:
6
- metadata.gz: 9e944a2652288b3e4f9ef7ba143ceda34461d1769f370770a135873675b3a6fc0654cf4ac0cbf9191ba8af1552b90d0656b532ea4b7424899dfd7fa0299d6b13
7
- data.tar.gz: d2499ca78bacccf006a29e893a6af6bef4126e053ba6c464ecd925886c433cb2dd84a8db2b5ed7eae3e499f1d1b83aab4eb5d010f1c632392c8c63609bb06cd3
6
+ metadata.gz: a8fdae8353f3cbc8a051a64218d1efe86e97b2b9198f5b8472505adf74488eb3f3b76e9e1137e22ac07ee9d1088c013c9c7ad836ebfab6978ab16331098f848f
7
+ data.tar.gz: a97b9bedee79071efce8bb313cef18378e8fe41fa49602ef3b9c28997812c1c7916564c7ed4117690d71461290f6107235c1e46340b0a9e3901106dfe2a5c039
data/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Release history for google-apis-servicecontrol_v1
2
2
 
3
+ ### v0.27.0 (2023-02-05)
4
+
5
+ * Regenerated from discovery document revision 20230127
6
+ * Regenerated using generator version 0.11.1
7
+
8
+ ### v0.26.0 (2022-10-20)
9
+
10
+ * Regenerated from discovery document revision 20221014
11
+ * Regenerated using generator version 0.11.0
12
+
3
13
  ### v0.25.0 (2022-09-29)
4
14
 
5
15
  * Regenerated from discovery document revision 20220923
@@ -622,6 +622,11 @@ module Google
622
622
  # @return [Google::Apis::ServicecontrolV1::CheckInfo]
623
623
  attr_accessor :check_info
624
624
 
625
+ # Esf migration server override during chemist check v2 migration
626
+ # Corresponds to the JSON property `esfMigrationServerOverride`
627
+ # @return [Google::Apis::ServicecontrolV1::EsfMigrationServerOverride]
628
+ attr_accessor :esf_migration_server_override
629
+
625
630
  # The same operation_id value used in the CheckRequest. Used for logging and
626
631
  # diagnostics purposes.
627
632
  # Corresponds to the JSON property `operationId`
@@ -651,6 +656,7 @@ module Google
651
656
  def update!(**args)
652
657
  @check_errors = args[:check_errors] if args.key?(:check_errors)
653
658
  @check_info = args[:check_info] if args.key?(:check_info)
659
+ @esf_migration_server_override = args[:esf_migration_server_override] if args.key?(:esf_migration_server_override)
654
660
  @operation_id = args[:operation_id] if args.key?(:operation_id)
655
661
  @quota_info = args[:quota_info] if args.key?(:quota_info)
656
662
  @service_config_id = args[:service_config_id] if args.key?(:service_config_id)
@@ -781,6 +787,25 @@ module Google
781
787
  end
782
788
  end
783
789
 
790
+ # Esf migration server override during chemist check v2 migration
791
+ class EsfMigrationServerOverride
792
+ include Google::Apis::Core::Hashable
793
+
794
+ # Esf migration override mode
795
+ # Corresponds to the JSON property `overrideMode`
796
+ # @return [String]
797
+ attr_accessor :override_mode
798
+
799
+ def initialize(**args)
800
+ update!(**args)
801
+ end
802
+
803
+ # Update properties of this object
804
+ def update!(**args)
805
+ @override_mode = args[:override_mode] if args.key?(:override_mode)
806
+ end
807
+ end
808
+
784
809
  # Exemplars are example points that may be used to annotate aggregated
785
810
  # distribution values. They are metadata that gives information about a
786
811
  # particular value added to a Distribution bucket, such as a trace ID that was
@@ -2005,13 +2030,16 @@ module Google
2005
2030
  class RequestMetadata
2006
2031
  include Google::Apis::Core::Hashable
2007
2032
 
2008
- # The IP address of the caller. For caller from internet, this will be public
2009
- # IPv4 or IPv6 address. For caller from a Compute Engine VM with external IP
2010
- # address, this will be the VM's external IP address. For caller from a Compute
2011
- # Engine VM without external IP address, if the VM is in the same organization (
2012
- # or project) as the accessed resource, `caller_ip` will be the VM's internal
2013
- # IPv4 address, otherwise the `caller_ip` will be redacted to "gce-internal-ip".
2014
- # See https://cloud.google.com/compute/docs/vpc/ for more information.
2033
+ # The IP address of the caller. For a caller from the internet, this will be the
2034
+ # public IPv4 or IPv6 address. For calls made from inside Google's internal
2035
+ # production network from one GCP service to another, `caller_ip` will be
2036
+ # redacted to "private". For a caller from a Compute Engine VM with a external
2037
+ # IP address, `caller_ip` will be the VM's external IP address. For a caller
2038
+ # from a Compute Engine VM without a external IP address, if the VM is in the
2039
+ # same organization (or project) as the accessed resource, `caller_ip` will be
2040
+ # the VM's internal IPv4 address, otherwise `caller_ip` will be redacted to "gce-
2041
+ # internal-ip". See https://cloud.google.com/compute/docs/vpc/ for more
2042
+ # information.
2015
2043
  # Corresponds to the JSON property `callerIp`
2016
2044
  # @return [String]
2017
2045
  attr_accessor :caller_ip
@@ -2031,7 +2059,7 @@ module Google
2031
2059
  # Line Tool apitools-client/1.0 gcloud/0.9.62`: The request was made by the
2032
2060
  # Google Cloud SDK CLI (gcloud). + `AppEngine-Google; (+http://code.google.com/
2033
2061
  # appengine; appid: s~my-project`: The request was made from the `my-project`
2034
- # App Engine app. NOLINT
2062
+ # App Engine app.
2035
2063
  # Corresponds to the JSON property `callerSuppliedUserAgent`
2036
2064
  # @return [String]
2037
2065
  attr_accessor :caller_supplied_user_agent
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ServicecontrolV1
18
18
  # Version of the google-apis-servicecontrol_v1 gem
19
- GEM_VERSION = "0.25.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.10.0"
22
+ GENERATOR_VERSION = "0.11.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220923"
25
+ REVISION = "20230127"
26
26
  end
27
27
  end
28
28
  end
@@ -112,6 +112,12 @@ module Google
112
112
  include Google::Apis::Core::JsonObjectSupport
113
113
  end
114
114
 
115
+ class EsfMigrationServerOverride
116
+ class Representation < Google::Apis::Core::JsonRepresentation; end
117
+
118
+ include Google::Apis::Core::JsonObjectSupport
119
+ end
120
+
115
121
  class Exemplar
116
122
  class Representation < Google::Apis::Core::JsonRepresentation; end
117
123
 
@@ -495,6 +501,8 @@ module Google
495
501
 
496
502
  property :check_info, as: 'checkInfo', class: Google::Apis::ServicecontrolV1::CheckInfo, decorator: Google::Apis::ServicecontrolV1::CheckInfo::Representation
497
503
 
504
+ property :esf_migration_server_override, as: 'esfMigrationServerOverride', class: Google::Apis::ServicecontrolV1::EsfMigrationServerOverride, decorator: Google::Apis::ServicecontrolV1::EsfMigrationServerOverride::Representation
505
+
498
506
  property :operation_id, as: 'operationId'
499
507
  property :quota_info, as: 'quotaInfo', class: Google::Apis::ServicecontrolV1::QuotaInfo, decorator: Google::Apis::ServicecontrolV1::QuotaInfo::Representation
500
508
 
@@ -532,6 +540,13 @@ module Google
532
540
  end
533
541
  end
534
542
 
543
+ class EsfMigrationServerOverride
544
+ # @private
545
+ class Representation < Google::Apis::Core::JsonRepresentation
546
+ property :override_mode, as: 'overrideMode'
547
+ end
548
+ end
549
+
535
550
  class Exemplar
536
551
  # @private
537
552
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-servicecontrol_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.25.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: 2022-10-03 00:00:00.000000000 Z
11
+ date: 2023-02-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.9.0
19
+ version: 0.9.1
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.9.0
29
+ version: 0.9.1
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-servicecontrol_v1/v0.25.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-servicecontrol_v1/v0.27.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-servicecontrol_v1
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.3.14
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 V1