google-apis-run_v2 0.7.0 → 0.10.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: 7d7e842e46074151ecf0836aa3dc45a2d0c3ddbc51f6c4d541e82147f74a7e33
4
- data.tar.gz: e6f4a1f6d39796515d65e1559c2ef15f6ee9e45abc93ed07253f56fd309b47f1
3
+ metadata.gz: c2d4b1fa5688ea4d5fc51e2daf7241bc9125a9deb9c01859db29e0c24abc9fd2
4
+ data.tar.gz: 5508e176c729ab70088fa41a7d667a171cf38fccfd0c57d34667d07767f3be5d
5
5
  SHA512:
6
- metadata.gz: 10f43641be7d5a2eefa5b849deac8cd38795ef73adac855857b37c44b86d1cb8d1b22b72904a57052c531d2763439ad0834e49d944323bf3689e7bc03f1696cb
7
- data.tar.gz: 8d4163394deee8fc22a6874168c42e5643f5734e844daa43a64f27594dfdeb24287cc9fa5eaed1ed51d7fb7dc8bf146abe263a7d7d463452aaeef3790581728b
6
+ metadata.gz: 71c25c309b9adf212b6e817adaa98cf3d0b378d22030a467f397c372f5539391463df2caafa39d3b6215b58ab4971c04b148ee96f686b56ca5db6836f7401515
7
+ data.tar.gz: 1ff62ebbc882ee17e699956cef4455fdd47be5fcc77283a90317ac9bb5db2f11aeced3225c0fcd83f20c65b6aa3233badb78c43743b0da05c602bf72d7b37c9b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release history for google-apis-run_v2
2
2
 
3
+ ### v0.10.0 (2022-04-13)
4
+
5
+ * Regenerated from discovery document revision 20220408
6
+
7
+ ### v0.9.0 (2022-04-06)
8
+
9
+ * Regenerated from discovery document revision 20220401
10
+
11
+ ### v0.8.0 (2022-03-23)
12
+
13
+ * Regenerated from discovery document revision 20220318
14
+
3
15
  ### v0.7.0 (2022-03-10)
4
16
 
5
17
  * Regenerated from discovery document revision 20220304
@@ -34,6 +34,12 @@ module Google
34
34
  # @return [String]
35
35
  attr_accessor :breakglass_justification
36
36
 
37
+ # The path to a binary authorization policy. Format: projects/`project`/
38
+ # platforms/cloudRun/`policy-name`
39
+ # Corresponds to the JSON property `policy`
40
+ # @return [String]
41
+ attr_accessor :policy
42
+
37
43
  # If True, indicates to use the default project's binary authorization policy.
38
44
  # If False, binary authorization will be disabled.
39
45
  # Corresponds to the JSON property `useDefault`
@@ -48,6 +54,7 @@ module Google
48
54
  # Update properties of this object
49
55
  def update!(**args)
50
56
  @breakglass_justification = args[:breakglass_justification] if args.key?(:breakglass_justification)
57
+ @policy = args[:policy] if args.key?(:policy)
51
58
  @use_default = args[:use_default] if args.key?(:use_default)
52
59
  end
53
60
  end
@@ -60,9 +67,9 @@ module Google
60
67
  # cloud.google.com/sql/instances. Visit https://cloud.google.com/sql/docs/mysql/
61
68
  # connect-run for more information on how to connect Cloud SQL and Cloud Run.
62
69
  # Format: `project`:`location`:`instance`
63
- # Corresponds to the JSON property `connections`
70
+ # Corresponds to the JSON property `instances`
64
71
  # @return [Array<String>]
65
- attr_accessor :connections
72
+ attr_accessor :instances
66
73
 
67
74
  def initialize(**args)
68
75
  update!(**args)
@@ -70,7 +77,7 @@ module Google
70
77
 
71
78
  # Update properties of this object
72
79
  def update!(**args)
73
- @connections = args[:connections] if args.key?(:connections)
80
+ @instances = args[:instances] if args.key?(:instances)
74
81
  end
75
82
  end
76
83
 
@@ -1354,7 +1361,7 @@ module Google
1354
1361
  # @return [Google::Apis::RunV2::GoogleTypeExpr]
1355
1362
  attr_accessor :condition
1356
1363
 
1357
- # Specifies the principals requesting access for a Cloud Platform resource. `
1364
+ # Specifies the principals requesting access for a Google Cloud resource. `
1358
1365
  # members` can have the following values: * `allUsers`: A special identifier
1359
1366
  # that represents anyone who is on the internet; with or without a Google
1360
1367
  # account. * `allAuthenticatedUsers`: A special identifier that represents
@@ -1555,7 +1562,7 @@ module Google
1555
1562
  include Google::Apis::Core::Hashable
1556
1563
 
1557
1564
  # The set of permissions to check for the `resource`. Permissions with wildcards
1558
- # (such as '*' or 'storage.*') are not allowed. For more information see [IAM
1565
+ # (such as `*` or `storage.*`) are not allowed. For more information see [IAM
1559
1566
  # Overview](https://cloud.google.com/iam/docs/overview#permissions).
1560
1567
  # Corresponds to the JSON property `permissions`
1561
1568
  # @return [Array<String>]
@@ -1680,8 +1687,7 @@ module Google
1680
1687
  # A generic empty message that you can re-use to avoid defining duplicated empty
1681
1688
  # messages in your APIs. A typical example is to use it as the request or the
1682
1689
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
1683
- # protobuf.Empty) returns (google.protobuf.Empty); ` The JSON representation for
1684
- # `Empty` is empty JSON object ````.
1690
+ # protobuf.Empty) returns (google.protobuf.Empty); `
1685
1691
  class GoogleProtobufEmpty
1686
1692
  include Google::Apis::Core::Hashable
1687
1693
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module RunV2
18
18
  # Version of the google-apis-run_v2 gem
19
- GEM_VERSION = "0.7.0"
19
+ GEM_VERSION = "0.10.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220304"
25
+ REVISION = "20220408"
26
26
  end
27
27
  end
28
28
  end
@@ -230,6 +230,7 @@ module Google
230
230
  # @private
231
231
  class Representation < Google::Apis::Core::JsonRepresentation
232
232
  property :breakglass_justification, as: 'breakglassJustification'
233
+ property :policy, as: 'policy'
233
234
  property :use_default, as: 'useDefault'
234
235
  end
235
236
  end
@@ -237,7 +238,7 @@ module Google
237
238
  class GoogleCloudRunV2CloudSqlInstance
238
239
  # @private
239
240
  class Representation < Google::Apis::Core::JsonRepresentation
240
- collection :connections, as: 'connections'
241
+ collection :instances, as: 'instances'
241
242
  end
242
243
  end
243
244
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-run_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.10.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-03-14 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-run_v2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-run_v2/v0.7.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-run_v2/v0.10.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-run_v2
63
63
  post_install_message:
64
64
  rdoc_options: []