google-apis-servicemanagement_v1 0.19.0 → 0.22.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: 1a2bdb65b55efc0d3cb1a61be2c42e10abfa1e092d2c5981433daee0d14ce6dd
4
- data.tar.gz: a612a2b2b33086c1caa64e5d2c987f3da7c3e8fb7fb9d786882c84da75ac1a3e
3
+ metadata.gz: 42ddfd7a1d821b1d59b85315524e1ba16c94ccb0b255380a6f80eeffb7d16c86
4
+ data.tar.gz: 77502c9fee2a8560a895a2976744b5119c3afd6ebdf73706ce05899272dbc125
5
5
  SHA512:
6
- metadata.gz: 715202f58c1ee50b843a7fd24f5f8d4b1c9b59225f5072f92305a87d94f136c62c0e5e1d0ce1f054c13fe475c7727129d6a5cafcddec08b9e1c283bf043154a3
7
- data.tar.gz: '019b07525855aa94a529b04453619937f1f2996a7c78159ed4b99fb5db64802257b9acf9b0eb2da7d76f7d7f3c05562448111d6ca716607addbea811c1d6d393'
6
+ metadata.gz: 771dbc733946775fee22c45c5a53a36c2199a694590946e628234e7fcda7b9d208ed66d9a6aa7a3f937dd8d48a6e93bb562a7e9b74df27c55d3631b8f892673a
7
+ data.tar.gz: 9e3a0827ad536ce29f173d21b83313aa58669f8349846eb0d975430da5906ed841819bffc1fac6c6cbd3392137709f38cb6c57fdf39a239c654e8f4936e8a11c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Release history for google-apis-servicemanagement_v1
2
2
 
3
+ ### v0.22.0 (2022-04-12)
4
+
5
+ * Regenerated from discovery document revision 20220408
6
+
7
+ ### v0.21.0 (2022-04-06)
8
+
9
+ * Regenerated from discovery document revision 20220401
10
+
11
+ ### v0.20.0 (2022-02-24)
12
+
13
+ * Regenerated from discovery document revision 20220218
14
+ * Regenerated using generator version 0.4.1
15
+
3
16
  ### v0.19.0 (2022-01-06)
4
17
 
5
18
  * Regenerated from discovery document revision 20211230
@@ -238,14 +238,15 @@ module Google
238
238
  # @return [String]
239
239
  attr_accessor :jwks_uri
240
240
 
241
- # Defines the locations to extract the JWT. JWT locations can be either from
242
- # HTTP headers or URL query parameters. The rule is that the first match wins.
243
- # The checking order is: checking all headers first, then URL query parameters.
244
- # If not specified, default to use following 3 locations: 1) Authorization:
245
- # Bearer 2) x-goog-iap-jwt-assertion 3) access_token query parameter Default
246
- # locations can be specified as followings: jwt_locations: - header:
247
- # Authorization value_prefix: "Bearer " - header: x-goog-iap-jwt-assertion -
248
- # query: access_token
241
+ # Defines the locations to extract the JWT. For now it is only used by the Cloud
242
+ # Endpoints to store the OpenAPI extension [x-google-jwt-locations] (https://
243
+ # cloud.google.com/endpoints/docs/openapi/openapi-extensions#x-google-jwt-
244
+ # locations) JWT locations can be one of HTTP headers, URL query parameters or
245
+ # cookies. The rule is that the first match wins. If not specified, default to
246
+ # use following 3 locations: 1) Authorization: Bearer 2) x-goog-iap-jwt-
247
+ # assertion 3) access_token query parameter Default locations can be specified
248
+ # as followings: jwt_locations: - header: Authorization value_prefix: "Bearer " -
249
+ # header: x-goog-iap-jwt-assertion - query: access_token
249
250
  # Corresponds to the JSON property `jwtLocations`
250
251
  # @return [Array<Google::Apis::ServicemanagementV1::JwtLocation>]
251
252
  attr_accessor :jwt_locations
@@ -579,7 +580,7 @@ module Google
579
580
  # @return [Google::Apis::ServicemanagementV1::Expr]
580
581
  attr_accessor :condition
581
582
 
582
- # Specifies the principals requesting access for a Cloud Platform resource. `
583
+ # Specifies the principals requesting access for a Google Cloud resource. `
583
584
  # members` can have the following values: * `allUsers`: A special identifier
584
585
  # that represents anyone who is on the internet; with or without a Google
585
586
  # account. * `allAuthenticatedUsers`: A special identifier that represents
@@ -1145,19 +1146,6 @@ module Google
1145
1146
  end
1146
1147
  end
1147
1148
 
1148
- # Operation payload for EnableService method.
1149
- class EnableServiceResponse
1150
- include Google::Apis::Core::Hashable
1151
-
1152
- def initialize(**args)
1153
- update!(**args)
1154
- end
1155
-
1156
- # Update properties of this object
1157
- def update!(**args)
1158
- end
1159
- end
1160
-
1161
1149
  # `Endpoint` describes a network address of a service that serves a set of APIs.
1162
1150
  # It is commonly known as a service endpoint. A service may expose any number of
1163
1151
  # service endpoints, and all service endpoints share the same service definition,
@@ -1802,6 +1790,11 @@ module Google
1802
1790
  class JwtLocation
1803
1791
  include Google::Apis::Core::Hashable
1804
1792
 
1793
+ # Specifies cookie name to extract JWT token.
1794
+ # Corresponds to the JSON property `cookie`
1795
+ # @return [String]
1796
+ attr_accessor :cookie
1797
+
1805
1798
  # Specifies HTTP header name to extract JWT token.
1806
1799
  # Corresponds to the JSON property `header`
1807
1800
  # @return [String]
@@ -1828,6 +1821,7 @@ module Google
1828
1821
 
1829
1822
  # Update properties of this object
1830
1823
  def update!(**args)
1824
+ @cookie = args[:cookie] if args.key?(:cookie)
1831
1825
  @header = args[:header] if args.key?(:header)
1832
1826
  @query = args[:query] if args.key?(:query)
1833
1827
  @value_prefix = args[:value_prefix] if args.key?(:value_prefix)
@@ -2089,8 +2083,8 @@ module Google
2089
2083
  # @return [String]
2090
2084
  attr_accessor :producer_project_id
2091
2085
 
2092
- # The name of the service. See the [overview](/service-management/overview) for
2093
- # naming requirements.
2086
+ # The name of the service. See the [overview](https://cloud.google.com/service-
2087
+ # management/overview) for naming requirements.
2094
2088
  # Corresponds to the JSON property `serviceName`
2095
2089
  # @return [String]
2096
2090
  attr_accessor :service_name
@@ -3111,8 +3105,7 @@ module Google
3111
3105
  # @return [String]
3112
3106
  attr_accessor :create_time
3113
3107
 
3114
- # This field is deprecated and will be deleted. Please remove usage of this
3115
- # field.
3108
+ # The user who created the Rollout. Readonly.
3116
3109
  # Corresponds to the JSON property `createdBy`
3117
3110
  # @return [String]
3118
3111
  attr_accessor :created_by
@@ -3823,7 +3816,7 @@ module Google
3823
3816
  include Google::Apis::Core::Hashable
3824
3817
 
3825
3818
  # The set of permissions to check for the `resource`. Permissions with wildcards
3826
- # (such as '*' or 'storage.*') are not allowed. For more information see [IAM
3819
+ # (such as `*` or `storage.*`) are not allowed. For more information see [IAM
3827
3820
  # Overview](https://cloud.google.com/iam/docs/overview#permissions).
3828
3821
  # Corresponds to the JSON property `permissions`
3829
3822
  # @return [Array<String>]
@@ -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.0"
19
+ GEM_VERSION = "0.22.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.0"
22
+ GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20211230"
25
+ REVISION = "20220408"
26
26
  end
27
27
  end
28
28
  end
@@ -190,12 +190,6 @@ module Google
190
190
  include Google::Apis::Core::JsonObjectSupport
191
191
  end
192
192
 
193
- class EnableServiceResponse
194
- class Representation < Google::Apis::Core::JsonRepresentation; end
195
-
196
- include Google::Apis::Core::JsonObjectSupport
197
- end
198
-
199
193
  class Endpoint
200
194
  class Representation < Google::Apis::Core::JsonRepresentation; end
201
195
 
@@ -816,12 +810,6 @@ module Google
816
810
  end
817
811
  end
818
812
 
819
- class EnableServiceResponse
820
- # @private
821
- class Representation < Google::Apis::Core::JsonRepresentation
822
- end
823
- end
824
-
825
813
  class Endpoint
826
814
  # @private
827
815
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -955,6 +943,7 @@ module Google
955
943
  class JwtLocation
956
944
  # @private
957
945
  class Representation < Google::Apis::Core::JsonRepresentation
946
+ property :cookie, as: 'cookie'
958
947
  property :header, as: 'header'
959
948
  property :query, as: 'query'
960
949
  property :value_prefix, as: 'valuePrefix'
@@ -171,8 +171,9 @@ module Google
171
171
  # UndeleteService to restore the service. After 30 days, the service will be
172
172
  # permanently deleted. Operation
173
173
  # @param [String] service_name
174
- # Required. The name of the service. See the [overview](/service-management/
175
- # overview) for naming requirements. For example: `example.googleapis.com`.
174
+ # Required. The name of the service. See the [overview](https://cloud.google.com/
175
+ # service-management/overview) for naming requirements. For example: `example.
176
+ # googleapis.com`.
176
177
  # @param [String] fields
177
178
  # Selector specifying which fields to include in a partial response.
178
179
  # @param [String] quota_user
@@ -272,8 +273,9 @@ module Google
272
273
 
273
274
  # Gets a service configuration (version) for a managed service.
274
275
  # @param [String] service_name
275
- # Required. The name of the service. See the [overview](/service-management/
276
- # overview) for naming requirements. For example: `example.googleapis.com`.
276
+ # Required. The name of the service. See the [overview](https://cloud.google.com/
277
+ # service-management/overview) for naming requirements. For example: `example.
278
+ # googleapis.com`.
277
279
  # @param [String] config_id
278
280
  # Required. The id of the service configuration resource. This field must be
279
281
  # specified for the server to return all fields, including `SourceInfo`.
@@ -465,8 +467,9 @@ module Google
465
467
  # service must exist and must have been deleted within the last 30 days.
466
468
  # Operation
467
469
  # @param [String] service_name
468
- # Required. The name of the service. See the [overview](/service-management/
469
- # overview) for naming requirements. For example: `example.googleapis.com`.
470
+ # Required. The name of the service. See the [overview](https://cloud.google.com/
471
+ # service-management/overview) for naming requirements. For example: `example.
472
+ # googleapis.com`.
470
473
  # @param [String] fields
471
474
  # Selector specifying which fields to include in a partial response.
472
475
  # @param [String] quota_user
@@ -500,8 +503,9 @@ module Google
500
503
  # 100 most recent service configurations and ones referenced by existing
501
504
  # rollouts are kept for each service. The rest will be deleted eventually.
502
505
  # @param [String] service_name
503
- # Required. The name of the service. See the [overview](/service-management/
504
- # overview) for naming requirements. For example: `example.googleapis.com`.
506
+ # Required. The name of the service. See the [overview](https://cloud.google.com/
507
+ # service-management/overview) for naming requirements. For example: `example.
508
+ # googleapis.com`.
505
509
  # @param [Google::Apis::ServicemanagementV1::Service] service_object
506
510
  # @param [String] fields
507
511
  # Selector specifying which fields to include in a partial response.
@@ -534,8 +538,9 @@ module Google
534
538
 
535
539
  # Gets a service configuration (version) for a managed service.
536
540
  # @param [String] service_name
537
- # Required. The name of the service. See the [overview](/service-management/
538
- # overview) for naming requirements. For example: `example.googleapis.com`.
541
+ # Required. The name of the service. See the [overview](https://cloud.google.com/
542
+ # service-management/overview) for naming requirements. For example: `example.
543
+ # googleapis.com`.
539
544
  # @param [String] config_id
540
545
  # Required. The id of the service configuration resource. This field must be
541
546
  # specified for the server to return all fields, including `SourceInfo`.
@@ -573,8 +578,9 @@ module Google
573
578
  # Lists the history of the service configuration for a managed service, from the
574
579
  # newest to the oldest.
575
580
  # @param [String] service_name
576
- # Required. The name of the service. See the [overview](/service-management/
577
- # overview) for naming requirements. For example: `example.googleapis.com`.
581
+ # Required. The name of the service. See the [overview](https://cloud.google.com/
582
+ # service-management/overview) for naming requirements. For example: `example.
583
+ # googleapis.com`.
578
584
  # @param [Fixnum] page_size
579
585
  # The max number of items to include in the response list. Page size is 50 if
580
586
  # not specified. Maximum value is 100.
@@ -617,8 +623,9 @@ module Google
617
623
  # ones referenced by existing service configurtions are kept for each service.
618
624
  # The rest will be deleted eventually. Operation
619
625
  # @param [String] service_name
620
- # Required. The name of the service. See the [overview](/service-management/
621
- # overview) for naming requirements. For example: `example.googleapis.com`.
626
+ # Required. The name of the service. See the [overview](https://cloud.google.com/
627
+ # service-management/overview) for naming requirements. For example: `example.
628
+ # googleapis.com`.
622
629
  # @param [Google::Apis::ServicemanagementV1::SubmitConfigSourceRequest] submit_config_source_request_object
623
630
  # @param [String] fields
624
631
  # Selector specifying which fields to include in a partial response.
@@ -768,8 +775,9 @@ module Google
768
775
  # set of 100 most recent) rollouts are kept for each service. The rest will be
769
776
  # deleted eventually. Operation
770
777
  # @param [String] service_name
771
- # Required. The name of the service. See the [overview](/service-management/
772
- # overview) for naming requirements. For example: `example.googleapis.com`.
778
+ # Required. The name of the service. See the [overview](https://cloud.google.com/
779
+ # service-management/overview) for naming requirements. For example: `example.
780
+ # googleapis.com`.
773
781
  # @param [Google::Apis::ServicemanagementV1::Rollout] rollout_object
774
782
  # @param [String] fields
775
783
  # Selector specifying which fields to include in a partial response.
@@ -802,8 +810,9 @@ module Google
802
810
 
803
811
  # Gets a service configuration rollout.
804
812
  # @param [String] service_name
805
- # Required. The name of the service. See the [overview](/service-management/
806
- # overview) for naming requirements. For example: `example.googleapis.com`.
813
+ # Required. The name of the service. See the [overview](https://cloud.google.com/
814
+ # service-management/overview) for naming requirements. For example: `example.
815
+ # googleapis.com`.
807
816
  # @param [String] rollout_id
808
817
  # Required. The id of the rollout resource.
809
818
  # @param [String] fields
@@ -837,15 +846,14 @@ module Google
837
846
  # Lists the history of the service configuration rollouts for a managed service,
838
847
  # from the newest to the oldest.
839
848
  # @param [String] service_name
840
- # Required. The name of the service. See the [overview](/service-management/
841
- # overview) for naming requirements. For example: `example.googleapis.com`.
849
+ # Required. The name of the service. See the [overview](https://cloud.google.com/
850
+ # service-management/overview) for naming requirements. For example: `example.
851
+ # googleapis.com`.
842
852
  # @param [String] filter
843
853
  # Required. Use `filter` to return subset of rollouts. The following filters are
844
- # supported: -- To limit the results to only those in [status](google.api.
845
- # servicemanagement.v1.RolloutStatus) 'SUCCESS', use filter='status=SUCCESS' --
846
- # To limit the results to those in [status](google.api.servicemanagement.v1.
847
- # RolloutStatus) 'CANCELLED' or 'FAILED', use filter='status=CANCELLED OR status=
848
- # FAILED'
854
+ # supported: -- To limit the results to only those in status 'SUCCESS', use
855
+ # filter='status=SUCCESS' -- To limit the results to those in status 'CANCELLED'
856
+ # or 'FAILED', use filter='status=CANCELLED OR status=FAILED'
849
857
  # @param [Fixnum] page_size
850
858
  # The max number of items to include in the response list. Page size is 50 if
851
859
  # not specified. Maximum value is 100.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-servicemanagement_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.19.0
4
+ version: 0.22.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-01-10 00:00:00.000000000 Z
11
+ date: 2022-04-18 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-servicemanagement_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-servicemanagement_v1/v0.19.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-servicemanagement_v1/v0.22.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-servicemanagement_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.4
78
+ rubygems_version: 3.3.5
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Service Management API V1