google-apis-servicenetworking_v1 0.6.0 → 0.11.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: a5d616431b21afc4852537b76f01737bcfba5643aa52be3b961f1163ce6181b3
4
- data.tar.gz: f2950924660a5c67da6804fdba26f8914a3deb521fd5a2291f3e2af0edafdb32
3
+ metadata.gz: d939ca0dfa301fdf48867076570ce045a9f799c26252e629e844db18606bd604
4
+ data.tar.gz: 87a79cbc4d374f7ad813599e28bb595629a4b47307d0e073f2cd2c4a8f0c8a80
5
5
  SHA512:
6
- metadata.gz: 6c347fa769ee2941ed6c86c87b6842b349e2ea5bb704c18cfa8964f7ca5b5bec46bbfa0ca0560d8c05e3d88256b7e050e5a2d6a4b1c0d64bb821860d8a7b92de
7
- data.tar.gz: e738910db1ab946ab7bb57bf1ce14a2ed235e05aae4ba5dac9b103afc19df6521b1ec9a13f79585eff5f37aa505d8d0d423feebb60dbbe37c62035775da4fefb
6
+ metadata.gz: 51fc3f7e443a2ec830d0b0a4ab8dfab2454c04fddef9dff693c73323cf5c55302b5186072b0928a10ce29e72ffddd69beaa01b9af344d453f93dd278533518a8
7
+ data.tar.gz: 6955473a3f03be07e80d46d4e3939cbb146c48c32936d3718c1135bfd774864905454bd4a2a29a8ae178d211c04fc8c2f9d7907d095ec00f61580780ae413ecb
data/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # Release history for google-apis-servicenetworking_v1
2
2
 
3
+ ### v0.11.0 (2021-06-29)
4
+
5
+ * Regenerated using generator version 0.4.0
6
+
7
+ ### v0.10.0 (2021-06-24)
8
+
9
+ * Regenerated using generator version 0.3.0
10
+
11
+ ### v0.9.0 (2021-05-27)
12
+
13
+ * Regenerated from discovery document revision 20210525
14
+
15
+ ### v0.8.0 (2021-05-22)
16
+
17
+ * Regenerated from discovery document revision 20210519
18
+ * Unspecified changes
19
+
20
+ ### v0.7.0 (2021-05-08)
21
+
22
+ * Regenerated from discovery document revision 20210505
23
+
3
24
  ### v0.6.0 (2021-04-02)
4
25
 
5
26
  * Regenerated from discovery document revision 20210331
@@ -494,11 +494,13 @@ module Google
494
494
  end
495
495
  end
496
496
 
497
- # `Authentication` defines the authentication configuration for an API. Example
498
- # for an API targeted for external use: name: calendar.googleapis.com
497
+ # `Authentication` defines the authentication configuration for API methods
498
+ # provided by an API service. Example: name: calendar.googleapis.com
499
499
  # authentication: providers: - id: google_calendar_auth jwks_uri: https://www.
500
500
  # googleapis.com/oauth2/v1/certs issuer: https://securetoken.google.com rules: -
501
- # selector: "*" requirements: provider_id: google_calendar_auth
501
+ # selector: "*" requirements: provider_id: google_calendar_auth - selector:
502
+ # google.calendar.Delegate oauth: canonical_scopes: https://www.googleapis.com/
503
+ # auth/calendar.read
502
504
  class Authentication
503
505
  include Google::Apis::Core::Hashable
504
506
 
@@ -637,12 +639,6 @@ module Google
637
639
  # @return [String]
638
640
  attr_accessor :jwt_audience
639
641
 
640
- # Minimum deadline in seconds needed for this method. Calls having deadline
641
- # value lower than this will be rejected.
642
- # Corresponds to the JSON property `minDeadline`
643
- # @return [Float]
644
- attr_accessor :min_deadline
645
-
646
642
  # The number of seconds to wait for the completion of a long running operation.
647
643
  # The default is no deadline.
648
644
  # Corresponds to the JSON property `operationDeadline`
@@ -683,7 +679,6 @@ module Google
683
679
  @deadline = args[:deadline] if args.key?(:deadline)
684
680
  @disable_auth = args[:disable_auth] if args.key?(:disable_auth)
685
681
  @jwt_audience = args[:jwt_audience] if args.key?(:jwt_audience)
686
- @min_deadline = args[:min_deadline] if args.key?(:min_deadline)
687
682
  @operation_deadline = args[:operation_deadline] if args.key?(:operation_deadline)
688
683
  @path_translation = args[:path_translation] if args.key?(:path_translation)
689
684
  @protocol = args[:protocol] if args.key?(:protocol)
@@ -1426,26 +1421,21 @@ module Google
1426
1421
  end
1427
1422
  end
1428
1423
 
1429
- # `Endpoint` describes a network endpoint of a service that serves a set of APIs.
1430
- # It is commonly known as a service endpoint. A service may expose any number
1431
- # of service endpoints, and all service endpoints share the same service
1432
- # definition, such as quota limits and monitoring metrics. Example service
1433
- # configuration: name: library-example.googleapis.com endpoints: # Below entry
1434
- # makes 'google.example.library.v1.Library' # API be served from endpoint
1435
- # address library-example.googleapis.com. # It also allows HTTP OPTIONS calls to
1436
- # be passed to the backend, for # it to decide whether the subsequent cross-
1437
- # origin request is # allowed to proceed. - name: library-example.googleapis.com
1438
- # allow_cors: true
1424
+ # `Endpoint` describes a network address of a service that serves a set of APIs.
1425
+ # It is commonly known as a service endpoint. A service may expose any number of
1426
+ # service endpoints, and all service endpoints share the same service definition,
1427
+ # such as quota limits and monitoring metrics. Example: type: google.api.
1428
+ # Service name: library-example.googleapis.com endpoints: # Declares network
1429
+ # address `https://library-example.googleapis.com` # for service `library-
1430
+ # example.googleapis.com`. The `https` scheme # is implicit for all service
1431
+ # endpoints. Other schemes may be # supported in the future. - name: library-
1432
+ # example.googleapis.com allow_cors: false - name: content-staging-library-
1433
+ # example.googleapis.com # Allows HTTP OPTIONS calls to be passed to the API
1434
+ # frontend, for it # to decide whether the subsequent cross-origin request is
1435
+ # allowed # to proceed. allow_cors: true
1439
1436
  class Endpoint
1440
1437
  include Google::Apis::Core::Hashable
1441
1438
 
1442
- # DEPRECATED: This field is no longer supported. Instead of using aliases,
1443
- # please specify multiple google.api.Endpoint for each of the intended aliases.
1444
- # Additional names that this endpoint will be hosted on.
1445
- # Corresponds to the JSON property `aliases`
1446
- # @return [Array<String>]
1447
- attr_accessor :aliases
1448
-
1449
1439
  # Allowing [CORS](https://en.wikipedia.org/wiki/Cross-origin_resource_sharing),
1450
1440
  # aka cross-domain traffic, would allow the backends served from this endpoint
1451
1441
  # to receive and respond to HTTP OPTIONS requests. The response will be used by
@@ -1475,7 +1465,6 @@ module Google
1475
1465
 
1476
1466
  # Update properties of this object
1477
1467
  def update!(**args)
1478
- @aliases = args[:aliases] if args.key?(:aliases)
1479
1468
  @allow_cors = args[:allow_cors] if args.key?(:allow_cors)
1480
1469
  @name = args[:name] if args.key?(:name)
1481
1470
  @target = args[:target] if args.key?(:target)
@@ -2879,6 +2868,20 @@ module Google
2879
2868
  end
2880
2869
  end
2881
2870
 
2871
+ # Metadata provided through GetOperation request for the LRO generated by
2872
+ # Partial Delete Connection API
2873
+ class PartialDeleteConnectionMetadata
2874
+ include Google::Apis::Core::Hashable
2875
+
2876
+ def initialize(**args)
2877
+ update!(**args)
2878
+ end
2879
+
2880
+ # Update properties of this object
2881
+ def update!(**args)
2882
+ end
2883
+ end
2884
+
2882
2885
  # DNS domain suffix for which requests originating in the producer VPC network
2883
2886
  # are resolved in the associated consumer VPC network.
2884
2887
  class PeeredDnsDomain
@@ -3435,13 +3438,16 @@ module Google
3435
3438
  end
3436
3439
  end
3437
3440
 
3438
- # `Service` is the root object of Google service configuration schema. It
3439
- # describes basic information about a service, such as the name and the title,
3440
- # and delegates other aspects to sub-sections. Each sub-section is either a
3441
- # proto message or a repeated proto message that configures a specific aspect,
3442
- # such as auth. See each proto message definition for details. Example: type:
3443
- # google.api.Service name: calendar.googleapis.com title: Google Calendar API
3444
- # apis: - name: google.calendar.v3.Calendar authentication: providers: - id:
3441
+ # `Service` is the root object of Google API service configuration (service
3442
+ # config). It describes the basic information about a logical service, such as
3443
+ # the service name and the user-facing title, and delegates other aspects to sub-
3444
+ # sections. Each sub-section is either a proto message or a repeated proto
3445
+ # message that configures a specific aspect, such as auth. For more information,
3446
+ # see each proto message definition. Example: type: google.api.Service name:
3447
+ # calendar.googleapis.com title: Google Calendar API apis: - name: google.
3448
+ # calendar.v3.Calendar visibility: rules: - selector: "google.calendar.v3.*"
3449
+ # restriction: PREVIEW backend: rules: - selector: "google.calendar.v3.*"
3450
+ # address: calendar.example.com authentication: providers: - id:
3445
3451
  # google_calendar_auth jwks_uri: https://www.googleapis.com/oauth2/v1/certs
3446
3452
  # issuer: https://securetoken.google.com rules: - selector: "*" requirements:
3447
3453
  # provider_id: google_calendar_auth
@@ -3457,11 +3463,13 @@ module Google
3457
3463
  # @return [Array<Google::Apis::ServicenetworkingV1::Api>]
3458
3464
  attr_accessor :apis
3459
3465
 
3460
- # `Authentication` defines the authentication configuration for an API. Example
3461
- # for an API targeted for external use: name: calendar.googleapis.com
3466
+ # `Authentication` defines the authentication configuration for API methods
3467
+ # provided by an API service. Example: name: calendar.googleapis.com
3462
3468
  # authentication: providers: - id: google_calendar_auth jwks_uri: https://www.
3463
3469
  # googleapis.com/oauth2/v1/certs issuer: https://securetoken.google.com rules: -
3464
- # selector: "*" requirements: provider_id: google_calendar_auth
3470
+ # selector: "*" requirements: provider_id: google_calendar_auth - selector:
3471
+ # google.calendar.Delegate oauth: canonical_scopes: https://www.googleapis.com/
3472
+ # auth/calendar.read
3465
3473
  # Corresponds to the JSON property `authentication`
3466
3474
  # @return [Google::Apis::ServicenetworkingV1::Authentication]
3467
3475
  attr_accessor :authentication
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ServicenetworkingV1
18
18
  # Version of the google-apis-servicenetworking_v1 gem
19
- GEM_VERSION = "0.6.0"
19
+ GEM_VERSION = "0.11.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 = "20210331"
25
+ REVISION = "20210525"
26
26
  end
27
27
  end
28
28
  end
@@ -430,6 +430,12 @@ module Google
430
430
  include Google::Apis::Core::JsonObjectSupport
431
431
  end
432
432
 
433
+ class PartialDeleteConnectionMetadata
434
+ class Representation < Google::Apis::Core::JsonRepresentation; end
435
+
436
+ include Google::Apis::Core::JsonObjectSupport
437
+ end
438
+
433
439
  class PeeredDnsDomain
434
440
  class Representation < Google::Apis::Core::JsonRepresentation; end
435
441
 
@@ -784,7 +790,6 @@ module Google
784
790
  property :deadline, as: 'deadline'
785
791
  property :disable_auth, as: 'disableAuth'
786
792
  property :jwt_audience, as: 'jwtAudience'
787
- property :min_deadline, as: 'minDeadline'
788
793
  property :operation_deadline, as: 'operationDeadline'
789
794
  property :path_translation, as: 'pathTranslation'
790
795
  property :protocol, as: 'protocol'
@@ -989,7 +994,6 @@ module Google
989
994
  class Endpoint
990
995
  # @private
991
996
  class Representation < Google::Apis::Core::JsonRepresentation
992
- collection :aliases, as: 'aliases'
993
997
  property :allow_cors, as: 'allowCors'
994
998
  property :name, as: 'name'
995
999
  property :target, as: 'target'
@@ -1291,6 +1295,12 @@ module Google
1291
1295
  end
1292
1296
  end
1293
1297
 
1298
+ class PartialDeleteConnectionMetadata
1299
+ # @private
1300
+ class Representation < Google::Apis::Core::JsonRepresentation
1301
+ end
1302
+ end
1303
+
1294
1304
  class PeeredDnsDomain
1295
1305
  # @private
1296
1306
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,29 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-servicenetworking_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.11.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-04-05 00:00:00.000000000 Z
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.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 Networking 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-servicenetworking_v1/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-servicenetworking_v1/v0.6.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-servicenetworking_v1/v0.11.0
56
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-servicenetworking_v1
57
63
  post_install_message:
58
64
  rdoc_options: []
@@ -69,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
69
75
  - !ruby/object:Gem::Version
70
76
  version: '0'
71
77
  requirements: []
72
- rubygems_version: 3.2.13
78
+ rubygems_version: 3.2.17
73
79
  signing_key:
74
80
  specification_version: 4
75
81
  summary: Simple REST client for Service Networking API V1