google-apis-appengine_v1 0.48.0 → 0.49.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: 7a0c3102333b0a1bc1edfa51d5cffe62599e4b5a713054a9e5637220661ebc0d
|
4
|
+
data.tar.gz: 9fe71bf0d845c25e733fbd6e9cf2be877f721f293447a23d47369d2b9a2032ee
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8f017ec8b87de042fad2c81a2cc34932e07a9169c12f1b839c4ab7b06a0ff6b722826787e1beb1065cc0b5b5c4a50c7952fc35d436fa826a0cab7a76ee83272e
|
7
|
+
data.tar.gz: 4e483e84817fad499a65c833d23b013823e7be74d8e8ac690dbec5a763b0c2fb849b382145f58e127ed842086ac1918188f45adee731903f008cc829f3eb5cba
|
data/CHANGELOG.md
CHANGED
@@ -594,7 +594,7 @@ module Google
|
|
594
594
|
# various systems. CCFE will provide the CLH with reasons for the current state
|
595
595
|
# per system.The current systems that CCFE supports are: Service Management (
|
596
596
|
# Inception) Data Governance (Wipeout) Abuse (Ares) Billing (Internal Cloud
|
597
|
-
# Billing API)
|
597
|
+
# Billing API) Service Activation (Service Controller)
|
598
598
|
# Corresponds to the JSON property `currentReasons`
|
599
599
|
# @return [Google::Apis::AppengineV1::Reasons]
|
600
600
|
attr_accessor :current_reasons
|
@@ -603,7 +603,7 @@ module Google
|
|
603
603
|
# various systems. CCFE will provide the CLH with reasons for the current state
|
604
604
|
# per system.The current systems that CCFE supports are: Service Management (
|
605
605
|
# Inception) Data Governance (Wipeout) Abuse (Ares) Billing (Internal Cloud
|
606
|
-
# Billing API)
|
606
|
+
# Billing API) Service Activation (Service Controller)
|
607
607
|
# Corresponds to the JSON property `previousReasons`
|
608
608
|
# @return [Google::Apis::AppengineV1::Reasons]
|
609
609
|
attr_accessor :previous_reasons
|
@@ -2440,7 +2440,7 @@ module Google
|
|
2440
2440
|
# various systems. CCFE will provide the CLH with reasons for the current state
|
2441
2441
|
# per system.The current systems that CCFE supports are: Service Management (
|
2442
2442
|
# Inception) Data Governance (Wipeout) Abuse (Ares) Billing (Internal Cloud
|
2443
|
-
# Billing API)
|
2443
|
+
# Billing API) Service Activation (Service Controller)
|
2444
2444
|
class Reasons
|
2445
2445
|
include Google::Apis::Core::Hashable
|
2446
2446
|
|
@@ -2459,6 +2459,13 @@ module Google
|
|
2459
2459
|
# @return [String]
|
2460
2460
|
attr_accessor :data_governance
|
2461
2461
|
|
2462
|
+
# Consumer Container denotes if the service is active within a project or not.
|
2463
|
+
# This information could be used to clean up resources in case service in
|
2464
|
+
# DISABLED_FULL i.e. Service is inactive > 30 days.
|
2465
|
+
# Corresponds to the JSON property `serviceActivation`
|
2466
|
+
# @return [String]
|
2467
|
+
attr_accessor :service_activation
|
2468
|
+
|
2462
2469
|
#
|
2463
2470
|
# Corresponds to the JSON property `serviceManagement`
|
2464
2471
|
# @return [String]
|
@@ -2473,6 +2480,7 @@ module Google
|
|
2473
2480
|
@abuse = args[:abuse] if args.key?(:abuse)
|
2474
2481
|
@billing = args[:billing] if args.key?(:billing)
|
2475
2482
|
@data_governance = args[:data_governance] if args.key?(:data_governance)
|
2483
|
+
@service_activation = args[:service_activation] if args.key?(:service_activation)
|
2476
2484
|
@service_management = args[:service_management] if args.key?(:service_management)
|
2477
2485
|
end
|
2478
2486
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module AppengineV1
|
18
18
|
# Version of the google-apis-appengine_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.49.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.14.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240226"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1126,6 +1126,7 @@ module Google
|
|
1126
1126
|
property :abuse, as: 'abuse'
|
1127
1127
|
property :billing, as: 'billing'
|
1128
1128
|
property :data_governance, as: 'dataGovernance'
|
1129
|
+
property :service_activation, as: 'serviceActivation'
|
1129
1130
|
property :service_management, as: 'serviceManagement'
|
1130
1131
|
end
|
1131
1132
|
end
|
@@ -1593,6 +1593,48 @@ module Google
|
|
1593
1593
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1594
1594
|
execute_or_queue_command(command, &block)
|
1595
1595
|
end
|
1596
|
+
|
1597
|
+
# Lists all domains the user is authorized to administer.
|
1598
|
+
# @param [String] projects_id
|
1599
|
+
# Part of `parent`. Name of the parent Application resource. Example: apps/myapp.
|
1600
|
+
# @param [String] locations_id
|
1601
|
+
# Part of `parent`. See documentation of `projectsId`.
|
1602
|
+
# @param [String] applications_id
|
1603
|
+
# Part of `parent`. See documentation of `projectsId`.
|
1604
|
+
# @param [Fixnum] page_size
|
1605
|
+
# Maximum results to return per page.
|
1606
|
+
# @param [String] page_token
|
1607
|
+
# Continuation token for fetching the next page of results.
|
1608
|
+
# @param [String] fields
|
1609
|
+
# Selector specifying which fields to include in a partial response.
|
1610
|
+
# @param [String] quota_user
|
1611
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1612
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1613
|
+
# @param [Google::Apis::RequestOptions] options
|
1614
|
+
# Request-specific options
|
1615
|
+
#
|
1616
|
+
# @yield [result, err] Result & error if block supplied
|
1617
|
+
# @yieldparam result [Google::Apis::AppengineV1::ListAuthorizedDomainsResponse] parsed result object
|
1618
|
+
# @yieldparam err [StandardError] error object if request failed
|
1619
|
+
#
|
1620
|
+
# @return [Google::Apis::AppengineV1::ListAuthorizedDomainsResponse]
|
1621
|
+
#
|
1622
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1623
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1624
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1625
|
+
def list_project_location_application_authorized_domains(projects_id, locations_id, applications_id, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1626
|
+
command = make_simple_command(:get, 'v1/projects/{projectsId}/locations/{locationsId}/applications/{applicationsId}/authorizedDomains', options)
|
1627
|
+
command.response_representation = Google::Apis::AppengineV1::ListAuthorizedDomainsResponse::Representation
|
1628
|
+
command.response_class = Google::Apis::AppengineV1::ListAuthorizedDomainsResponse
|
1629
|
+
command.params['projectsId'] = projects_id unless projects_id.nil?
|
1630
|
+
command.params['locationsId'] = locations_id unless locations_id.nil?
|
1631
|
+
command.params['applicationsId'] = applications_id unless applications_id.nil?
|
1632
|
+
command.query['pageSize'] = page_size unless page_size.nil?
|
1633
|
+
command.query['pageToken'] = page_token unless page_token.nil?
|
1634
|
+
command.query['fields'] = fields unless fields.nil?
|
1635
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1636
|
+
execute_or_queue_command(command, &block)
|
1637
|
+
end
|
1596
1638
|
|
1597
1639
|
protected
|
1598
1640
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-appengine_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.49.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: 2024-
|
11
|
+
date: 2024-03-03 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-appengine_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-appengine_v1/v0.49.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-appengine_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|